Line chart
0
20
40
60
80
100
'02
'03
'04
'05
'06
'07
'08
'09
'10
'11
<script src="../../codebase/dhtmlxchart.js" type="text/javascript"></script> <link rel="STYLESHEET" type="text/css" href="../../codebase/dhtmlxchart.css"> <script src="../common/testdata.js"></script> <script></script> <div id="chart" style="width:600px;height:250px;border:1px solid #A4BED4;"></div></td>window.onload = function() { var chart = new dhtmlXChart({ view: "line", container: "chart", value: "#sales#", item: { borderColor: "#1293f8", color: "#ffffff"; }, line: { color: "#1293f8", width: 3; }, xAxis: { template: "'#year#"; }, offset: 0, yAxis: { start: 0, end: 100, step: 10, template: function(obj) { return (obj % 20 ? "": obj); } } }); chart.parse(dataset, "json"); }