UDoughnutChart constructor

const UDoughnutChart({
  1. required List<DoughnutChartData> data,
  2. Widget? center,
  3. LegendPosition legendPosition = LegendPosition.left,
  4. LegendItemOverflowMode overflowMode = LegendItemOverflowMode.wrap,
  5. Key? key,
})

Implementation

const UDoughnutChart({
  required this.data,
  this.center,
  this.legendPosition = LegendPosition.left,
  this.overflowMode = LegendItemOverflowMode.wrap,
  super.key,
});