explode property

bool explode
final

Enables or disables the explode of slices on tap.

Default to false.

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

Implementation

final bool explode;