textAngle property

double? textAngle
final

Angle of the plot band text.

Widget build(BuildContext context) {
   return Container(
       child: SfCartesianChart(
          primaryXAxis: NumericAxis(
            plotBands: <PlotBand>[
               PlotBand(
                   isVisible:true,
                   textAngle: 90
               )
             ]
          )
       )
   );
}

Implementation

final double? textAngle;