backgroundColor property
Background color of the chart.
Widget build(BuildContext context) {
return Container(
child: SfFunnelChart(
backgroundColor: Colors.blue
)
);
}
Implementation
final Color? backgroundColor;
Background color of the chart.
Widget build(BuildContext context) {
return Container(
child: SfFunnelChart(
backgroundColor: Colors.blue
)
);
}
final Color? backgroundColor;