WebChartControl.BoundDataChanged Event
Occurs every time a chart control generates its series points from the data source.
Namespace: DevExpress.XtraCharts.Web
Assembly: DevExpress.XtraCharts.v19.2.Web.dll
Declaration
public event BoundDataChangedEventHandler BoundDataChanged
Public Event BoundDataChanged As BoundDataChangedEventHandler
Event Data
The BoundDataChanged event handler receives an argument of the EventArgs type.
Use the BoundDataChanged event to change a series's SeriesBase.Visible property, or to change any properties of series labels or a series view.
Note
The following property values cannot be changed in the BoundDataChanged event handler:
Examples
This example demonstrates how to access the auto-created series appearance settings at runtime.
Handle the WebChartControl.BoundDataChanged event to access an individual series' settings.
See Also