Carga
This commit is contained in:
2025-04-17 00:35:33 -06:00
parent 4977462629
commit 67fc72aed5
1333 changed files with 1077639 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/accessibility
* @requires highcharts
*
* Accessibility module
*
* (c) 2010-2021 Highsoft AS
* Author: Oystein Moseng
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../../Core/Globals.js';
import Accessibility from '../../Accessibility/Accessibility.js';
import AccessibilityComponent from '../../Accessibility/AccessibilityComponent.js';
import ChartUtilities from '../../Accessibility/Utils/ChartUtilities.js';
import HTMLUtilities from '../../Accessibility/Utils/HTMLUtilities.js';
import KeyboardNavigationHandler from '../../Accessibility/KeyboardNavigationHandler.js';
import SeriesDescriber from '../../Accessibility/Components/SeriesComponent/SeriesDescriber.js';
var G = Highcharts;
G.i18nFormat = Accessibility.i18nFormat;
G.A11yChartUtilities = ChartUtilities;
G.A11yHTMLUtilities = HTMLUtilities;
G.AccessibilityComponent = AccessibilityComponent;
G.KeyboardNavigationHandler = KeyboardNavigationHandler;
G.SeriesAccessibilityDescriber = SeriesDescriber;
Accessibility.compose(G.Axis, G.Chart, G.Legend, G.Point, G.Series, G.SVGElement, G.RangeSelector);

View File

@@ -0,0 +1,28 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/annotations-advanced
* @requires highcharts
*
* Annotations module
*
* (c) 2009-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../../Core/Globals.js';
import Annotation from '../../Extensions/Annotations/Annotation.js';
import '../../Extensions/Annotations/Types/BasicAnnotation.js';
import '../../Extensions/Annotations/Types/CrookedLine.js';
import '../../Extensions/Annotations/Types/ElliottWave.js';
import '../../Extensions/Annotations/Types/Tunnel.js';
import '../../Extensions/Annotations/Types/InfinityLine.js';
import '../../Extensions/Annotations/Types/TimeCycles.js';
import '../../Extensions/Annotations/Types/Fibonacci.js';
import '../../Extensions/Annotations/Types/FibonacciTimeZones.js';
import '../../Extensions/Annotations/Types/Pitchfork.js';
import '../../Extensions/Annotations/Types/VerticalLine.js';
import '../../Extensions/Annotations/Types/Measure.js';
var G = Highcharts;
G.Annotation = Annotation;
Annotation.compose(G.Chart, G.Pointer, G.SVGRenderer);

View File

@@ -0,0 +1,17 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/annotations
* @requires highcharts
*
* Annotations module
*
* (c) 2009-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../../Core/Globals.js';
import Annotation from '../../Extensions/Annotations/Annotation.js';
var G = Highcharts;
G.Annotation = Annotation;
Annotation.compose(G.Chart, G.Pointer, G.SVGRenderer);

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/arc-diagram
* @requires highcharts
* @requires highcharts/modules/sankey
*
* Arc diagram module
*
* (c) 2021 Piotr Madej
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/ArcDiagram/ArcDiagramSeries.js';

View File

@@ -0,0 +1,13 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/arrow-symbols
* @requires highcharts
*
* Arrow Symbols
*
* (c) 2017-2021 Lars A. V. Cabrera
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Extensions/ArrowSymbols.js';

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/boost-canvas
* @requires highcharts
*
* Boost module
*
* (c) 2010-2021 Highsoft AS
* Author: Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Extensions/BoostCanvas.js';

View File

@@ -0,0 +1,19 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/boost
* @requires highcharts
*
* Boost module
*
* (c) 2010-2021 Highsoft AS
* Author: Torstein Honsi
*
* License: www.highcharts.com/license
*
* */
'use strict';
import Highcharts from '../../Core/Globals.js';
import Boost from '../../Extensions/Boost/Boost.js';
var G = Highcharts;
G.hasWebGLSupport = Boost.hasWebGLSupport;
Boost.compose(G.Chart, G.Series, G.seriesTypes, G.Color);

View File

@@ -0,0 +1,15 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/broken-axis
* @requires highcharts
*
* (c) 2009-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../../Core/Globals.js';
import BrokenAxis from '../../Core/Axis/BrokenAxis.js';
var G = Highcharts;
// Compositions
BrokenAxis.compose(G.Axis, G.Series);

View File

