diff --git a/src/components/DonutChart.tsx b/src/components/DonutChart.tsx index f377a2b..0d84ae6 100644 --- a/src/components/DonutChart.tsx +++ b/src/components/DonutChart.tsx @@ -11,9 +11,17 @@ export function DonutChart(): ReactElement { return { data, title: { - text: 'Flight Time by Month', + text: 'Flight Time by Month (Donut)', }, - series: [], + series: [ + { + type: 'donut', + angleKey: 'time', + legendItemKey: 'label', + calloutLabelKey: 'label', + innerRadiusRatio: 0.6, + }, + ], theme, }; }, [data]);