Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

XRChart.BoundDataChanged Event

Occurs every time a chart control generates its series points from the underlying data source.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v24.2.dll

NuGet Package: DevExpress.Reporting.Core

#Declaration

public event BoundDataChangedEventHandler BoundDataChanged

#Event Data

The BoundDataChanged event's data class is EventArgs.

#Remarks

You can handle this event to change the way in which chart data is plotted before the chart displays it. In general, this event should be used to change a series’ SeriesBase.Visible property, or to change any properties of series labels or a series view.

Note

Note that not all series’ properties can be changed in the BoundDataChanged event handler. For example, changing the following properties will have no effect:

See Also