@dfsj/echarts
Version:
专业的水文曲线组件或构造函数以及通用的echart二次封装图表
11 lines (10 loc) • 774 B
TypeScript
import * as echarts from 'echarts';
import type { CoordinateSystemMaster } from 'echarts/types/src/coord/CoordinateSystem';
import type Model from 'echarts/types/src/model/Model';
export default class Factory {
static symbol(model: Model, sys: CoordinateSystemMaster, finder: any): echarts.graphic.Group | undefined;
static index(model: Model, sys: CoordinateSystemMaster, finder: any, api: any): echarts.graphic.Group | undefined;
static rect(model: Model, sys: CoordinateSystemMaster, finder: any, api: any): echarts.graphic.Rect | undefined;
static line(model: Model, sys: CoordinateSystemMaster, finder: any): echarts.graphic.Group | undefined;
static text(model: Model, sys: CoordinateSystemMaster, finder: any): echarts.graphic.Text | undefined;
}