amis-reports
Version:
爱速搭报表,基于 ECharts 实现的图表功能组件,旨在为用户提供简单和快捷的可视化报表能力,帮助用户在爱速搭平台上快速设计常见的数据报表页和大屏报表效果页。
21 lines (20 loc) • 730 B
TypeScript
import { FormControlProps } from 'amis-core';
import type { BaseEventContext, RendererPluginEvent, RendererPluginAction } from 'amis-editor-core';
import { ChartBasePlugin } from './common/ChartBasePlugin';
export interface ChartMapProps extends FormControlProps {
}
export interface ChartMapDslContainerProps extends FormControlProps {
}
export default class ChartMapPlugin extends ChartBasePlugin {
rendererName: string;
name: string;
description: string;
pluginIcon: string;
scaffold: any;
previewSchema: any;
panelTitle: string;
panelJustify: boolean;
events: RendererPluginEvent[];
actions: RendererPluginAction[];
panelBodyAsyncCreator(context: BaseEventContext): Promise<any>;
}