gantt.src.js 624 B

123456789101112131415161718192021
  1. /**
  2. * @license Highcharts Gantt JS v9.1.0 (2021-05-04)
  3. * @module highcharts/modules/gantt
  4. * @requires highcharts
  5. *
  6. * Gantt series
  7. *
  8. * (c) 2016-2021 Lars A. V. Cabrera
  9. *
  10. * License: www.highcharts.com/license
  11. */
  12. 'use strict';
  13. import Highcharts from '../../Core/Globals.js';
  14. import '../../Series/XRange/XRangeSeries.js';
  15. import '../../Series/Gantt/GanttSeries.js';
  16. import GanttChart from '../../Core/Chart/GanttChart.js';
  17. import '../../Core/Scrollbar.js';
  18. import '../../Extensions/RangeSelector.js';
  19. import '../../Core/Navigator.js';
  20. Highcharts.GanttChart = GanttChart;
  21. Highcharts.ganttChart = GanttChart.ganttChart;