mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-17 13:33:15 +01:00
f8489c0ed1
jquery.jqplot.1.0.0b2_r947
51 lines
1.6 KiB
HTML
51 lines
1.6 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.pointLabels.min.js"></script>
|
|
<!-- END: load jqplot -->
|
|
|
|
|
|
<script class="code" type="text/javascript">
|
|
$(document).ready(function(){
|
|
s1 = [[0, 300, '<img height="30px" width="30px" src="../images/new.png"/>'], [1, 150, '<img height="30px" width="30px" src="../images/new.png"/>'], [2, 35, '<img height="30px" width="30px" src="../images/new.png"/>']];
|
|
|
|
plot1 = $.jqplot('chart1',[s1],{
|
|
title: 'Simple Test',
|
|
legend: {show: true},
|
|
seriesDefaults: {
|
|
pointLabels: {
|
|
show: true,
|
|
escapeHTML: false,
|
|
ypadding: -15
|
|
}
|
|
}
|
|
});
|
|
|
|
});
|
|
</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" class="plot" style="width:500px;height:300px;"></div>
|
|
|
|
</div>
|
|
</body>
|
|
</html> |