@@ -0,0 +1,13 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/bullet
* @requires highcharts
*
* Bullet graph series type for Highcharts
*
* (c) 2010-2021 Kacper Madej
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/Bullet/BulletSeries.js';

View File

@@ -0,0 +1,17 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/color-axis
* @requires highcharts
*
* ColorAxis module
*
* (c) 2012-2021 Pawel Potaczek
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../../Core/Globals.js';
import ColorAxis from '../../Core/Axis/Color/ColorAxis.js';
var G = Highcharts;
G.ColorAxis = ColorAxis;
ColorAxis.compose(G.Chart, G.Fx, G.Legend, G.Series);

View File

@@ -0,0 +1,13 @@
/**
* @license Highcharts Gantt JS v10.2.1 (2022-08-29)
* @module highcharts/modules/current-date-indicator
* @requires highcharts
*
* CurrentDateIndicator
*
* (c) 2010-2021 Lars A. V. Cabrera
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Extensions/CurrentDateIndication.js';

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/cylinder
* @requires highcharts
* @requires highcharts/highcharts-3d
*
* Highcharts cylinder module
*
* (c) 2010-2021 Kacper Madej
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/Cylinder/CylinderSeries.js';

View File

@@ -0,0 +1,24 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/data
* @requires highcharts
*
* Data module
*
* (c) 2012-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../../Core/Globals.js';
import HttpUtilities from '../../Core/HttpUtilities.js';
import Data from '../../Extensions/Data.js';
var G = Highcharts;
// Functions
G.ajax = HttpUtilities.ajax;
G.data = Data.data;
G.getJSON = HttpUtilities.getJSON;
G.post = HttpUtilities.post;
// Classes
G.Data = Data;
G.HttpUtilities = HttpUtilities;

View File

@@ -0,0 +1,14 @@
/**
* @license Highstock JS v10.2.1 (2022-08-29)
* @module highcharts/modules/datagrouping
* @requires highcharts
*
* Data grouping module
*
* (c) 2010-2021 Torstein Hønsi
*
* License: www.highcharts.com/license
*/
'use strict';
import dataGrouping from '../../Extensions/DataGrouping.js';
export default dataGrouping;

View File

@@ -0,0 +1,18 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/debugger
* @requires highcharts
*
* Debugger module
*
* (c) 2012-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../../Core/Globals.js';
import Debugger from '../../Extensions/Debugger/Debugger.js';
import ErrorMessages from '../../Extensions/Debugger/ErrorMessages.js';
var G = Highcharts;
G.errorMessages = ErrorMessages;
Debugger.compose(G.Chart);

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/dependency-wheel
* @requires highcharts
* @requires highcharts/modules/sankey
*
* Dependency wheel module
*
* (c) 2010-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/DependencyWheel/DependencyWheelSeries.js';

View File

@@ -0,0 +1,13 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/dotplot
* @requires highcharts
*
* Dot plot series type for Highcharts
*
* (c) 2010-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/DotPlot/DotPlotSeries.js';

View File

@@ -0,0 +1,15 @@
/**
* @license Highstock JS v10.2.1 (2022-08-29)
* @module highcharts/modules/drag-panes
* @requires highcharts
* @requires highcharts/modules/stock
*
* Drag-panes module
*
* (c) 2010-2021 Highsoft AS
* Author: Kacper Madej
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Extensions/DragPanes.js';

View File

@@ -0,0 +1,11 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/draggable-points
* @requires highcharts
*
* (c) 2009-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Extensions/DraggablePoints.js';

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/drilldown
* @requires highcharts
*
* Highcharts Drilldown module
*
* Author: Torstein Honsi
* License: www.highcharts.com/license
*
*/
'use strict';
import '../../Extensions/Drilldown.js';
import '../../Extensions/Breadcrumbs.js';

View File

@@ -0,0 +1,11 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/dumbbell
* @requires highcharts
*
* (c) 2009-2021 Sebastian Bochan, Rafal Sebestjanski
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/Dumbbell/DumbbellSeries.js';

View File

@@ -0,0 +1,17 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/export-data
* @requires highcharts
* @requires highcharts/modules/exporting
*
* Exporting module
*
* (c) 2010-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../../Core/Globals.js';
var G = Highcharts;
import ExportData from '../../Extensions/ExportData/ExportData.js';
ExportData.compose(G.Chart);

View File

