Sha256: a1d9c136924b5cc0daafa78652d960f5bef6f0f85b0f2ba1a0e41cb052d66170

Contents?: true

Size: 1.79 KB

Versions: 4

Compression:

Stored size: 1.79 KB

Contents

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">

<html lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  <title>Simple Test</title>
  <!--[if IE]><script language="javascript" type="text/javascript" src="../excanvas.js"></script><![endif]-->
  
  <link rel="stylesheet" type="text/css" href="../jquery.jqplot.css" />
  <link rel="stylesheet" type="text/css" href="examples.css" />
  
  <!-- BEGIN: load jquery -->
  <script language="javascript" type="text/javascript" src="../jquery-1.4.2.min.js"></script>
  <!-- END: load jquery -->
  
  <!-- BEGIN: load jqplot -->
  <script language="javascript" type="text/javascript" src="../jquery.jqplot.js"></script>
  <script language="javascript" type="text/javascript" src="../plugins/jqplot.logAxisRenderer.js"></script>

  <!-- END: load jqplot -->
  <style type="text/css" media="screen">
    .jqplot-axis {
      font-size: 0.85em;
    }
    .jqplot-title {
      font-size: 1.1em;
    }
  </style>
  <script type="text/javascript" language="javascript">
  
  $(document).ready(function(){
      $.jqplot.config.enablePlugins = true;

    var l1 = [[1,2], [4,5], [8,9], [15,16], [18,40]];
    var l2 = [[2,1], [5,4], [12,7], [16,12], [19,29]];


    plot1 = $.jqplot('chart', [l1, l2], {
      title:'Plot with Grid Customization',
      // axes:{xaxis:{tickInterval:2, min:0, max:19}},
      // axes:{xaxis:{tickInterval:2}},
      axes:{xaxis:{tickInterval:2, min:0},
        yaxis:{renderer:$.jqplot.LogAxisRenderer}},
      grid:{background:'#dfdfdf', gridLineColor:'#accf9b', borderWidth:2.5}
    });


  });
  </script>
  </head>
  <body>
<?php include "nav.inc"; ?>
    <div id="chart" style="margin-top:20px; margin-left:20px; width:360px; height:300px;"></div>
  </body>
</html>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
reportbuilder-1.4.2 data/jqplot/examples/gridCustomization.html
reportbuilder-1.4.1 data/jqplot/examples/gridCustomization.html
reportbuilder-1.4.0 data/jqplot/examples/gridCustomization.html
reportbuilder-1.3.0 data/jqplot/examples/gridCustomization.html