UNPKG

@visactor/vchart

Version:

charts lib based @visactor/VGrammar

10 lines (9 loc) 559 B
import type { ICartesianAxisSpec } from '../../component/axis/cartesian/interface/spec'; import { CartesianChartSpecTransformer } from '../cartesian'; import type { IMosaicChartSpec } from './interface'; export declare class MosaicChartSpecTransformer<T extends IMosaicChartSpec = IMosaicChartSpec> extends CartesianChartSpecTransformer<T> { protected _getDefaultSeriesSpec(spec: T): any; transformSpec(spec: T): void; protected _setDefaultXAxisSpec(spec: T): ICartesianAxisSpec; protected _setDefaultYAxisSpec(spec: T): ICartesianAxisSpec; }