@@ -0,0 +1,21 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/exporting
* @requires highcharts
*
* Exporting module
*
* (c) 2010-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../../Core/Globals.js';
import Exporting from '../../Extensions/Exporting/Exporting.js';
import HttpUtilities from '../../Core/HttpUtilities.js';
var G = Highcharts;
G.HttpUtilities = HttpUtilities;
G.ajax = HttpUtilities.ajax;
G.getJSON = HttpUtilities.getJSON;
G.post = HttpUtilities.post;
Exporting.compose(G.Chart, G.Renderer);

View File

@@ -0,0 +1,18 @@
/**
* @license Highstock JS v10.2.1 (2022-08-29)
* @module highcharts/modules/full-screen
* @requires highcharts
*
* Advanced Highcharts Stock tools
*
* (c) 2010-2021 Highsoft AS
* Author: Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../../Core/Globals.js';
import Fullscreen from '../../Extensions/Exporting/Fullscreen.js';
var G = Highcharts;
G.Fullscreen = Fullscreen;
Fullscreen.compose(G.Chart);

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/funnel
* @requires highcharts
*
* Highcharts funnel module
*
* (c) 2010-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/Funnel/FunnelSeries.js';
import '../../Series/Pyramid/PyramidSeries.js';

View File

@@ -0,0 +1,18 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/funnel3d
* @requires highcharts
* @requires highcharts/highcharts-3d
* @requires highcharts/modules/cylinder
*
* Highcharts funnel module
*
* (c) 2010-2021 Kacper Madej
*
* License: www.highcharts.com/license
*/
'use strict';
import RendererRegistry from '../../Core/Renderer/RendererRegistry.js';
import Funnel3DSeries from '../../Series/Funnel3D/Funnel3DSeries.js';
Funnel3DSeries.compose(RendererRegistry.getRendererType());
export default Funnel3DSeries;

View File

