import type { AgChartStyle, AgChartTheme } from './shared/agChartShared'; import type { AgWidgetDataFormat } from './shared/agWidget'; /** * Theme configuration for radar chart. */ export interface AgRadarChartTheme extends AgChartTheme { } /** * Style configuration for radar chart. */ export type AgRadarChartStyle = AgChartStyle; /** * Format configuration for radar chart. */ export type AgRadarChartFormat = AgWidgetDataFormat;