ChildPropertyChangedFlags Enumeration |
LightningChart .NET Help
ChildPropertyChanged flags. These flags must be OR'd on each level, so that root level is reported all the flags.
Namespace:
Arction.Wpf.ChartingMVVM
Assembly:
Arction.Wpf.ChartingMVVM.LightningChart (in Arction.Wpf.ChartingMVVM.LightningChart.dll) Version: 10.3.1
Syntaxpublic enum ChildPropertyChangedFlags
Public Enumeration ChildPropertyChangedFlags
public enum class ChildPropertyChangedFlags
Members|
| Member name | Value | Description |
|---|
| None | 0 |
No flags, just re-renders the chart.
|
| FreeAllSeriesDrawData | 1 |
All series draw data must be freed, so root level can reconstruct it.
|
| UpdateChartTitle | 2 |
Update chart title
|
| DisableZoom | 4 |
Disable zooming
|
| DoAutoYFit | 8 |
Do auto Y fit now.
|
| FreeAllSeriesLegendIcons | 16 |
Free all series legendbox icon
|
| FreeSeriesDrawData | 32 |
Draw data of certain series must be freed, so root level can reconstruct it.
|
| FreeSeriesLegendIcon | 64 |
Free a series legendbox icon
|
| FreeAllSeriesDrawDataOfAxis | 128 |
All series draw data of certain axis must be freed, so root level can reconstruct it.
|
| FreeCertainDrawDataSynchronized | 256 |
Free certain draw data synchronized to main thread. Use this to make LightningChartPro free draw data from object finalizer
|
| FreeScrollBarDrawData | 512 |
Free scrollbar draw data
|
| FreeAllDrawData | 1024 |
Free everything
|
| FreeAllSeriesDrawDataOf3DAxis | 2048 |
Free all draw data of 3D series where this 3D axis is bound
|
| InvalidateSurfacePaletteSorting | 4096 |
Surface palette sorting must be updated
|
| ChangeAnnotationOrder | 8192 |
Annotation order must be changed in list of annotations.
|
| FreeMapData | 16384 |
Free map draw data.
|
| CancelRendering | 32768 |
Cancel rendering.
|
| RecalculateAutolabel | 65536 |
Recalculate autolabel.
|
| FreeAnnotationsOfAxis | 131072 |
Free annotation bound to this axis.
|
| FreeNonShiftableSeriesDrawDataOfAxis | 262144 |
Free non-shiftable series draw data.
|
| DirtyDrawData | 524288 |
Notification 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.
|
| UpdateLegendBox | 1048576 |
Update LegendBox as some related property has changed.
|
See Also