echarts
Version:
Apache ECharts is a powerful, interactive charting and data visualization library for browser
9 lines (8 loc) • 651 B
TypeScript
import type Axis from '../coord/Axis.js';
import { AxisStatKey } from '../coord/axisStatistics.js';
import { EChartsExtensionInstallRegisters } from '../extension.js';
export declare type BaseBarSeriesSubType = typeof SERIES_TYPE_BAR | typeof SERIES_TYPE_PICTORIAL_BAR;
export declare const SERIES_TYPE_BAR = "bar";
export declare const SERIES_TYPE_PICTORIAL_BAR = "pictorialBar";
export declare function requireAxisStatisticsForBaseBar(registers: EChartsExtensionInstallRegisters, axisStatKey: AxisStatKey, seriesType: BaseBarSeriesSubType, coordSysType: 'cartesian2d' | 'polar'): void;
export declare function getStartValue(baseAxis: Axis): number;