KCircleChart constructor

KCircleChart({
  1. Key? key,
  2. required List<KCircleChartItem> items,
  3. double? width,
  4. int ringWidth = 50,
  5. required double height,
  6. bool showLegend = false,
  7. bool showTitleOnlyWhenSelected = false,
  8. double fontSize = 12,
  9. 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);