UNPKG

@visactor/vchart

Version:

charts lib based @visactor/VGrammar

13 lines (12 loc) 650 B
import { BaseHistogramChart } from './base/base'; import type { IHistogramChartSpec } from './interface'; import { HistogramChartSpecTransformer } from './histogram-transformer'; export declare class HistogramChart<T extends IHistogramChartSpec = IHistogramChartSpec> extends BaseHistogramChart<T> { static readonly type: string; static readonly seriesType: string; static readonly transformerConstructor: typeof HistogramChartSpecTransformer; readonly transformerConstructor: typeof HistogramChartSpecTransformer; readonly type: string; readonly seriesType: string; } export declare const registerHistogramChart: () => void;