Gets or sets a collection with CustomInterval objects, which can be used to customize the appearance of the ticks in a particular interval. This is a dependency property.
Namespace: MindFusion.Gauges.Wpf
Assembly: MindFusion.Gauges.Wpf
SyntaxC#
Copy Code
|
|---|
public CustomIntervalCollection CustomIntervals { get; set; } |
Visual Basic
Copy Code
|
|---|
Public Property CustomIntervals As CustomIntervalCollection |
An instance of the CustomIntervalCollection class.
RemarksThe custom intervals can be used to give specific appearance to the ticks within a particular range.
ExampleThe following example defines a linear scale. The major ticks of the scale in the range [60..100] are filled with a Red brush.
XAML
Copy Code
|
|---|
<gauges:LinearScale> |
See Also