<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>
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");
</script>