borderColor property

Color? borderColor
final

Specifies the border color for an axis track.

Defaults to Colors.black26 in LightTheme and Colors.white30 in DarkTheme.

This snippet shows how to set border color of an axis track.


SfLinearGauge(
axisLineStyle: LinearAxisLineStyle(
borderColor: Colors.brown )
)

Implementation

final Color? borderColor;