import type { AgRadialChartFormat } from './agRadialChart'; import type { AgChartDataMapping } from './shared/agChartShared'; import type { AgWidgetData } from './shared/agWidget'; /** * Radial Column Chart widget configuration. * Displays data as columns arranged in a circular pattern. * Similar to a bar chart but in radial form. * * @example * const chart: AgRadialColumnChart = { * format: { * title: { text: 'Monthly Performance', enabled: true } * }, * dataMapping: { * categoryKey: [{ id: 'month' }], * valueKey: [{ id: 'performance', aggregation: 'sum' }] * } * }; */ export interface AgRadialColumnChart extends AgWidgetData { /** * Widget type identifier. */ type: 'radial-column-chart'; }