Skip to main content

ChartControl.RefreshDataOnRepaint Property

Gets or sets a value indicating whether to refresh data in the underlying data source every time a chart is repainted.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v23.2.UI.dll

NuGet Package: DevExpress.Win.Charts

Declaration

public bool RefreshDataOnRepaint { get; set; }

Property Value

Type Description
Boolean

true to refresh data on every repainting; otherwise, false.

Remarks

Use the RefreshDataOnRepaint property to handle the way in which chart data should be refreshed if the data source doesn’t implement the IBindingList interface. If a data source implements the IBindingList interface, XtraCharts refreshes a chart’s data only when data in the data source has been changed.

See Also