UNPKG

echarts

Version:

Apache ECharts is a powerful, interactive charting and data visualization library for browser

11 lines (10 loc) 397 B
import AxisView from './AxisView'; import { AngleAxisModel } from '../../coord/polar/AxisModel'; import GlobalModel from '../../model/Global'; declare class AngleAxisView extends AxisView { static readonly type = "angleAxis"; readonly type = "angleAxis"; axisPointerClass: string; render(angleAxisModel: AngleAxisModel, ecModel: GlobalModel): void; } export default AngleAxisView;