@@ -0,0 +1,27 @@
/**
* @license Highcharts Gantt JS v10.2.1 (2022-08-29)
* @module highcharts/modules/gantt
* @requires highcharts
*
* Gantt series
*
* (c) 2016-2021 Lars A. V. Cabrera
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../../Core/Globals.js';
import XRangeSeries from '../../Series/XRange/XRangeSeries.js';
import '../../Series/Gantt/GanttSeries.js';
import GanttChart from '../../Core/Chart/GanttChart.js';
import Scrollbar from '../../Core/Scrollbar.js';
import '../../Extensions/RangeSelector.js';
import '../../Core/Navigator.js';
var G = Highcharts;
// Classes
G.Scrollbar = Scrollbar;
G.GanttChart = GanttChart;
G.ganttChart = GanttChart.ganttChart;
// Compositions
Scrollbar.compose(G.Axis);
XRangeSeries.compose(G.Axis);

View File

@@ -0,0 +1,17 @@
/**
* @license Highcharts Gantt JS v10.2.1 (2022-08-29)
* @module highcharts/modules/grid-axis
* @requires highcharts
*
* GridAxis
*
* (c) 2016-2021 Lars A. V. Cabrera
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../../Core/Globals.js';
import GridAxis from '../../Core/Axis/GridAxis.js';
var G = Highcharts;
// Compositions
GridAxis.compose(G.Axis, G.Chart, G.Tick);

View File

@@ -0,0 +1,16 @@
/**
* @license Highmaps JS v10.2.1 (2022-08-29)
* @module highcharts/modules/heatmap
* @requires highcharts
*
* (c) 2009-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../../Core/Globals.js';
import ColorAxis from '../../Core/Axis/Color/ColorAxis.js';
import '../../Series/Heatmap/HeatmapSeries.js';
var G = Highcharts;
G.ColorAxis = ColorAxis;
ColorAxis.compose(G.Chart, G.Fx, G.Legend, G.Series);

View File

@@ -0,0 +1,14 @@
/**
* @license Highstock JS v10.2.1 (2022-08-29)
* @module highcharts/modules/heikinashi
* @requires highcharts
* @requires highcharts/modules/stock
*
* HeikinAshi series type for Highcharts Stock
*
* (c) 2010-2021 Karol Kolodziej
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/HeikinAshi/HeikinAshiSeries.js';

View File

@@ -0,0 +1,13 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/histogram-bellcurve
* @requires highcharts
*
* (c) 2010-2021 Highsoft AS
* Author: Sebastian Domas
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/Histogram/HistogramSeries.js';
import '../../Series/Bellcurve/BellcurveSeries.js';

View File

@@ -0,0 +1,14 @@
/**
* @license Highstock JS v10.2.1 (2022-08-29)
* @module highcharts/modules/hollowcandlestick
* @requires highcharts
* @requires highcharts/modules/stock
*
* Hollow Candlestick series type for Highcharts Stock
*
* (c) 2010-2021 Karol Kolodziej
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/HollowCandlestick/HollowCandlestickSeries.js';

View File

@@ -0,0 +1,13 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/item-series
* @requires highcharts
*
* Item series type for Highcharts
*
* (c) 2019 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/Item/ItemSeries.js';

View File

@@ -0,0 +1,11 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/lollipop
* @requires highcharts
*
* (c) 2009-2021 Sebastian Bochan, Rafal Sebestjanski
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/Lollipop/LollipopSeries.js';

View File

@@ -0,0 +1,13 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/marker-clusters
* @requires highcharts
*
* Marker clusters module for Highcharts
*
* (c) 2010-2021 Wojciech Chmiel
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Extensions/MarkerClusters.js';

View File

@@ -0,0 +1,16 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/networkgraph
* @requires highcharts
*
* Force directed graph module
*
* (c) 2010-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../../Core/Globals.js';
import NetworkgraphSeries from '../../Series/Networkgraph/NetworkgraphSeries.js';
var G = Highcharts;
NetworkgraphSeries.compose(G.Chart);

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/no-data-to-display
* @requires highcharts
*
* Plugin for displaying a message when there is no data visible in chart.
*
* (c) 2010-2021 Highsoft AS
* Author: Oystein Moseng
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Extensions/NoDataToDisplay.js';

View File

@@ -0,0 +1,20 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/offline-exporting
* @requires highcharts
* @requires highcharts/modules/exporting
*
* Client side exporting module
*
* (c) 2015-2021 Torstein Honsi / Oystein Moseng
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../../Core/Globals.js';
import OfflineExporting from '../../Extensions/OfflineExporting/OfflineExporting.js';
var G = Highcharts;
// Compatibility
G.downloadSVGLocal = OfflineExporting.downloadSVGLocal;
// Compose
OfflineExporting.compose(G.Chart);

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/oldie-polyfills
* @requires highcharts
*
* Old IE (v6, v7, v8) array polyfills for Highcharts v7+.
*
* (c) 2010-2021 Highsoft AS
* Author: Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Extensions/OldiePolyfills.js';

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/oldie
* @requires highcharts
*
* Old IE (v6, v7, v8) module for Highcharts v6+.
*
* (c) 2010-2021 Highsoft AS
* Author: Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Extensions/Oldie/Oldie.js';

View File

@@ -0,0 +1,13 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* Organization chart series type
* @module highcharts/modules/organization
* @requires highcharts
* @requires highcharts/modules/sankey
*
* (c) 2019-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/Organization/OrganizationSeries.js';

View File

@@ -0,0 +1,11 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/overlapping-datalabels
* @requires highcharts
*
* (c) 2009-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Extensions/OverlappingDataLabels.js';

View File

@@ -0,0 +1,13 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/parallel-coordinates
* @requires highcharts
*
* Support for parallel coordinates in Highcharts
*
* (c) 2010-2021 Pawel Fus
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Extensions/ParallelCoordinates.js';

View File

@@ -0,0 +1,13 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/pareto
* @requires highcharts
*
* Pareto series type for Highcharts
*
* (c) 2010-2021 Sebastian Bochan
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/ParetoSeries/ParetoSeries.js';

View File

@@ -0,0 +1,13 @@
/**
* @license Highcharts Gantt JS v10.2.1 (2022-08-29)
* @module highcharts/modules/pathfinder
* @requires highcharts
*
* Pathfinder
*
* (c) 2016-2021 Øystein Moseng
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Gantt/Pathfinder.js';

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/pattern-fill
* @requires highcharts
*
* Module for adding patterns and images as point fills.
*
* (c) 2010-2021 Highsoft AS
* Author: Torstein Hønsi, Øystein Moseng
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Extensions/PatternFill.js';

View File

@@ -0,0 +1,15 @@
/**
* @license Highstock JS v10.2.1 (2022-08-29)
* @module highcharts/modules/price-indicator
* @requires highcharts
* @requires highcharts/modules/stock
*
* Advanced Highcharts Stock tools
*
* (c) 2010-2021 Highsoft AS
* Author: Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Extensions/PriceIndication.js';

View File

@@ -0,0 +1,16 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/pyramid3d
* @requires highcharts
* @requires highcharts/highcharts-3d
* @requires highcharts/modules/cylinder
* @requires highcharts/modules/funnel3d
*
* Highcharts 3D funnel module
*
* (c) 2010-2021 Kacper Madej
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/Pyramid3D/Pyramid3DSeries.js';

View File

@@ -0,0 +1,13 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/sankey
* @requires highcharts
*
* Sankey diagram module
*
* (c) 2010-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/Sankey/SankeySeries.js';

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/series-label
* @requires highcharts
*
* (c) 2009-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../../Core/Globals.js';
import SeriesLabel from '../../Extensions/SeriesLabel/SeriesLabel.js';
var G = Highcharts;
SeriesLabel.compose(G.Chart, G.SVGRenderer);

View File

@@ -0,0 +1,16 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/series-on-point
* @requires highcharts
*
* Series on point module
*
* (c) 2010-2022 Highsoft AS
* Author: Rafal Sebestjanski and Piotr Madej
*
* License: www.highcharts.com/license
*/
'use strict';
import SeriesOnPointComposition from '../../Series/SeriesOnPointComposition.js';
var G = Highcharts;
SeriesOnPointComposition.compose(G.Series, G.Chart);

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/solid-gauge
* @requires highcharts
* @requires highcharts/highcharts-more
*
* Solid angular gauge module
*
* (c) 2010-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/SolidGauge/SolidGaugeSeries.js';

