UNPKG

@antv/g2plot

Version:

G2 Plot, a market of plots built with the Grammar of Graphics'

9 lines (8 loc) 358 B
import BasePlot, { PlotConfig } from '../../base/plot'; import HeatmapLayer, { HeatmapViewConfig } from './layer'; export interface HeatmapConfig extends HeatmapViewConfig, PlotConfig { } export default class Heatmap extends BasePlot<HeatmapConfig> { static getDefaultOptions: typeof HeatmapLayer.getDefaultOptions; createLayers(props: any): void; }