Check documentation for the latest version of dhtmlxSuite line DHTMLX Docs

line

A chart line.

Value type: Object

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

or

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