UNPKG

amis-reports

Version:

爱速搭报表,基于 ECharts 实现的图表功能组件,旨在为用户提供简单和快捷的可视化报表能力,帮助用户在爱速搭平台上快速设计常见的数据报表页和大屏报表效果页。

16 lines (15 loc) 534 B
import type { BaseEventContext } from 'amis-editor-core'; import { RendererPluginAction } from 'amis-editor-core'; import { ChartBasePlugin } from './common/ChartBasePlugin'; export default class ChartSankeyPlugin extends ChartBasePlugin { rendererName: string; name: string; description: string; pluginIcon: string; scaffold: any; previewSchema: any; panelTitle: string; actions: RendererPluginAction[]; panelJustify: boolean; panelBodyAsyncCreator(context: BaseEventContext): Promise<any>; }