Skip to main content
A newer version of this page is available. .

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.v18.2.UI.dll

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