KCircleChart constructor
KCircleChart({
- Key? key,
- required List<
KCircleChartItem> items, - double? width,
- int ringWidth = 50,
- required double height,
- bool showLegend = false,
- bool showTitleOnlyWhenSelected = false,
- double fontSize = 12,
- Orientation orientation = Orientation.landscape,
Implementation
KCircleChart(
{Key? key,
required this.items,
this.width,
this.ringWidth = 50,
required this.height,
this.showLegend = false,
this.showTitleOnlyWhenSelected = false,
this.fontSize = 12,
this.orientation = Orientation.landscape})
: super(key: key);