UNPKG

amis-reports

Version:

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

28 lines (27 loc) 847 B
/** * 雷达图的右侧属性面板 */ import { FormControlProps } from 'amis-core'; import { RendererPluginAction } from 'amis-editor-core'; import type { BaseEventContext } from 'amis-editor-core'; import { ChartBasePlugin } from './common/ChartBasePlugin'; export interface ChartRadarProps extends FormControlProps { } export interface ChartRadarDslContainerProps extends FormControlProps { } export default class ChartRadarPlugin extends ChartBasePlugin { rendererName: string; $schema: string; isBaseComponent: boolean; order: number; name: string; description: string; tags: string[]; pluginIcon: string; scaffold: any; previewSchema: any; panelTitle: string; actions: RendererPluginAction[]; panelJustify: boolean; panelBodyAsyncCreator(context: BaseEventContext): Promise<any>; }