Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
15
customizing data point selection in a chart
posted

Hi,

I'm using Column Series and I'm trying to update or delete a data from the chart by interacting directly with my chart , so I'm trying to find a solution that when I select a column I can navigate to another page where I can modify or delete this particular column.

Parents
No Data
Reply
  • 28945
    Offline posted

    Hello Rihab, 

    Thank you for contacting Infragistics. You will want to hook the chart's SeriesPointerPressed. From there the event will expose the chart, itemsource, and series necessary to remove the series pressed. 

    eg.

    I would recommend using the Remove or RemoveAt methods of the XamDataChart.Series collection, like so:

    Chart.Series.Remove(mySeries);
    Chart.Series.RemoveAt(0);

    I attached a sample, demonstrating SeriesPointerPressed to help you get started.
    CustomHighlightSample.zip

Children
No Data