@antv/g2plot
Version:
G2 Plot, a market of plots built with the Grammar of Graphics'
14 lines (13 loc) • 457 B
TypeScript
import { PlotConfig } from '../..';
import { StepLineViewConfig, StepLineLayer } from './layer';
import BasePlot from '../../base/plot';
export interface StepLineConfig extends StepLineViewConfig, PlotConfig {
}
export default class StepLine extends BasePlot<StepLineConfig> {
static getDefaultOptions: typeof StepLineLayer.getDefaultOptions;
/**
* 复写父类方法
* @param props
*/
protected createLayers(props: any): void;
}