echarts
Version:
Apache ECharts is a powerful, interactive charting and data visualization library for browser
10 lines (9 loc) • 350 B
TypeScript
import MatrixModel from '../../coord/matrix/MatrixModel.js';
import ComponentView from '../../view/Component.js';
import GlobalModel from '../../model/Global.js';
declare class MatrixView extends ComponentView {
static type: string;
type: string;
render(matrixModel: MatrixModel, ecModel: GlobalModel): void;
}
export default MatrixView;