DHTMLX Docs & Samples Explorer

Series

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>
window.onload = function() {
    var chart1 = new dhtmlXChart({
        view: "line",
        container: "chart1",
        value: "#companyA#",
        item: {
            borderColor: "#1293f8",
            color: "#ffffff";
        },
        line: {
            color: "#1293f8",
            width: 3;
        },
        tooltip: {
            template: "#companyA#";
        },
        offset: 0,
        xAxis: {
            template: "#month#";
        },
        yAxis: {
            start: 0,
            step: 1,
            end: 10,
            template: function(value) {
                return value % 5 ? "": value;
            }
        },
        padding: {
            left: 35,
            bottom: 50;
        },
        origin: 0,
        legend: {
            layout: "x",
            width: 75,
            align: "center",
            valign: "bottom",
            values: [{
                text: "company A",
                color: "#3399ff"
            }, {
                text: "company B",
                color: "#66cc00"
            }],
            margin: 10;
        }
    });
 
    chart1.addSeries({
        value: "#companyB#",
        item: {
            borderColor: "#66cc00",
            color: "#ffffff";
        },
        line: {
            color: "#66cc00",
            width: 3;
        },
        tooltip: {
            template: "#companyB#";
        }
    });
    chart1.parse(companies, "json");
}
</script> <table> <tr> <td><div id="chart1" style="width:600px;height:250px;border:1px solid #A4BED4;"></div></td> </tr> </table>