Defines the possible impact a chart node property may have over the entire chart area.
Definition
Namespace:Telerik.Charting
Assembly:Telerik.WinControls.dll
Syntax:
C#
[Flags]
public enum ChartAreaInvalidateFlags
Fields
All flags are specified.
C#
All = ResetAxes | ResetAnnotations | InvalidateAll
All invalidate flags are specified.
C#
InvalidateAll = InvalidateSeries | InvalidateAxesAndGrid | InvalidateAnnotations
Invalidates the visual presentation of the chart annotations (if any).
C#
InvalidateAnnotations = 32
Resets the plot information of the axes.
C#
InvalidateAxes = 2
Invalidates each axis plus the chart grid (if any).
C#
InvalidateAxesAndGrid = InvalidateAxes | InvalidateGrid
Invalidates the visual presentation of the chart grid (if any).
C#
InvalidateGrid = 8
Invalidates the visual presentation of the series.
C#
InvalidateSeries = 4
Property does not affect the chart element tree.
C#
None = 0
Resets the plot information of the annotations.
C#
ResetAnnotations = 16
Invalidates the visual presentation of the axes.
C#
ResetAxes = 1