Hi Austin,
Greetings from Syncfusion.
We suggest you use chartMouseClick event to get the series values. In the sample, based on target id we have selected the series. We have attached the sample for your reference.
| onChartMouseClick(args) {
if (args.target.indexOf("charts_Series") > -1) {
let seriesIndex = parseInt(args.target.charAt(args.target.length - 1));
let series = this.chartInstance.series[seriesIndex];
console.log(series);
} }
|
Please revert us if you have any concerns.
Regards,
Durga G