UNPKG

amis-reports

Version:

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

21 lines (20 loc) 748 B
import { FormControlProps } from 'amis-core'; import type { BaseEventContext, RendererPluginAction, RendererPluginEvent } from 'amis-editor-core'; import { ChartBasePlugin } from './common/ChartBasePlugin'; export interface ChartWordCloudProps extends FormControlProps { } export interface ChartWordCloudDslContainerProps extends FormControlProps { } export default class ChartWordCloudPlugin extends ChartBasePlugin { rendererName: string; name: string; description: string; pluginIcon: string; scaffold: any; previewSchema: any; panelTitle: string; events: RendererPluginEvent[]; actions: RendererPluginAction[]; panelJustify: boolean; panelBodyAsyncCreator(context: BaseEventContext): Promise<any>; }