You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Scrollbar appearance and behavior are customizable using [ChartAxisScrollbarSettings](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.ChartAxisScrollbarSettings.html):
426
+
427
+
-`TrackColor`: Specifies the track color.
428
+
-`TrackRadius`: Specifies the track corner radius.
429
+
-`ScrollbarColor`: Specifies the scrollbar color.
430
+
-`ScrollbarRadius`: Specifies the scrollbar corner radius.
431
+
-`GripColor`: Specifies the grip color. The grip is the draggable handle (thumb) within the scrollbar used to move the visible range.
432
+
-`Height`: Specifies the scrollbar height.
433
+
-`EnableZoom`: Enables or disables zooming via the scrollbar. When enabled, arrows appear at the scrollbar ends to zoom in or out; when disabled, arrows are hidden and zooming via the scrollbar is unavailable.
public List<ChartData> SalesDetails = new List<ChartData>
472
+
{
473
+
new ChartData { X= 1900, Y= 4 },
474
+
new ChartData { X= 1920, Y= 3.0 },
475
+
new ChartData { X= 1940, Y= 3.8 },
476
+
new ChartData { X= 1960, Y= 3.4 },
477
+
new ChartData { X= 2000, Y= 3.9 }
478
+
};
479
+
}
480
+
```
481
+

482
+
423
483
## Auto interval on zooming
424
484
425
485
The axis interval will be calculated automatically with respect to the zoomed range, if the [EnableAutoIntervalOnZooming](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Charts.ChartAxis.html#Syncfusion_Blazor_Charts_ChartAxis_EnableAutoIntervalOnZooming) property is set to **true**.
0 commit comments