Gets or sets a value indicating whether the chart is automatically repainted when its properties are modified.
Namespace:
C1.Win.C1Chart3DAssembly: C1.Win.C1Chart3D.2 (in C1.Win.C1Chart3D.2.dll)
Syntax
C# |
---|
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)] [DefaultValueAttribute(true)] [RefreshPropertiesAttribute(RefreshProperties.Repaint)] public bool Repaint { get; set; } |
Visual Basic |
---|
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)> _ <DefaultValueAttribute(True)> _ <RefreshPropertiesAttribute(RefreshProperties.Repaint)> _ Public Property Repaint As Boolean Get Set |
Remarks
When the Repaint property is false, chart repaints are minimized as chart properties are changed. This is useful when multiple chart properties will be changed in an event, and it is desired to reduce the flicker associated with repeated repaints.
Note that it is very important to set Repaint to true when property changes have been completed. Failure to do so can result in a chart that never repaints.