/home/mip/public_html/template/AdminLTE/plugins/RGraph/demos/line-filled-blue.html
<!DOCTYPE html >
<html>
<head>
<link rel="stylesheet" href="demos.css" type="text/css" media="screen" />
<script src="../libraries/RGraph.common.core.js" ></script>
<script src="../libraries/RGraph.line.js" ></script>
<title>A filled blue Line chart</title>
<meta name="robots" content="noindex,nofollow" />
<meta name="description" content="A filled blue Line chart" />
</head>
<body>
<h1>A filled blue line chart</h1>
<canvas id="cvs" width="950" height="400">[No canvas support]</canvas>
<script>
window.onload = function ()
{
var line = new RGraph.Line({
id: 'cvs',
data: [
1,3,4,2,5,6,4,5,3,7,8,9,8,9,10,13,15,12,16,17,15,18,15,15,19,16,19,
21,22,20,23,21,25,24,23,26,25,27,28,27,26,28,29,28,28,30,32,31,32,33,34,
35,34,36,38,35,36,37,39,40,42,43,46,45,44,46,48,47,49,50,52,51,49,56,55,
61,62,65,66,68,69,75,76,78,80,84,86,89,91,95,92,99,105,108,106,110,111,
119,125,128,134,139,143,148,150
],
options: {
labels: ['Aug 13, 2012','Sep 9 2013','Oct 6 2014'],
gutterLeft: 75,
gutterRight: 55,
filled: true,
fillstyle: ['#C2D1F0'],
colors: ['#3366CB'],
shadow: false,
tickmarks: null,
numxticks: 0,
backgroundGridVlines: false,
backgroundGridBorder: false,
noxaxis: true,
textSize: 16,
textAccessible: true
}
}).draw();
};
</script>
<p></p>
This goes in the documents header:
<pre class="code">
<script src="RGraph.common.core.js"></script>
<script src="RGraph.line.js"></script>
</pre>
Put this where you want the chart to show up:
<pre class="code">
<canvas id="cvs" width="950" height="400">
[No canvas support]
</canvas>
</pre>
This is the code that generates the chart:
<pre class="code">
<script>
window.onload = function ()
{
var line = new RGraph.Line({
id: 'cvs',
data: [
1,3,4,2,5,6,4,5,3,7,8,9,8,9,10,13,15,12,16,17,15,18,15,15,19,16,19,
21,22,20,23,21,25,24,23,26,25,27,28,27,26,28,29,28,28,30,32,31,32,33,34,
35,34,36,38,35,36,37,39,40,42,43,46,45,44,46,48,47,49,50,52,51,49,56,55,
61,62,65,66,68,69,75,76,78,80,84,86,89,91,95,92,99,105,108,106,110,111,
119,125,128,134,139,143,148,150
],
options: {
labels: ['Aug 13, 2012','Sep 9 2013','Oct 6 2014'],
gutterLeft: 75,
gutterRight: 55,
filled: true,
fillstyle: ['#C2D1F0'],
colors: ['#3366CB'],
shadow: false,
tickmarks: null,
numxticks: 0,
backgroundGridVlines: false,
backgroundGridBorder: false,
noxaxis: true,
textSize: 16,
textAccessible: true
}
}).draw();
};
</script>
</pre>
<p>
<a href="https://www.facebook.com/sharer/sharer.php?u=http://www.rgraph.net" target="_blank" onclick="window.open('https://www.facebook.com/sharer/sharer.php?u=http://www.rgraph.net', null, 'top=50,left=50,width=600,height=368'); return false"><img src="../images/facebook-large.png" width="200" height="43" alt="Share on Facebook" border="0" title="Visit the RGraph Facebook page" /></a>
<a href="https://twitter.com/_rgraph" target="_blank" onclick="window.open('https://twitter.com/_rgraph', null, 'top=50,left=50,width=700,height=400'); return false"><img src="../images/twitter-large.png" width="200" height="43" alt="Share on Twitter" border="0" title="Mention RGraph on Twitter" /></a>
</p>
<p>
<a href="./">« Back</a>
</p>
</body>
</html>