@visactor/vchart
Version:
charts lib based @visactor/VGrammar
9 lines (8 loc) • 312 B
TypeScript
import type { DataView } from '@visactor/vdataset';
import type { IGrammarItem } from '../interface';
export interface ICompilableData extends IGrammarItem {
getDataView: () => DataView;
setDataView: (d?: DataView) => void;
getLatestData: () => any[];
updateData: (noRender?: boolean) => void;
}