ag-charts-community
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
9 lines (8 loc) • 355 B
TypeScript
import type { Series } from './series';
import type { LonLatBBox } from './topology/lonLatBbox';
import type { MercatorScale } from './topology/mercatorScale';
export interface ITopology extends Series<unknown, any, any, any> {
topologyBounds: LonLatBBox | undefined;
scale: MercatorScale | undefined;
setChartTopology(topology: any): void;
}