mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-17 05:23:26 +01:00
73 lines
2.2 KiB
HTML
73 lines
2.2 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.css" />
|
||
|
<link rel="stylesheet" type="text/css" href="examples.css" />
|
||
|
|
||
|
<!-- BEGIN: load jquery -->
|
||
|
<script language="javascript" type="text/javascript" src="../jquery.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>
|
||
|
<script language="javascript" type="text/javascript" src="../plugins/jqplot.categoryAxisRenderer.js"></script>
|
||
|
<!-- END: load jqplot -->
|
||
|
<style type="text/css" media="screen">
|
||
|
.jqplot-axis {
|
||
|
font-size: 0.85em;
|
||
|
}
|
||
|
.jqplot-legend {
|
||
|
font-size: 0.75em;
|
||
|
}
|
||
|
</style>
|
||
|
<script type="text/javascript" language="javascript">
|
||
|
|
||
|
$(document).ready(function(){
|
||
|
$.jqplot.config.enablePlugins = true;
|
||
|
|
||
|
|
||
|
line1 = [['1/1/2006', 5], ['2/1/2006', 1], ['3/1/2006', 3], ['4/1/2006', 7]];
|
||
|
line2 = [['1/1/2006', 2], ['2/1/2006', 6], ['3/1/2006', 4], ['4/1/2006', 3]];
|
||
|
|
||
|
plot1 = $.jqplot('chart1', [line1, line2], {
|
||
|
legend: {show:true, location: 'nw', yoffset: 6},
|
||
|
axes:{
|
||
|
xaxis:{
|
||
|
renderer:$.jqplot.DateAxisRenderer,
|
||
|
tickOptions:{
|
||
|
formatString:'%m.%y'},
|
||
|
ticks:['12/1/2005', '1/1/2006', '2/1/2006', '3/1/2006', '4/1/2006', '5/1/2006']
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
|
||
|
|
||
|
line1 = [5, 1, 3, 7];
|
||
|
line2 = [2, 6, 4, 3];
|
||
|
|
||
|
plot2 = $.jqplot('chart2', [line1, line2], {
|
||
|
legend: {show:true, location: 'nw', yoffset: 6},
|
||
|
axes:{
|
||
|
xaxis:{
|
||
|
renderer:$.jqplot.CategoryAxisRenderer,
|
||
|
ticks:['01.06', '02.06', '03.06', '04.06']
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
|
||
|
|
||
|
});
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<?php include "nav.inc"; ?>
|
||
|
<div id="chart1" style="margin-top:20px; margin-left:20px; width:300px; height:200px;"></div>
|
||
|
<div id="chart2" style="margin-top:20px; margin-left:20px; width:300px; height:200px;"></div>
|
||
|
</body>
|
||
|
</html>
|