<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>
<div id="chart1" style="width:700px;height:250px;border:1px solid #A4BED4;"></div>
<script>var barChart1 = new dhtmlXChart({
view: "stackedBar",
container: "chart1",
value: "#sales#",
label: "#sales#",
color: "#58dccd",
gradient: "falling",
width: 60,
tooltip: {
template: "#sales#";
},
xAxis: {
template: "'#year#";
},
yAxis: {},
legend: {
values: [{
text: "Type A",
color: "#36abee"
}, {
text: "Type B",
color: "#a7ee70"
}, {
text: "Type C",
color: "#58dccd"
}],
valign: "middle",
align: "right",
width: 90,
layout: "y";
}
});
barChart1.addSeries({
value: "#sales2#",
color: "#a7ee70",
label: "#sales2#",
tooltip: {
template: "#sales2#";
}
});
barChart1.addSeries({
value: "#sales3#",
color: "#36abee",
label: "#sales3#",
tooltip: {
template: "#sales3#";
}
});
barChart1.parse(multiple_dataset, "json");
</script>