UNPKG

@visactor/vchart

Version:

charts lib based @visactor/VGrammar

14 lines (13 loc) 686 B
import type { IRangeColumnChartSpec } from './interface'; import { RangeColumnChartSpecTransformer } from './range-column-transformer'; import { BaseChart } from '../base'; export declare class RangeColumnChart<T extends IRangeColumnChartSpec = IRangeColumnChartSpec> extends BaseChart<T> { static readonly type: string; static readonly seriesType: string; static readonly transformerConstructor: typeof RangeColumnChartSpecTransformer; readonly transformerConstructor: typeof RangeColumnChartSpecTransformer; readonly type: string; readonly seriesType: string; protected _setModelOption(): void; } export declare const registerRangeColumnChart: () => void;