DHTMLX Docs & Samples Explorer

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
		} );