UNPKG

ag-charts-community

Version:

Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue

10 lines (9 loc) 350 B
import type { ChartAxis } from '../chart/chartAxis'; import type { BaseOptionsModule } from './baseModule'; import type { ModuleContext } from './moduleContext'; export interface AxisModule extends BaseOptionsModule { type: 'axis'; identifier: string; moduleFactory(moduleContext: ModuleContext): ChartAxis; themeTemplate?: object; }