Hi ALl, i am trying to display a index label in line chart along with marker colour and marker type. but the chart when rendered has a discontinuity at the exact datapoint where i want the index label to be displayed. nor there is any marker colour or type.
for (var i = 1; i < datapoints4length; i++)
{
{
if(chart2.options.data[2].dataPoints[i].y>chart2.options.data[2].dataPoints[i-1].y)
if(chart2.options.data[2].dataPoints[i-1].y<100000)
if(chart2.options.data[2].dataPoints[i].y>=100000)
{
chart2.data[2].addTo(“dataPoints”,{indexlabel:”BUY”,markerColor: “red”, markerType: “triangle”},i);
}
}
}
chart2.render();
}
could someone help plz,