Check documentation for the latest version of dhtmlxSuite line DHTMLX Docs

line

A chart line.

Value type: Object

var chart =  new dhtmlXChart({
    ...
    line:{
            color:"#ff9900",
            width:3
        } 
        ...
})

or

chart.define("line",{
            color:"#ff9900",
            width:3
        } );
Back to top