View File

@@ -0,0 +1,40 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/sonification
* @requires highcharts
*
* Sonification module
*
* (c) 2012-2021 Øystein Moseng
*
* License: www.highcharts.com/license
*/
'use strict';
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
import Highcharts from '../../Core/Globals.js';
import ChartSonify from '../../Extensions/Sonification/ChartSonify.js';
import Earcon from '../../Extensions/Sonification/Earcon.js';
import Instrument from '../../Extensions/Sonification/Instrument.js';
import PointSonify from '../../Extensions/Sonification/PointSonify.js';
import SeriesSonify from '../../Extensions/Sonification/SeriesSonify.js';
import Sonification from '../../Extensions/Sonification/Sonification.js';
import Timeline from '../../Extensions/Sonification/Timeline.js';
import TimelineEvent from '../../Extensions/Sonification/TimelineEvent.js';
import TimelinePath from '../../Extensions/Sonification/TimelinePath.js';
var G = Highcharts;
G.sonification = __assign(__assign({}, Sonification), { instruments: Instrument.definitions, Earcon: Earcon, Instrument: Instrument, Timeline: Timeline, TimelineEvent: TimelineEvent, TimelinePath: TimelinePath });
G.Earcon = Earcon;
G.Instrument = Instrument;
ChartSonify.compose(G.Chart);
SeriesSonify.compose(G.Series);
PointSonify.compose(G.Point);

View File

