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