hi,
Is there a way to figure out which X axis label was clicked by the user.
I need to recognise which data point on the chart that x axis corresponds.
Thanks,
bp
Hello,
I need to figure out which x axis label was clicked by the user,
I need to redraw the chart with new data based on which x axis label was clicked by user,
If the user clicked on the datapoint instead of axis in the chart, the chart needs to be drawn with different set of data.
Please advice,
Thanks
You can use ChartDataClicked Event to handle when the user clicks on the datapoint. If you change the data, you should call:
ultraChart1.InvalidateLayers();
after that.
For now we don't have event that is raised when the user clicks on the axis labels.