import type { AgRadialChartFormat } from './agRadialChart'; import type { AgChartDataMapping } from './shared/agChartShared'; import type { AgWidgetData } from './shared/agWidget'; /** * Radial Bar Chart widget configuration. * Displays data as horizontal bars arranged in a circular pattern. * Useful for showing progress or comparing values in a compact circular form. * * @example * const chart: AgRadialBarChart = { * format: { * title: { text: 'Goal Progress', enabled: true } * }, * dataMapping: { * categoryKey: [{ id: 'goal' }], * valueKey: [{ id: 'progress', aggregation: 'sum' }] * } * }; */ export interface AgRadialBarChart extends AgWidgetData { /** * Widget type identifier. */ type: 'radial-bar-chart'; }