A chart point that presents an item.
Value type: Object
var chart = new dhtmlXChart({
...
item:{
borderColor:"#ffffff",
color:"#000000"
},
...
})
or
chart.define("item",{
borderColor:"#ffffff",
color:"#000000"
},
);
Back to top