mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-17 13:33:15 +01:00
f8489c0ed1
jquery.jqplot.1.0.0b2_r947
89 lines
2.9 KiB
HTML
89 lines
2.9 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>Simple Test</title>
|
|
<!--[if lt IE 9]><script language="javascript" type="text/javascript" src="../excanvas.js"></script><![endif]-->
|
|
|
|
<link rel="stylesheet" type="text/css" href="../jquery.jqplot.min.css" />
|
|
<link rel="stylesheet" type="text/css" href="examples.css" />
|
|
|
|
<!-- BEGIN: load jquery -->
|
|
<script language="javascript" type="text/javascript" src="../jquery.min.js"></script>
|
|
<!-- END: load jquery -->
|
|
|
|
<!-- BEGIN: load jqplot -->
|
|
<script language="javascript" type="text/javascript" src="../jquery.jqplot.min.js"></script>
|
|
<script language="javascript" type="text/javascript" src="../plugins/jqplot.dateAxisRenderer.min.js"></script>
|
|
<script language="javascript" type="text/javascript" src="../plugins/jqplot.dragable.min.js"></script>
|
|
<script language="javascript" type="text/javascript" src="../plugins/jqplot.trendline.min.js"></script>
|
|
<script language="javascript" type="text/javascript" src="../plugins/jqplot.enhancedLegendRenderer.min.js"></script>
|
|
<!-- END: load jqplot -->
|
|
|
|
<script class="code" type="text/javascript">
|
|
|
|
$(document).ready(function(){
|
|
// $.jqplot.config.enablePlugins = true;
|
|
|
|
s1 = [['23-May-08',1],['24-May-08',4],['25-May-08',2],['26-May-08', 6]];
|
|
s2 = [['23-May-08',2],['24-May-08',3],['25-May-08',7],['26-May-08', 4]];
|
|
|
|
mp = $.jqplot('chart1',[s1, s2],{
|
|
title: 'mytitle',
|
|
legend:{show:true},
|
|
axes: {
|
|
xaxis: {
|
|
renderer: $.jqplot.DateAxisRenderer,
|
|
tickOptions: {
|
|
formatString: '%H:%S'
|
|
},
|
|
numberTicks: 12
|
|
},
|
|
yaxis: {
|
|
tickOptions: {
|
|
formatString: '%.2f'
|
|
}
|
|
}
|
|
},
|
|
series:[{
|
|
markerOptions:{style:'diamond'},
|
|
dragable: {
|
|
color: '#ff3366',
|
|
constrainTo: 'x'
|
|
},
|
|
isDragable: true,
|
|
trendline: {
|
|
show:true,
|
|
label: 'trendline 1',
|
|
color: '#cccccc'
|
|
}
|
|
},
|
|
{
|
|
isDragable: false,
|
|
trendline: {
|
|
show:true
|
|
}
|
|
}
|
|
],
|
|
legend:{
|
|
renderer: $.jqplot.EnhancedLegendRenderer,
|
|
show:true,
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<script type="text/javascript" src="example.js"></script>
|
|
</head>
|
|
<body>
|
|
<?php include "topbanner.inc"; ?>
|
|
<div class="example-content">
|
|
<?php include "nav.inc"; ?>
|
|
<div id="chart1" style="margin-top:20px; margin-left:20px; width:500px; height:400px;"></div>
|
|
<div id="chart2" style="margin-top:20px; margin-left:20px; width:300px; height:200px;"></div>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|