@antv/g2plot
Version:
G2 Plot, a market of plots built with the Grammar of Graphics'
9 lines (8 loc) • 358 B
TypeScript
import BasePlot, { PlotConfig } from '../../base/plot';
import DensityLayer, { DensityViewConfig } from './layer';
export interface DensityConfig extends DensityViewConfig, PlotConfig {
}
export default class Density extends BasePlot<DensityConfig> {
static getDefaultOptions: typeof DensityLayer.getDefaultOptions;
createLayers(props: any): void;
}