2af2417f2a3081e5b6b36134fb3614a60c3cffa328da37f3d0ddf2e48edcb43238e17afdb9382a526529db0a092f47492ebec6dbb9f6b89f7b99ab888047be 428 B

1234567891011121314
  1. import { DimensionName } from '../../util/types.js';
  2. import Axis from '../Axis.js';
  3. declare class Cartesian<AxisT extends Axis> {
  4. readonly type: string;
  5. readonly name: string;
  6. private _dimList;
  7. private _axes;
  8. constructor(name: string);
  9. getAxis(dim: DimensionName): AxisT;
  10. getAxes(): AxisT[];
  11. getAxesByScale(scaleType: string): AxisT[];
  12. addAxis(axis: AxisT): void;
  13. }
  14. export default Cartesian;