Hi.
It is possible to show the label for a know value point (only one value not the entire series values)?
I'm getting the Y value of a line series chart...
JS
var chart = page.getViewById("chart");
chart.on("pointSelected", function (args) {
console.log(args.pointData.dataYValue);
});
I'm trying to achieve this behavior because my series handle hundred of values and using the showLabels="true" is not possible
so launching the chart not displaying labels and tap in a specific value and that value show up it would be great.
Thank you.