Dashed or dotted line
Posted: Tue Nov 05, 2013 10:50 am
Hello, is there a way to plot dashed or dotted line? Can't find such property or any example in demos
Steema Software - Customer Support Forums
http://216.92.243.79/support/
Code: Select all
function setAxisDash(axis,value) {
if (value=="solid")
axis.grid.format.stroke.dash=null;
else
if (value=="dash")
axis.grid.format.stroke.dash=[4,4];
else
axis.grid.format.stroke.dash=[2,2];
}
Code: Select all
Chart1.series.items[0].format.stroke.dash=[4,4];