Defines what custom label implementation will be provided by a ChartSeriesLabelStrategy instance.
Definition
Namespace:Telerik.Windows.Controls.ChartView
Assembly:Telerik.Windows.Controls.Chart.dll
Syntax:
C#
[Flags]
public enum LabelStrategyOptions
Fields
All options are defined.
C#
All = DefaultVisual | Content | Measure | Arrange
The strategy will provide custom arrange logic for each label.
C#
Arrange = 8
The strategy will provide custom content for each label.
C#
Content = 2
The strategy will provide custom visual element for each label.
C#
DefaultVisual = 1
The strategy will provide custom measurement logic for each label.
C#
Measure = 4
No custom implementation.
C#
None = 0