Class CircularGaugeTickSettings
Represents the tick line settings of an axis in the circular gauge component.
Inheritance
Namespace: Syncfusion.Blazor.CircularGauge
Assembly: Syncfusion.Blazor.dll
Syntax
public class CircularGaugeTickSettings : OwningComponentBase
Constructors
CircularGaugeTickSettings()
Declaration
public CircularGaugeTickSettings()
Properties
Color
Gets or sets the color of the tick line. This property accepts values in hex code or rgba as a valid CSS color string.
Declaration
public string Color { get; set; }
Property Value
Type | Description |
---|---|
System.String | A System.String representing the color of the tick line. |
Remarks
This property customizes the appearance of tick lines by setting their color.
DashArray
Gets or sets the dash pattern for the ticks in the circular gauge component.
Declaration
public string DashArray { get; set; }
Property Value
Type | Description |
---|---|
System.String | A System.String representing the dash pattern. Default is "0". |
Remarks
Specifies the dash array for rendering tick lines.
Height
Gets or sets the height of the ticks in the circular gauge component.
Declaration
public virtual double Height { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A System.Double representing the height of the tick lines. |
Remarks
Controls how tall the tick lines are visually presented on the axis.
Interval
Gets or sets the interval between tick lines in the circular gauge component.
Declaration
public double Interval { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A System.Double representing the distance between consecutive tick lines. |
Remarks
Defines the spacing between tick lines along the axis.
Offset
Gets or sets the distance of the ticks from the axis in the circular gauge component.
Declaration
public double Offset { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A System.Double representing the offset distance of tick lines from the axis. |
Remarks
This property moves the ticks further away or closer to the axis where they're rendered.
Position
Gets or sets the position of the ticks in the circular gauge component.
Declaration
public Position Position { get; set; }
Property Value
Remarks
Determines whether the ticks are placed inside or outside of the gauge's axis.
UseRangeColor
Gets or sets a value indicating whether the tick lines take on the range color.
Declaration
public bool UseRangeColor { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | A System.Boolean indicating if the ticks should use the range color. Default is false. |
Remarks
When this property is set to true, tick lines are colored according to the axis range color.
Width
Gets or sets the width of the ticks in the circular gauge component.
Declaration
public double Width { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A System.Double representing the width of the tick lines. Default is 2. |
Remarks
Defines how thick the tick lines are drawn.
Methods
Dispose(Boolean)
Disposes the property values during the destroy of the component that is hold up for the execution of the component.
Declaration
protected override void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | disposing |