@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
14 lines (13 loc) • 500 B
TypeScript
import { EditorState } from 'braft-editor';
import BaseChartStore from '../stores/base';
import EditorChartStyle from '../../../base-pandora-visualization/services/chart-style/charts/editor/editor';
export default class EditorChartStore extends BaseChartStore<EditorChartStyle> {
editorState: EditorState;
get series(): never[];
get chartDataset(): {
fields: never[];
rows: never[];
};
get htmlContent(): any;
setDditorState(editorState: EditorState): void;
}