Table of Contents

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 = 32768

Cancel rendering.

ChangeAnnotationOrder = 8192

Annotation order must be changed in list of annotations.

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.

DisableZoom = 4

Disable zooming

DoAutoYFit = 8

Do auto Y fit now.

FreeAllDrawData = 1024

Free everything

FreeAllSeriesDrawData = 1

All series draw data must be freed, so root level can reconstruct it.

FreeAllSeriesDrawDataOf3DAxis = 2048

Free all draw data of 3D series where this 3D axis is bound

FreeAllSeriesDrawDataOfAxis = 128

All series draw data of certain axis must be freed, so root level can reconstruct it.

FreeAllSeriesLegendIcons = 16

Free all series legendbox icon

FreeAnnotationsOfAxis = 131072

Free annotation bound to this axis.

FreeCertainDrawDataSynchronized = 256

Free certain draw data synchronized to main thread. Use this to make LightningChartPro free draw data from object finalizer

FreeMapData = 16384

Free map draw data.

FreeNonShiftableSeriesDrawDataOfAxis = 262144

Free non-shiftable series draw data.

FreeScrollBarDrawData = 512

Free scrollbar draw data

FreeSeriesDrawData = 32

Draw data of certain series must be freed, so root level can reconstruct it.

FreeSeriesLegendIcon = 64

Free a series legendbox icon

InvalidateSurfacePaletteSorting = 4096

Surface palette sorting must be updated

None = 0

No flags, just re-renders the chart.

RecalculateAutolabel = 65536

Recalculate autolabel.

UpdateChartTitle = 2

Update chart title

UpdateLegendBox = 1048576

Update LegendBox as some related property has changed.

View3DRotationAndOrZoomChanged = 2097152

View3D rotation or zoom has changed.

Remarks

Remember to number these as powers of 2