NiceDrillDownChart constructor
const
NiceDrillDownChart({ - Key? key,
- required List<NiceDrillDownItem> data,
- NiceDrillDownChartType chartType = NiceDrillDownChartType.bar,
- double height = 350,
- void onDrillDown(
- List<String> path,
- NiceDrillDownItem item
)?,
- String? title,
- bool showBreadcrumb = true,
- bool showValues = true,
- Duration animationDuration = const Duration(milliseconds: 300),
})
Implementation
const NiceDrillDownChart({
super.key,
required this.data,
this.chartType = NiceDrillDownChartType.bar,
this.height = 350,
this.onDrillDown,
this.title,
this.showBreadcrumb = true,
this.showValues = true,
this.animationDuration = const Duration(milliseconds: 300),
});