Enum ChildPropertyChangedFlags
- Namespace
- LightningChartLib.WinForms.Charting
- Assembly
- LightningChart.WinForms.Charting.NET4.dll
ChildPropertyChanged flags. These flags must be OR'd on each level, so that root level is reported all the flags.
public enum ChildPropertyChangedFlags
Fields
CancelRendering = 32768Cancel rendering.
ChangeAnnotationOrder = 8192Annotation order must be changed in list of annotations.
DirtyDrawData = 524288Notification to parent that the settings defining the draw data related to sender and/or relayer has been modified and the drawdata needs to be recalculated/updated/redefined/freed.
It's usually OK to remove the flag from the parameter value after processing on parent.
DisableZoom = 4Disable zooming
DoAutoYFit = 8Do auto Y fit now.
FreeAllDrawData = 1024Free everything
FreeAllSeriesDrawData = 1All series draw data must be freed, so root level can reconstruct it.
FreeAllSeriesDrawDataOf3DAxis = 2048Free all draw data of 3D series where this 3D axis is bound
FreeAllSeriesDrawDataOfAxis = 128All series draw data of certain axis must be freed, so root level can reconstruct it.
FreeAllSeriesLegendIcons = 16Free all series legendbox icon
FreeAnnotationsOfAxis = 131072Free annotation bound to this axis.
FreeCertainDrawDataSynchronized = 256Free certain draw data synchronized to main thread. Use this to make LightningChartPro free draw data from object finalizer
FreeMapData = 16384Free map draw data.
FreeNonShiftableSeriesDrawDataOfAxis = 262144Free non-shiftable series draw data.
FreeScrollBarDrawData = 512Free scrollbar draw data
FreeSeriesDrawData = 32Draw data of certain series must be freed, so root level can reconstruct it.
FreeSeriesLegendIcon = 64Free a series legendbox icon
InvalidateSurfacePaletteSorting = 4096Surface palette sorting must be updated
None = 0No flags, just re-renders the chart.
RecalculateAutolabel = 65536Recalculate autolabel.
UpdateChartTitle = 2Update chart title
UpdateLegendBox = 1048576Update LegendBox as some related property has changed.
View3DRotationAndOrZoomChanged = 2097152View3D rotation or zoom has changed.
Remarks
Remember to number these as powers of 2