DHTMLX Docs & Samples Explorer

Styles

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>
 
    <div id="chart1" style="width:600px;height:250px;border:1px solid #A4BED4;"></div>
    <div id="chart2" style="width:600px;height:250px;border:1px solid #A4BED4;"></div>
    <script>
var barChart1 = new dhtmlXChart({
    view: "bar",
    container: "chart1",
    value: "#sales#",
    width: 30,
    color: "#7ed500",
    gradient: "rising",
    alpha: function(data) {
        return data.sales / 90;
    },
    tooltip: {
        template: "#sales#";
    },
    xAxis: {
        template: "'#year#";
    },
    yAxis: {
        start: 0,
        end: 100,
        step: 10,
        template: function(obj) {
            return (obj % 20 ? "": obj);
        }
    },
    padding: {
        left: 30;
    },
    border: 0;
});
barChart1.parse(dataset, "json");
var barChart2 = new dhtmlXChart({
    view: "bar",
    container: "chart2",
    value: "#sales#",
    label: "#sales#",
    width: 45,
    color: "#color#",
    tooltip: {
        template: "#sales#";
    },
    xAxis: {
        template: "'#year#";
    },
    yAxis: {
        start: 0,
        end: 100,
        step: 10,
        template: function(obj) {
            return (obj % 20 ? "": obj);
        }
    },
    padding: {
        left: 30;
    },
    radius: 0;
});
barChart2.parse(dataset_colors, "json");
</script>