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,29 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/highcharts-3d
* @requires highcharts
*
* 3D features for Highcharts JS
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../Core/Globals.js';
import '../Core/Math3D.js';
import SVGRenderer3D from '../Core/Renderer/SVG/SVGRenderer3D.js';
import Chart3D from '../Core/Chart/Chart3D.js';
import ZAxis from '../Core/Axis/ZAxis.js';
import Axis3D from '../Core/Axis/Axis3D.js';
import '../Core/Axis/Tick3D.js';
import '../Core/Series/Series3D.js';
import Area3DSeries from '../Series/Area3D/Area3DSeries.js';
import '../Series/Column3D/Column3DComposition.js';
import '../Series/Pie3D/Pie3DComposition.js';
import '../Series/Scatter3D/Scatter3DSeries.js';
var G = Highcharts;
// Compositions
SVGRenderer3D.compose(G.SVGRenderer);
Chart3D.compose(G.Chart, G.Fx);
ZAxis.compose(G.Chart);
Axis3D.compose(G.Axis);
Area3DSeries.compose(G.seriesTypes.area);

View File

@@ -0,0 +1,29 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/highcharts-more
* @requires highcharts
*
* (c) 2009-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../Core/Globals.js';
var G = Highcharts;
import SeriesRegistry from '../Core/Series/SeriesRegistry.js';
import '../Extensions/Pane.js';
import '../Series/AreaRange/AreaRangeSeries.js';
import '../Series/AreaSplineRange/AreaSplineRangeSeries.js';
import '../Series/BoxPlot/BoxPlotSeries.js';
import BubbleSeries from '../Series/Bubble/BubbleSeries.js';
BubbleSeries.compose(G.Axis, G.Chart, G.Legend, G.Series);
import '../Series/ColumnRange/ColumnRangeSeries.js';
import '../Series/ColumnPyramid/ColumnPyramidSeries.js';
import '../Series/ErrorBar/ErrorBarSeries.js';
import '../Series/Gauge/GaugeSeries.js';
import PackedBubbleSeries from '../Series/PackedBubble/PackedBubbleSeries.js';
import '../Series/Polygon/PolygonSeries.js';
import '../Series/Waterfall/WaterfallSeries.js';
import PolarAdditions from '../Series/PolarComposition.js';
PackedBubbleSeries.compose(G.Axis, G.Chart, G.Legend, G.Series);
PolarAdditions.compose(G.Axis, G.Chart, G.Pointer, G.Series, G.Tick, SeriesRegistry.seriesTypes.areasplinerange, SeriesRegistry.seriesTypes.column, SeriesRegistry.seriesTypes.line, SeriesRegistry.seriesTypes.spline);

View File

