backgroundImage property

ImageProvider backgroundImage
final

Background image for chart.

Defaults to null

Widget build(BuildContext context) {
   return Container(
       child: SfCircularChart(
           backgroundImage: const AssetImage('image.png'),
       ));
}

Implementation

final ImageProvider backgroundImage