Class ChartCommonScrollbarSettings
Options to customize the scrollbar setings of the axis.
Inherited Members
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class ChartCommonScrollbarSettings : ChartSubComponent, ISubcomponentTracker
Constructors
ChartCommonScrollbarSettings()
Declaration
public ChartCommonScrollbarSettings()
Properties
Enable
Gets or sets a value indicating whether the scrollbar is enabled.
Declaration
public bool Enable { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true to enable the scrollbar; otherwise, false. |
Remarks
If set to true, the axis will be rendered with a scrollbar.
PointsLength
Gets or sets the length of the points for numeric and logarithmic values.
Declaration
public double PointsLength { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The double value representing the length of the points. |
Remarks
At a time either this PointsLength or Range is applicable.
Range
Gets or sets an instance of ChartAxisScrollbarSettingsRange which controls the customization of the scrollbar range.
Declaration
public ChartAxisScrollbarSettingsRange Range { get; set; }
Property Value
Type | Description |
---|---|
ChartAxisScrollbarSettingsRange | An instance of ChartAxisScrollbarSettingsRange. |
Remarks
At a time either this Range or PointsLength is applicable.