plotBandLabelTextStyle property

TextStyle? plotBandLabelTextStyle
final

Specifies the text style for plot band label.

Widget build(BuildContext context) {
 return Scaffold(
     body: Center(
       child: SfTheme(
         data: SfThemeData(
           chartThemeData: SfChartThemeData(
             plotBandLabelTextStyle: TextStyle(color: Colors.red)
           )
         ),
         child: SfCartesianChart(),
       ),
     )
  );
}

Implementation

final TextStyle? plotBandLabelTextStyle;