UNPKG

amis-reports

Version:

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

27 lines (26 loc) 796 B
/** * 数值指标的右侧属性面板 */ import { BasePlugin } from 'amis-editor'; import { RendererPluginAction } from 'amis-editor-core'; import { FormControlProps } from 'amis-core'; import type { BaseEventContext } from 'amis-editor-core'; export interface TargetNumberProps extends FormControlProps { } export default class TargetNumberPlugin extends BasePlugin { rendererName: string; $schema: string; isBaseComponent: boolean; order: number; name: string; description: string; tags: string[]; pluginIcon: string; scaffold: any; previewSchema: any; panelTitle: string; panelJustify: boolean; afterUpdate: (event: any) => void; actions: RendererPluginAction[]; panelBodyAsyncCreator(context: BaseEventContext): Promise<any>; }