import type { AgBarChartFormat } from './agBarChart'; import type { AgChartDataMapping } from './shared/agChartShared'; import type { AgWidgetData } from './shared/agWidget'; /** * 100% Stacked Column Chart widget configuration. * Displays data as stacked vertical bars normalized to 100%. * Useful for showing proportional relationships. * * @example * const chart: AgColumnChartStacked100 = { * format: { * title: { text: 'Market Share by Quarter', enabled: true } * }, * dataMapping: { * categoryKey: [{ id: 'quarter' }], * valueKey: [ * { id: 'companyA', aggregation: 'sum' }, * { id: 'companyB', aggregation: 'sum' } * ] * } * }; */ export interface AgColumnChartStacked100 extends AgWidgetData { /** * Widget type identifier. */ type: 'column-chart-stacked-100'; }