DHTMLX Docs & Samples Explorer

CSV data

Source
<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>
var data = "\;
      20, 02\n\;
      55, 03\n\;
      40, 04\n\;
      78, 05\n\;
      61, 06\n\;
      35, 07\n\;
      80, 08\n\;
      50, 09\n\;
      65, 10\n\;
      59, 11";
window.onload = function() {
    var barChart = new dhtmlXChart({
        view: "bar",
        container: "chartDiv",
        value: "#data0#",
        radius: 0,
        border: true,
        xAxis: {
            template: "'#data1#";
        },
        yAxis: {
            start: 0,
            end: 100,
            step: 10,
            template: function(obj) {
                return (obj % 20 ? "": obj);
            }
        }
    });
    barChart.parse(data, "csv");
}
</script> <div id="chartDiv" style="width:600px;height:250px;margin:20px;border:1px solid #A4BED4"></div>