treemapThemeData property

SfTreemapThemeData treemapThemeData
final

Defines the default configuration of treemap widgets.

Widget build(BuildContext context) {
 return Scaffold(
   appBar: AppBar(),
     body: Center(
       child: SfTheme(
         data: SfThemeData(
           treemapThemeData: SfTreemapThemeData()
         ),
         child: SfTreemap(),
       ),
     )
  );
}

Implementation

final SfTreemapThemeData treemapThemeData;