isTransposed property

bool isTransposed
final

By setting this, the orientation of x-axis is set to vertical and orientation of y-axis is set to horizontal.

Defaults to false.

Widget build(BuildContext context) {
    return Container(
        child: SfCartesianChart(
            isTransposed: true,
          )
     );
}

Implementation

final bool isTransposed;