@antv/g2plot
Version:
G2 Plot, a market of plots built with the Grammar of Graphics'
12 lines (11 loc) • 460 B
TypeScript
import BasePlot, { PlotConfig } from '../../base/plot';
import MatrixLayer, { MatrixLayerConfig } from './layer';
export interface MatrixConfig extends MatrixLayerConfig, PlotConfig {
}
export default class Matrix extends BasePlot<MatrixConfig> {
static getDefaultOptions: typeof MatrixLayer.getDefaultOptions;
createLayers(props: any): void;
changeShape(type: string): void;
mappingSize(field: string): void;
disableMappingSize(): void;
}