@@ -0,0 +1,13 @@
/**
* @license Highcharts Gantt JS v10.2.1 (2022-08-29)
* @module highcharts/modules/static-scale
* @requires highcharts
*
* StaticScale
*
* (c) 2016-2021 Torstein Honsi, Lars A. V. Cabrera
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Extensions/StaticScale.js';

View File

@@ -0,0 +1,23 @@
/**
* @license Highstock JS v10.2.1 (2022-08-29)
* @module highcharts/modules/stock-tools
* @requires highcharts
* @requires highcharts/modules/stock
*
* Advanced Highcharts Stock tools
*
* (c) 2010-2021 Highsoft AS
* Author: Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../../Core/Globals.js';
import NavigationBindings from '../../Extensions/Annotations/NavigationBindings.js';
import StockTools from '../../Stock/StockTools.js';
import StockToolsGui from '../../Stock/StockToolsGui.js';
import Toolbar from '../../Stock/StockToolbar.js';
var G = Highcharts;
G.Toolbar = Toolbar;
StockTools.compose(NavigationBindings);
StockToolsGui.compose(G.Chart, NavigationBindings);

View File

@@ -0,0 +1,33 @@
/**
* @license Highstock JS v10.2.1 (2022-08-29)
* @module highcharts/modules/stock
* @requires highcharts
*
* Highcharts Stock as a plugin for Highcharts
*
* (c) 2010-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../../Core/Globals.js';
import OrdinalAxis from '../../Core/Axis/OrdinalAxis.js';
import DataModifyComposition from '../../Series/DataModifyComposition.js';
import './broken-axis.src.js';
import '../../Extensions/DataGrouping.js';
import '../../Series/HLC/HLCSeries.js';
import '../../Series/OHLC/OHLCSeries.js';
import '../../Series/Candlestick/CandlestickSeries.js';
import '../../Series/Flags/FlagsSeries.js';
import Scrollbar from '../../Core/Scrollbar.js';
import '../../Core/Navigator.js';
import '../../Extensions/RangeSelector.js';
import StockChart from '../../Core/Chart/StockChart.js';
var G = Highcharts;
// Classes
G.Scrollbar = Scrollbar;
G.StockChart = G.stockChart = StockChart.stockChart;
// Compositions
Scrollbar.compose(G.Axis);
OrdinalAxis.compose(G.Axis, G.Series, G.Chart);
DataModifyComposition.compose(G.Series, G.Axis, G.Point);

View File

@@ -0,0 +1,13 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/streamgraph
* @requires highcharts
*
* Streamgraph module
*
* (c) 2010-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/Streamgraph/StreamgraphSeries.js';

View File

@@ -0,0 +1,13 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/sunburst
* @requires highcharts
*
* (c) 2016-2021 Highsoft AS
* Authors: Jon Arild Nygard
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/Treemap/TreemapSeries.js';
import '../../Series/Sunburst/SunburstSeries.js';

View File

@@ -0,0 +1,14 @@
/**
* @license Highmaps JS v10.2.1 (2022-08-29)
* @module highcharts/modules/tilemap
* @requires highcharts
* @requires highcharts/modules/map
*
* Tilemap module
*
* (c) 2010-2021 Highsoft AS
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/Tilemap/TilemapSeries.js';

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/timeline
* @requires highcharts
*
* Timeline series
*
* (c) 2010-2021 Highsoft AS
* Author: Daniel Studencki
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/Timeline/TimelineSeries.js';

View File

@@ -0,0 +1,17 @@
/**
* @license Highcharts Gantt JS v10.2.1 (2022-08-29)
* @module highcharts/modules/treegrid
* @requires highcharts
*
* Tree Grid
*
* (c) 2016-2021 Jon Arild Nygard
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../../Core/Globals.js';
import TreeGridAxis from '../../Core/Axis/TreeGrid/TreeGridAxis.js';
var G = Highcharts;
// Compositions
TreeGridAxis.compose(G.Axis, G.Chart, G.Series, G.Tick);

View File

@@ -0,0 +1,16 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/treemap
* @requires highcharts
*
* (c) 2014-2021 Highsoft AS
* Authors: Jon Arild Nygard / Oystein Moseng
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../../Core/Globals.js';
import '../../Series/Treemap/TreemapSeries.js';
import Breadcrumbs from '../../Extensions/Breadcrumbs.js';
var G = Highcharts;
G.Breadcrumbs = Breadcrumbs;

View File

@@ -0,0 +1,13 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/variable-pie
* @requires highcharts
*
* Variable Pie module for Highcharts
*
* (c) 2010-2021 Grzegorz Blachliński
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/VariablePie/VariablePieSeries.js';

View File

@@ -0,0 +1,13 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/variwide
* @requires highcharts
*
* Highcharts variwide module
*
* (c) 2010-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/Variwide/VariwideSeries.js';

View File

@@ -0,0 +1,13 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/vector
* @requires highcharts
*
* Vector plot series module
*
* (c) 2010-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/Vector/VectorSeries.js';

View File

@@ -0,0 +1,12 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/venn
* @requires highcharts
*
* (c) 2017-2021 Highsoft AS
* Authors: Jon Arild Nygard
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/Venn/VennSeries.js';

View File

@@ -0,0 +1,13 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/windbarb
* @requires highcharts
*
* Wind barb series module
*
* (c) 2010-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/Windbarb/WindbarbSeries.js';

View File

@@ -0,0 +1,12 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/wordcloud
* @requires highcharts
*
* (c) 2016-2021 Highsoft AS
* Authors: Jon Arild Nygard
*
* License: www.highcharts.com/license
*/
'use strict';
import '../../Series/Wordcloud/WordcloudSeries.js';

View File

@@ -0,0 +1,16 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/modules/xrange
* @requires highcharts
*
* X-range series
*
* (c) 2010-2021 Torstein Honsi, Lars A. V. Cabrera
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../../Core/Globals.js';
import XRangeSeries from '../../Series/XRange/XRangeSeries.js';
var G = Highcharts;
XRangeSeries.compose(G.Axis);