explodeIndex property

num? explodeIndex
final

Index of the slice to explode it at the initial rendering.

Defaults to null.

Widget build(BuildContext context) {
   return Container(
       child: SfPyramidChart(
           series: PyramidSeries<ChartData, String>(
              explodeIndex: 1,
              explode: true
            )
        )
    );
}

Implementation

final num? explodeIndex;