Scales
Default | Custom scale |
Profit 10 20 30 40 50 60 70 80 '02 '03 '04 '05 '06 '07 '08 '09 '10 '11 Year |
Profit 0 20 40 60 80 100 '02 '03 '04 '05 '06 '07 '08 '09 '10 '11 Year |
Default | Custom scale |
Profit 10 20 30 40 50 60 70 80 '02 '03 '04 '05 '06 '07 '08 '09 '10 '11 Year |
Profit 0 20 40 60 80 100 '02 '03 '04 '05 '06 '07 '08 '09 '10 '11 Year |
<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> <table> <tr> <td>Default</td> <td>Custom scale</td> </tr> <tr> <td><div id="chart1" style="width:450px;height:250px;border:1px solid #A4BED4;"></div></td> <td><div id="chart2" style="width:450px;height:250px;border:1px solid #A4BED4;"></div></td> </tr> </table> <script></script>var barChart1 = new dhtmlXChart({ view: "bar", container: "chart1", value: "#sales#", color: "#color#", width: 30, radius: 0, gradient: "rising", tooltip: { template: "#sales#"; }, xAxis: { template: "'#year#", title: "Year"; }, yAxis: { title: "Profit"; } }); barChart1.parse(dataset_colors, "json"); var barChart2 = new dhtmlXChart({ view: "bar", container: "chart2", value: "#sales#", color: "#color#", width: 30, radius: 0, tooltip: { template: "#sales#"; }, xAxis: { template: "'#year#", title: "Year"; }, yAxis: { start: 0, end: 100, step: 10, title: "Profit", template: function(value) { return value % 20 ? "": value; } }, origin: 30; }); barChart2.parse(dataset_colors, "json");