@@ -0,0 +1,150 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/highcharts
*
* (c) 2009-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import Highcharts from '../Core/Globals.js';
import Utilities from '../Core/Utilities.js';
import DefaultOptions from '../Core/DefaultOptions.js';
import Fx from '../Core/Animation/Fx.js';
import Animation from '../Core/Animation/AnimationUtilities.js';
import AST from '../Core/Renderer/HTML/AST.js';
import FormatUtilities from '../Core/FormatUtilities.js';
import RendererUtilities from '../Core/Renderer/RendererUtilities.js';
import SVGElement from '../Core/Renderer/SVG/SVGElement.js';
import SVGRenderer from '../Core/Renderer/SVG/SVGRenderer.js';
import HTMLElement from '../Core/Renderer/HTML/HTMLElement.js';
import HTMLRenderer from '../Core/Renderer/HTML/HTMLRenderer.js';
import Axis from '../Core/Axis/Axis.js';
import DateTimeAxis from '../Core/Axis/DateTimeAxis.js';
import LogarithmicAxis from '../Core/Axis/LogarithmicAxis.js';
import PlotLineOrBand from '../Core/Axis/PlotLineOrBand/PlotLineOrBand.js';
import Tick from '../Core/Axis/Tick.js';
import Tooltip from '../Core/Tooltip.js';
import Point from '../Core/Series/Point.js';
import Pointer from '../Core/Pointer.js';
import MSPointer from '../Core/MSPointer.js';
import Legend from '../Core/Legend/Legend.js';
import Chart from '../Core/Chart/Chart.js';
import '../Extensions/ScrollablePlotArea.js';
import StackingAxis from '../Core/Axis/Stacking/StackingAxis.js';
import StackItem from '../Core/Axis/Stacking/StackItem.js';
import Series from '../Core/Series/Series.js';
import SeriesRegistry from '../Core/Series/SeriesRegistry.js';
import '../Series/Line/LineSeries.js';
import '../Series/Area/AreaSeries.js';
import '../Series/Spline/SplineSeries.js';
import '../Series/AreaSpline/AreaSplineSeries.js';
import ColumnSeries from '../Series/Column/ColumnSeries.js';
import ColumnDataLabel from '../Series/Column/ColumnDataLabel.js';
import '../Series/Bar/BarSeries.js';
import '../Series/Scatter/ScatterSeries.js';
import PieSeries from '../Series/Pie/PieSeries.js';
import PieDataLabel from '../Series/Pie/PieDataLabel.js';
import DataLabel from '../Core/Series/DataLabel.js';
import '../Extensions/OverlappingDataLabels.js';
import Responsive from '../Core/Responsive.js';
import Color from '../Core/Color/Color.js';
import Time from '../Core/Time.js';
var G = Highcharts;
// Animation
G.animate = Animation.animate;
G.animObject = Animation.animObject;
G.getDeferredAnimation = Animation.getDeferredAnimation;
G.setAnimation = Animation.setAnimation;
G.stop = Animation.stop;
G.timers = Fx.timers;
// Classes
G.AST = AST;
G.Axis = Axis;
G.Chart = Chart;
G.chart = Chart.chart;
G.Fx = Fx;
G.Legend = Legend;
G.PlotLineOrBand = PlotLineOrBand;
G.Point = Point;
G.Pointer = (MSPointer.isRequired() ? MSPointer : Pointer);
G.Series = Series;
G.StackItem = StackItem;
G.SVGElement = SVGElement;
G.SVGRenderer = SVGRenderer;
G.Tick = Tick;
G.Time = Time;
G.Tooltip = Tooltip;
// Color
G.Color = Color;
G.color = Color.parse;
// Compositions
HTMLRenderer.compose(SVGRenderer);
HTMLElement.compose(SVGElement);
// DefaultOptions
G.defaultOptions = DefaultOptions.defaultOptions;
G.getOptions = DefaultOptions.getOptions;
G.time = DefaultOptions.defaultTime;
G.setOptions = DefaultOptions.setOptions;
// Format Utilities
G.dateFormat = FormatUtilities.dateFormat;
G.format = FormatUtilities.format;
G.numberFormat = FormatUtilities.numberFormat;
// Utilities
G.addEvent = Utilities.addEvent;
G.arrayMax = Utilities.arrayMax;
G.arrayMin = Utilities.arrayMin;
G.attr = Utilities.attr;
G.clearTimeout = Utilities.clearTimeout;
G.correctFloat = Utilities.correctFloat;
G.createElement = Utilities.createElement;
G.css = Utilities.css;
G.defined = Utilities.defined;
G.destroyObjectProperties = Utilities.destroyObjectProperties;
G.discardElement = Utilities.discardElement;
G.distribute = RendererUtilities.distribute;
G.erase = Utilities.erase;
G.error = Utilities.error;
G.extend = Utilities.extend;
G.extendClass = Utilities.extendClass;
G.find = Utilities.find;
G.fireEvent = Utilities.fireEvent;
G.getMagnitude = Utilities.getMagnitude;
G.getStyle = Utilities.getStyle;
G.inArray = Utilities.inArray;
G.isArray = Utilities.isArray;
G.isClass = Utilities.isClass;
G.isDOMElement = Utilities.isDOMElement;
G.isFunction = Utilities.isFunction;
G.isNumber = Utilities.isNumber;
G.isObject = Utilities.isObject;
G.isString = Utilities.isString;
G.keys = Utilities.keys;
G.merge = Utilities.merge;
G.normalizeTickInterval = Utilities.normalizeTickInterval;
G.objectEach = Utilities.objectEach;
G.offset = Utilities.offset;
G.pad = Utilities.pad;
G.pick = Utilities.pick;
G.pInt = Utilities.pInt;
G.relativeLength = Utilities.relativeLength;
G.removeEvent = Utilities.removeEvent;
G.seriesType = SeriesRegistry.seriesType;
G.splat = Utilities.splat;
G.stableSort = Utilities.stableSort;
G.syncTimeout = Utilities.syncTimeout;
G.timeUnits = Utilities.timeUnits;
G.uniqueKey = Utilities.uniqueKey;
G.useSerialIds = Utilities.useSerialIds;
G.wrap = Utilities.wrap;
// Compositions
ColumnDataLabel.compose(ColumnSeries);
DataLabel.compose(Series);
DateTimeAxis.compose(Axis);
LogarithmicAxis.compose(Axis);
PieDataLabel.compose(PieSeries);
PlotLineOrBand.compose(Axis);
Responsive.compose(Chart);
StackingAxis.compose(Axis, Chart, Series);
// Default Export
export default G;

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);

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/themes/avocado
* @requires highcharts
*
* (c) 2009-2021 Highsoft AS
*
* License: www.highcharts.com/license
*/
'use strict';
import H from '../../Core/Globals.js';
import AvocadoTheme from '../../Extensions/Themes/Avocado.js';
H.theme = AvocadoTheme.options;
AvocadoTheme.apply();

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/themes/brand-dark
* @requires highcharts
*
* (c) 2009-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import H from '../../Core/Globals.js';
import BrandDark from '../../Extensions/Themes/BrandDark.js';
H.theme = BrandDark.options;
BrandDark.apply();

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/themes/brand-light
* @requires highcharts
*
* (c) 2009-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import H from '../../Core/Globals.js';
import BrandLight from '../../Extensions/Themes/BrandLight.js';
H.theme = BrandLight.options;
BrandLight.apply();

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/themes/dark-blue
* @requires highcharts
*
* (c) 2009-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import H from '../../Core/Globals.js';
import DarkBlueTheme from '../../Extensions/Themes/DarkBlue.js';
H.theme = DarkBlueTheme.options;
DarkBlueTheme.apply();

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/themes/dark-green
* @requires highcharts
*
* (c) 2009-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import H from '../../Core/Globals.js';
import DarkGreenTheme from '../../Extensions/Themes/DarkGreen.js';
H.theme = DarkGreenTheme.options;
DarkGreenTheme.apply();

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/themes/dark-unica
* @requires highcharts
*
* (c) 2009-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import H from '../../Core/Globals.js';
import DarkUnicaTheme from '../../Extensions/Themes/DarkUnica.js';
H.theme = DarkUnicaTheme.options;
DarkUnicaTheme.apply();

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/themes/gray
* @requires highcharts
*
* (c) 2009-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import H from '../../Core/Globals.js';
import GrayTheme from '../../Extensions/Themes/Gray.js';
H.theme = GrayTheme.options;
GrayTheme.apply();

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/themes/grid-light
* @requires highcharts
*
* (c) 2009-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import H from '../../Core/Globals.js';
import GridLightTheme from '../../Extensions/Themes/GridLight.js';
H.theme = GridLightTheme.options;
GridLightTheme.apply();

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/themes/grid
* @requires highcharts
*
* (c) 2009-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import H from '../../Core/Globals.js';
import GridTheme from '../../Extensions/Themes/Grid.js';
H.theme = GridTheme.options;
GridTheme.apply();

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/themes/high-contrast-dark
* @requires highcharts
*
* (c) 2009-2021 Highsoft AS
*
* License: www.highcharts.com/license
*/
'use strict';
import H from '../../Core/Globals.js';
import HighContrastDarkTheme from '../../Extensions/Themes/HighContrastDark.js';
H.theme = HighContrastDarkTheme.options;
HighContrastDarkTheme.apply();

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/themes/high-contrast-light
* @requires highcharts
*
* (c) 2009-2021 Highsoft AS
*
* License: www.highcharts.com/license
*/
'use strict';
import H from '../../Core/Globals.js';
import HighContrastLightTheme from '../../Extensions/Themes/HighContrastLight.js';
H.theme = HighContrastLightTheme.options;
HighContrastLightTheme.apply();

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/themes/sand-signika
* @requires highcharts
*
* (c) 2009-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import H from '../../Core/Globals.js';
import SandSignikaTheme from '../../Extensions/Themes/SandSignika.js';
H.theme = SandSignikaTheme.options;
SandSignikaTheme.apply();

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/themes/skies
* @requires highcharts
*
* (c) 2009-2021 Torstein Honsi
*
* License: www.highcharts.com/license
*/
'use strict';
import H from '../../Core/Globals.js';
import SkiesTheme from '../../Extensions/Themes/Skies.js';
H.theme = SkiesTheme.options;
SkiesTheme.apply();

View File

@@ -0,0 +1,14 @@
/**
* @license Highcharts JS v10.2.1 (2022-08-29)
* @module highcharts/themes/sunset
* @requires highcharts
*
* (c) 2009-2021 Highsoft AS
*
* License: www.highcharts.com/license
*/
'use strict';
import H from '../../Core/Globals.js';
import SunsetTheme from '../../Extensions/Themes/Sunset.js';
H.theme = SunsetTheme.options;
SunsetTheme.apply();