UNPKG

@antv/g2plot

Version:

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

14 lines (13 loc) 522 B
import { LayerConfig } from '../../base/layer'; import TinyLayer, { TinyViewConfig } from '../tiny-layer'; export declare type TinyAreaViewConfig = TinyViewConfig; export interface TinyAreaLayerConfig extends TinyAreaViewConfig, LayerConfig { } export default class TinyAreaLayer extends TinyLayer<TinyAreaLayerConfig> { line: any; area: any; type: string; protected geometryParser(dim: string, type: string): string; protected addGeometry(): void; protected parseEvents(eventParser: any): void; }