UNPKG

@toast-ui/chart

Version:

TOAST UI Application: Chart

12 lines (9 loc) 334 B
import { PolygonModel, CircleModel, SectorModel } from './series'; import { LineModel } from './axis'; import { ArcModel } from './radialAxis'; export type RadialPlotModelType = PolygonModel[] | CircleModel[] | ArcModel[]; export type RadialPlotModels = { plot: RadialPlotModelType; line: LineModel[]; band: SectorModel[]; };