Sha256: abd871e02a413a5c3d1de080f35bd6a532865925456a64b4c8e266771f84e628
Contents?: true
Size: 1.67 KB
Versions: 4
Compression:
Stored size: 1.67 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>Horizontal Line (const. y values)</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.dateAxisRenderer.js"></script> <!-- END: load jqplot --> <style type="text/css" media="screen"> .jqplot-axis { font-size: 0.85em; } </style> <script type="text/javascript" language="javascript"> $(document).ready(function(){ $.jqplot.config.enablePlugins = true; line1 = [[1244337000000, 10], [1244337300000, 10], [1244337600000, 10], [1244337900000, 10], [1244338200000, 10]]; plot2 = $.jqplot('chart', [line1], { title: 'A Horizontal Line', axes: { xaxis: { renderer: $.jqplot.DateAxisRenderer, numberTicks: 5 } }, series:[{},{lineWidth:1, color:'#999999', showMarker:false}] }); }); </script> </head> <body> <?php include "nav.inc"; ?> <div id="chart" style="margin-top:20px; margin-left:20px; width:500px; height:300px;"></div> </body> </html>
Version data entries
4 entries across 4 versions & 1 rubygems