echarts
Version:
Apache ECharts is a powerful, interactive charting and data visualization library for browser
15 lines (14 loc) • 395 B
TypeScript
import Cartesian2D from './Cartesian2D.js';
export default function cartesianPrepareCustom(coordSys: Cartesian2D): {
coordSys: {
type: string;
x: number;
y: number;
width: number;
height: number;
};
api: {
coord: (data: number[]) => number[];
size: (dataSize: number[], dataItem: number[]) => number[];
};
};