parallel-coordinates.src.d.ts 679 B

12345678910111213141516171819202122232425
  1. /*!*
  2. *
  3. * Copyright (c) Highsoft AS. All rights reserved.
  4. *
  5. *!*/
  6. import * as globals from "../globals.src";
  7. import * as _Highcharts from "../highcharts.src";
  8. /**
  9. * Adds the module to the imported Highcharts namespace.
  10. *
  11. * @param highcharts
  12. * The imported Highcharts namespace to extend.
  13. */
  14. export function factory(highcharts: typeof Highcharts): void;
  15. declare module "../highcharts.src" {
  16. interface Chart {
  17. /**
  18. * Flag used in parallel coordinates plot to check if chart has
  19. * ||-coords (parallel coords).
  20. */
  21. hasParallelCoordinates: boolean;
  22. }
  23. }
  24. export default factory;
  25. export let Highcharts: typeof _Highcharts;