highcharts 12.2.0 → 12.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bower.json +1 -1
- package/css/annotations/popup.css +86 -45
- package/css/highcharts.css +40 -35
- package/css/stocktools/gui.css +28 -11
- package/es-modules/Accessibility/Components/InfoRegionsComponent.js +3 -3
- package/es-modules/Accessibility/Components/LegendComponent.js +10 -1
- package/es-modules/Accessibility/Components/MenuComponent.js +26 -23
- package/es-modules/Accessibility/Components/NavigatorComponent.js +5 -1
- package/es-modules/Accessibility/Components/SeriesComponent/ForcedMarkers.js +3 -1
- package/es-modules/Accessibility/FocusBorder.js +4 -0
- package/es-modules/Accessibility/HighContrastMode.js +0 -5
- package/es-modules/Accessibility/Options/A11yDefaults.js +12 -0
- package/es-modules/Core/Axis/Axis.js +4 -3
- package/es-modules/Core/Axis/Axis3DComposition.js +0 -3
- package/es-modules/Core/Axis/AxisDefaults.js +5 -8
- package/es-modules/Core/Axis/BrokenAxis.js +114 -90
- package/es-modules/Core/Axis/Color/ColorAxis.js +3 -3
- package/es-modules/Core/Axis/Color/ColorAxisDefaults.js +2 -3
- package/es-modules/Core/Axis/OrdinalAxis.js +19 -12
- package/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBand.js +15 -2
- package/es-modules/Core/Axis/RadialAxis.js +18 -7
- package/es-modules/Core/Axis/ScrollbarAxis.js +19 -17
- package/es-modules/Core/Axis/Stacking/StackingAxis.js +0 -1
- package/es-modules/Core/Axis/Tick.js +1 -1
- package/es-modules/Core/Axis/TreeGrid/TreeGridAxis.js +36 -51
- package/es-modules/Core/Axis/TreeGrid/TreeGridTick.js +39 -17
- package/es-modules/Core/Axis/WaterfallAxis.js +4 -4
- package/es-modules/Core/Chart/Chart.js +41 -34
- package/es-modules/Core/Chart/ChartDefaults.js +16 -2
- package/es-modules/Core/Chart/GanttChart.js +4 -2
- package/es-modules/Core/Chart/StockChart.js +42 -49
- package/es-modules/Core/Color/Color.js +4 -8
- package/es-modules/Core/Defaults.js +16 -7
- package/es-modules/Core/Geometry/CircleUtilities.js +3 -1
- package/es-modules/Core/Globals.js +1 -1
- package/es-modules/Core/HttpUtilities.js +45 -38
- package/es-modules/Core/Legend/Legend.js +8 -7
- package/es-modules/Core/Pointer.js +17 -9
- package/es-modules/Core/Renderer/HTML/AST.js +15 -15
- package/es-modules/Core/Renderer/HTML/HTMLElement.js +8 -3
- package/es-modules/Core/Renderer/SVG/SVGElement.js +2 -2
- package/es-modules/Core/Renderer/SVG/SVGLabel.js +10 -1
- package/es-modules/Core/Renderer/SVG/SVGRenderer.js +10 -7
- package/es-modules/Core/Renderer/SVG/TextBuilder.js +2 -2
- package/es-modules/Core/Series/DataLabel.js +4 -2
- package/es-modules/Core/Series/Point.js +9 -0
- package/es-modules/Core/Series/Series.js +17 -7
- package/es-modules/Core/Series/SeriesDefaults.js +1 -3
- package/es-modules/Core/Series/SeriesRegistry.js +8 -1
- package/es-modules/Core/Templating.js +6 -5
- package/es-modules/Core/Tooltip.js +3 -1
- package/es-modules/Data/Connectors/CSVConnector.js +32 -15
- package/es-modules/Data/Connectors/DataConnector.js +107 -12
- package/es-modules/Data/Connectors/GoogleSheetsConnector.js +29 -17
- package/es-modules/Data/Connectors/HTMLTableConnector.js +3 -3
- package/es-modules/Data/Connectors/JSONConnector.js +37 -17
- package/es-modules/Data/Converters/HTMLTableConverter.js +2 -2
- package/es-modules/Data/Converters/JSONConverter.js +0 -1
- package/es-modules/Data/DataPool.js +15 -4
- package/es-modules/Data/DataTable.js +1 -2
- package/es-modules/Data/Formula/FormulaParser.js +33 -1
- package/es-modules/Data/Formula/FormulaProcessor.js +97 -45
- package/es-modules/Data/Modifiers/DataModifier.js +1 -1
- package/es-modules/Data/Modifiers/FilterModifier.js +168 -0
- package/es-modules/Data/Modifiers/FilterModifierOptions.js +14 -0
- package/es-modules/Data/Modifiers/SortModifier.js +12 -3
- package/es-modules/Extensions/Annotations/Annotation.js +10 -7
- package/es-modules/Extensions/Annotations/AnnotationChart.js +7 -3
- package/es-modules/Extensions/Annotations/AnnotationDefaults.js +38 -12
- package/es-modules/Extensions/Annotations/Controllables/ControllableLabel.js +10 -3
- package/es-modules/Extensions/Annotations/MockPoint.js +6 -3
- package/es-modules/Extensions/Annotations/NavigationBindingsDefaults.js +1 -1
- package/es-modules/Extensions/Annotations/Popup/PopupAnnotations.js +10 -4
- package/es-modules/Extensions/Annotations/Popup/PopupComposition.js +1 -1
- package/es-modules/Extensions/Annotations/Types/BasicAnnotation.js +0 -3
- package/es-modules/Extensions/Annotations/Types/CrookedLine.js +97 -94
- package/es-modules/Extensions/Annotations/Types/ElliottWave.js +43 -36
- package/es-modules/Extensions/Annotations/Types/Fibonacci.js +86 -82
- package/es-modules/Extensions/Annotations/Types/FibonacciTimeZones.js +74 -71
- package/es-modules/Extensions/Annotations/Types/InfinityLine.js +17 -3
- package/es-modules/Extensions/Annotations/Types/Measure.js +229 -226
- package/es-modules/Extensions/Annotations/Types/Pitchfork.js +39 -40
- package/es-modules/Extensions/Annotations/Types/TimeCycles.js +56 -52
- package/es-modules/Extensions/Annotations/Types/Tunnel.js +80 -76
- package/es-modules/Extensions/Annotations/Types/VerticalLine.js +57 -53
- package/es-modules/Extensions/Boost/Boost.js +5 -1
- package/es-modules/Extensions/Boost/BoostSeries.js +53 -21
- package/es-modules/Extensions/Boost/WGLRenderer.js +30 -21
- package/es-modules/Extensions/Boost/WGLShader.js +18 -5
- package/es-modules/Extensions/BoostCanvas.js +0 -5
- package/es-modules/Extensions/BorderRadius.js +6 -2
- package/es-modules/Extensions/Breadcrumbs/Breadcrumbs.js +1 -1
- package/es-modules/Extensions/DownloadURL.js +43 -8
- package/es-modules/Extensions/ExportData/ExportData.js +875 -781
- package/es-modules/Extensions/ExportData/ExportDataDefaults.js +67 -13
- package/es-modules/Extensions/Exporting/Exporting.js +1177 -546
- package/es-modules/Extensions/Exporting/ExportingDefaults.js +52 -36
- package/es-modules/Extensions/Exporting/Fullscreen.js +2 -2
- package/es-modules/Extensions/NonCartesianSeriesZoom/NonCartesianSeriesZoom.js +311 -0
- package/es-modules/Extensions/OfflineExporting/OfflineExporting.js +254 -575
- package/es-modules/Extensions/OfflineExporting/OfflineExportingDefaults.js +9 -38
- package/es-modules/Extensions/Pane/Pane.js +1 -1
- package/es-modules/Extensions/Pane/PaneComposition.js +19 -12
- package/es-modules/Extensions/Pane/PaneDefaults.js +9 -1
- package/es-modules/Extensions/ScrollablePlotArea.js +29 -21
- package/es-modules/Extensions/Sonification/Sonification.js +1 -1
- package/es-modules/Extensions/StaticScale.js +13 -11
- package/es-modules/Extensions/TextPath.js +2 -2
- package/es-modules/Extensions/Themes/Adaptive.js +1009 -0
- package/es-modules/Maps/MapNavigation.js +1 -1
- package/es-modules/Series/Bellcurve/BellcurveSeries.js +16 -9
- package/es-modules/Series/Bubble/BubblePoint.js +2 -2
- package/es-modules/Series/Column/ColumnSeriesDefaults.js +1 -2
- package/es-modules/Series/DataModifyComposition.js +0 -2
- package/es-modules/Series/DragNodesComposition.js +4 -0
- package/es-modules/Series/DrawPointUtilities.js +1 -1
- package/es-modules/Series/Flags/FlagsSeriesDefaults.js +2 -0
- package/es-modules/Series/GraphLayoutComposition.js +2 -1
- package/es-modules/Series/Heatmap/HeatmapSeriesDefaults.js +1 -2
- package/es-modules/Series/Histogram/HistogramSeries.js +19 -17
- package/es-modules/Series/Item/ItemSeries.js +1 -1
- package/es-modules/Series/PackedBubble/PackedBubblePoint.js +5 -0
- package/es-modules/Series/Pie/PieDataLabel.js +2 -2
- package/es-modules/Series/Pie/PieSeries.js +2 -2
- package/es-modules/Series/Pie/PieSeriesDefaults.js +1 -2
- package/es-modules/Series/PolarComposition.js +37 -2
- package/es-modules/Series/SeriesOnPointComposition.js +0 -1
- package/es-modules/Series/SimulationSeriesUtilities.js +7 -0
- package/es-modules/Series/SolidGauge/SolidGaugeSeries.js +7 -2
- package/es-modules/Series/SolidGauge/SolidGaugeSeriesDefaults.js +13 -0
- package/es-modules/Series/Treegraph/TreegraphLayout.js +10 -4
- package/es-modules/Series/Treegraph/TreegraphSeries.js +3 -1
- package/es-modules/Series/Treemap/TreemapSeries.js +4 -4
- package/es-modules/Series/Variwide/VariwideComposition.js +9 -11
- package/es-modules/Series/Variwide/VariwideSeries.js +8 -1
- package/es-modules/Series/Waterfall/WaterfallSeries.js +12 -17
- package/es-modules/Series/Wordcloud/WordcloudSeries.js +87 -10
- package/es-modules/Series/XRange/XRangePoint.js +2 -1
- package/es-modules/Shared/BaseForm.js +6 -3
- package/es-modules/Shared/TimeBase.js +5 -1
- package/es-modules/Stock/Indicators/MACD/MACDIndicator.js +1 -1
- package/es-modules/Stock/Navigator/NavigatorComposition.js +2 -2
- package/es-modules/Stock/Scrollbar/Scrollbar.js +5 -7
- package/es-modules/Stock/StockTools/StockToolbar.js +1 -1
- package/es-modules/Stock/StockTools/StockToolsBindings.js +34 -113
- package/es-modules/masters/highcharts-3d.src.js +3 -1
- package/es-modules/masters/highcharts-gantt.src.js +8 -2
- package/es-modules/masters/highcharts-more.src.js +2 -2
- package/es-modules/masters/highcharts.src.js +2 -2
- package/es-modules/masters/highmaps.src.js +2 -2
- package/es-modules/masters/highstock.src.js +2 -2
- package/es-modules/masters/i18n/fr-FR.src.d.ts +1 -1
- package/es-modules/masters/i18n/fr-FR.src.js +1 -1
- package/es-modules/masters/i18n/nb-NO.src.d.ts +1 -1
- package/es-modules/masters/i18n/nb-NO.src.js +1 -1
- package/es-modules/masters/i18n/zh-CN.src.d.ts +1 -1
- package/es-modules/masters/i18n/zh-CN.src.js +1 -1
- package/es-modules/masters/indicators/acceleration-bands.src.js +1 -1
- package/es-modules/masters/indicators/accumulation-distribution.src.js +1 -1
- package/es-modules/masters/indicators/ao.src.js +1 -1
- package/es-modules/masters/indicators/apo.src.js +1 -1
- package/es-modules/masters/indicators/aroon-oscillator.src.js +1 -1
- package/es-modules/masters/indicators/aroon.src.js +1 -1
- package/es-modules/masters/indicators/atr.src.js +1 -1
- package/es-modules/masters/indicators/bollinger-bands.src.js +1 -1
- package/es-modules/masters/indicators/cci.src.js +1 -1
- package/es-modules/masters/indicators/chaikin.src.js +1 -1
- package/es-modules/masters/indicators/cmf.src.js +1 -1
- package/es-modules/masters/indicators/cmo.src.js +1 -1
- package/es-modules/masters/indicators/dema.src.js +1 -1
- package/es-modules/masters/indicators/disparity-index.src.js +1 -1
- package/es-modules/masters/indicators/dmi.src.js +1 -1
- package/es-modules/masters/indicators/dpo.src.js +1 -1
- package/es-modules/masters/indicators/ema.src.js +0 -3
- package/es-modules/masters/indicators/ichimoku-kinko-hyo.src.js +1 -1
- package/es-modules/masters/indicators/indicators-all.src.js +1 -1
- package/es-modules/masters/indicators/indicators.src.js +1 -1
- package/es-modules/masters/indicators/keltner-channels.src.js +1 -1
- package/es-modules/masters/indicators/klinger.src.js +1 -1
- package/es-modules/masters/indicators/macd.src.js +1 -1
- package/es-modules/masters/indicators/mfi.src.js +1 -1
- package/es-modules/masters/indicators/momentum.src.js +1 -1
- package/es-modules/masters/indicators/natr.src.js +1 -1
- package/es-modules/masters/indicators/obv.src.js +1 -1
- package/es-modules/masters/indicators/pivot-points.src.js +1 -1
- package/es-modules/masters/indicators/ppo.src.js +1 -1
- package/es-modules/masters/indicators/price-channel.src.js +1 -1
- package/es-modules/masters/indicators/price-envelopes.src.js +1 -1
- package/es-modules/masters/indicators/psar.src.js +1 -1
- package/es-modules/masters/indicators/regressions.src.js +1 -1
- package/es-modules/masters/indicators/roc.src.js +1 -1
- package/es-modules/masters/indicators/rsi.src.js +1 -1
- package/es-modules/masters/indicators/slow-stochastic.src.js +1 -1
- package/es-modules/masters/indicators/stochastic.src.js +1 -1
- package/es-modules/masters/indicators/supertrend.src.js +1 -1
- package/es-modules/masters/indicators/tema.src.js +1 -1
- package/es-modules/masters/indicators/trendline.src.js +1 -1
- package/es-modules/masters/indicators/trix.src.js +1 -1
- package/es-modules/masters/indicators/volume-by-price.src.js +1 -1
- package/es-modules/masters/indicators/vwap.src.js +1 -1
- package/es-modules/masters/indicators/williams-r.src.js +1 -1
- package/es-modules/masters/indicators/wma.src.js +1 -1
- package/es-modules/masters/indicators/zigzag.src.js +1 -1
- package/es-modules/masters/modules/accessibility.src.js +1 -1
- package/es-modules/masters/modules/annotations-advanced.src.js +1 -1
- package/es-modules/masters/modules/annotations.src.js +1 -1
- package/es-modules/masters/modules/arc-diagram.src.js +1 -1
- package/es-modules/masters/modules/arrow-symbols.src.js +1 -1
- package/es-modules/masters/modules/boost-canvas.src.js +1 -1
- package/es-modules/masters/modules/boost.src.js +1 -1
- package/es-modules/masters/modules/broken-axis.src.js +1 -1
- package/es-modules/masters/modules/bullet.src.js +1 -1
- package/es-modules/masters/modules/coloraxis.src.js +1 -1
- package/es-modules/masters/modules/current-date-indicator.src.js +1 -1
- package/es-modules/masters/modules/cylinder.src.js +1 -1
- package/es-modules/masters/modules/data-tools.src.d.ts +1 -0
- package/es-modules/masters/modules/data-tools.src.js +2 -1
- package/es-modules/masters/modules/data.src.js +1 -1
- package/es-modules/masters/modules/datagrouping.src.js +1 -1
- package/es-modules/masters/modules/debugger.src.js +1 -1
- package/es-modules/masters/modules/dependency-wheel.src.js +1 -1
- package/es-modules/masters/modules/dotplot.src.js +1 -1
- package/es-modules/masters/modules/drag-panes.src.js +1 -1
- package/es-modules/masters/modules/draggable-points.src.js +1 -1
- package/es-modules/masters/modules/drilldown.src.js +3 -1
- package/es-modules/masters/modules/dumbbell.src.js +1 -1
- package/es-modules/masters/modules/export-data.src.js +3 -3
- package/es-modules/masters/modules/exporting.src.js +5 -1
- package/es-modules/masters/modules/flowmap.src.js +1 -1
- package/es-modules/masters/modules/full-screen.src.js +1 -1
- package/es-modules/masters/modules/funnel.src.js +1 -1
- package/es-modules/masters/modules/funnel3d.src.js +1 -1
- package/es-modules/masters/modules/gantt.src.js +1 -1
- package/es-modules/masters/modules/geoheatmap.src.js +1 -1
- package/es-modules/masters/modules/grid-axis.src.js +1 -1
- package/es-modules/masters/modules/heatmap.src.js +1 -1
- package/es-modules/masters/modules/heikinashi.src.js +1 -1
- package/es-modules/masters/modules/histogram-bellcurve.src.js +1 -1
- package/es-modules/masters/modules/hollowcandlestick.src.js +1 -1
- package/es-modules/masters/modules/item-series.src.js +1 -1
- package/es-modules/masters/modules/lollipop.src.js +1 -1
- package/es-modules/masters/modules/map.src.js +1 -1
- package/es-modules/masters/modules/marker-clusters.src.js +1 -1
- package/es-modules/masters/modules/mouse-wheel-zoom.src.js +1 -1
- package/es-modules/masters/modules/navigator.src.js +1 -1
- package/es-modules/masters/modules/networkgraph.src.js +1 -1
- package/es-modules/masters/modules/no-data-to-display.src.js +1 -1
- package/es-modules/masters/modules/non-cartesian-zoom.src.d.ts +2 -0
- package/es-modules/masters/modules/non-cartesian-zoom.src.js +18 -0
- package/es-modules/masters/modules/offline-exporting.src.js +2 -2
- package/es-modules/masters/modules/organization.src.js +1 -1
- package/es-modules/masters/modules/parallel-coordinates.src.js +1 -1
- package/es-modules/masters/modules/pareto.src.js +1 -1
- package/es-modules/masters/modules/pathfinder.src.js +1 -1
- package/es-modules/masters/modules/pattern-fill.src.js +1 -1
- package/es-modules/masters/modules/pictorial.src.js +1 -1
- package/es-modules/masters/modules/pointandfigure.src.js +1 -1
- package/es-modules/masters/modules/price-indicator.src.js +1 -1
- package/es-modules/masters/modules/pyramid3d.src.js +1 -1
- package/es-modules/masters/modules/renko.src.js +1 -1
- package/es-modules/masters/modules/sankey.src.js +1 -1
- package/es-modules/masters/modules/series-label.src.js +1 -1
- package/es-modules/masters/modules/series-on-point.src.js +1 -1
- package/es-modules/masters/modules/solid-gauge.src.js +1 -1
- package/es-modules/masters/modules/sonification.src.js +1 -1
- package/es-modules/masters/modules/static-scale.src.js +1 -1
- package/es-modules/masters/modules/stock-tools.src.js +1 -1
- package/es-modules/masters/modules/stock.src.js +1 -1
- package/es-modules/masters/modules/streamgraph.src.js +1 -1
- package/es-modules/masters/modules/sunburst.src.js +1 -1
- package/es-modules/masters/modules/textpath.src.js +1 -1
- package/es-modules/masters/modules/tiledwebmap.src.js +1 -1
- package/es-modules/masters/modules/tilemap.src.js +1 -1
- package/es-modules/masters/modules/timeline.src.js +1 -1
- package/es-modules/masters/modules/treegraph.src.js +1 -1
- package/es-modules/masters/modules/treegrid.src.js +1 -1
- package/es-modules/masters/modules/treemap.src.js +1 -1
- package/es-modules/masters/modules/variable-pie.src.js +1 -1
- package/es-modules/masters/modules/variwide.src.js +1 -1
- package/es-modules/masters/modules/vector.src.js +1 -1
- package/es-modules/masters/modules/venn.src.js +1 -1
- package/es-modules/masters/modules/windbarb.src.js +1 -1
- package/es-modules/masters/modules/wordcloud.src.js +1 -1
- package/es-modules/masters/modules/xrange.src.js +1 -1
- package/es-modules/masters/standalone-navigator.src.js +7 -6
- package/es-modules/masters/themes/adaptive.src.d.ts +2 -0
- package/es-modules/masters/themes/adaptive.src.js +15 -0
- package/es-modules/masters/themes/avocado.src.js +1 -1
- package/es-modules/masters/themes/brand-dark.src.js +1 -1
- package/es-modules/masters/themes/brand-light.src.js +1 -1
- package/es-modules/masters/themes/dark-blue.src.js +1 -1
- package/es-modules/masters/themes/dark-green.src.js +1 -1
- package/es-modules/masters/themes/dark-unica.src.js +1 -1
- package/es-modules/masters/themes/gray.src.js +1 -1
- package/es-modules/masters/themes/grid-light.src.js +1 -1
- package/es-modules/masters/themes/grid.src.js +1 -1
- package/es-modules/masters/themes/high-contrast-dark.src.js +1 -1
- package/es-modules/masters/themes/high-contrast-light.src.js +1 -1
- package/es-modules/masters/themes/sand-signika.src.js +1 -1
- package/es-modules/masters/themes/skies.src.js +1 -1
- package/es-modules/masters/themes/sunset.src.js +1 -1
- package/es-modules/tsconfig.tsbuildinfo +1 -1
- package/esm/highcharts-3d.js +11 -1
- package/esm/highcharts-3d.src.js +3 -4
- package/esm/highcharts-gantt.js +14 -1
- package/esm/highcharts-gantt.src.js +8 -2
- package/esm/highcharts-more.js +9 -1
- package/esm/highcharts-more.src.js +516 -57
- package/esm/highcharts.js +9 -2
- package/esm/highcharts.src.js +273 -168
- package/esm/highmaps.js +8 -1
- package/esm/highmaps.src.js +2 -2
- package/esm/highstock.js +8 -1
- package/esm/highstock.src.js +2 -2
- package/esm/i18n/fr-FR.js +13 -1
- package/esm/i18n/fr-FR.src.js +1 -1
- package/esm/i18n/nb-NO.js +13 -1
- package/esm/i18n/nb-NO.src.js +1 -1
- package/esm/i18n/zh-CN.js +13 -1
- package/esm/i18n/zh-CN.src.js +1 -1
- package/esm/indicators/acceleration-bands.js +12 -1
- package/esm/indicators/acceleration-bands.src.js +1 -1
- package/esm/indicators/accumulation-distribution.js +12 -1
- package/esm/indicators/accumulation-distribution.src.js +1 -1
- package/esm/indicators/ao.js +12 -1
- package/esm/indicators/ao.src.js +1 -1
- package/esm/indicators/apo.js +12 -1
- package/esm/indicators/apo.src.js +1 -1
- package/esm/indicators/aroon-oscillator.js +12 -1
- package/esm/indicators/aroon-oscillator.src.js +1 -1
- package/esm/indicators/aroon.js +12 -1
- package/esm/indicators/aroon.src.js +1 -1
- package/esm/indicators/atr.js +12 -1
- package/esm/indicators/atr.src.js +1 -1
- package/esm/indicators/bollinger-bands.js +12 -1
- package/esm/indicators/bollinger-bands.src.js +1 -1
- package/esm/indicators/cci.js +12 -1
- package/esm/indicators/cci.src.js +1 -1
- package/esm/indicators/chaikin.js +12 -1
- package/esm/indicators/chaikin.src.js +1 -1
- package/esm/indicators/cmf.js +11 -1
- package/esm/indicators/cmf.src.js +1 -1
- package/esm/indicators/cmo.js +12 -1
- package/esm/indicators/cmo.src.js +1 -1
- package/esm/indicators/dema.js +12 -1
- package/esm/indicators/dema.src.js +1 -1
- package/esm/indicators/disparity-index.js +12 -1
- package/esm/indicators/disparity-index.src.js +1 -1
- package/esm/indicators/dmi.js +12 -1
- package/esm/indicators/dmi.src.js +1 -1
- package/esm/indicators/dpo.js +12 -1
- package/esm/indicators/dpo.src.js +1 -1
- package/esm/indicators/ema.src.js +0 -3
- package/esm/indicators/ichimoku-kinko-hyo.js +12 -1
- package/esm/indicators/ichimoku-kinko-hyo.src.js +1 -1
- package/esm/indicators/indicators-all.js +12 -1
- package/esm/indicators/indicators-all.src.js +2 -2
- package/esm/indicators/indicators.js +12 -1
- package/esm/indicators/indicators.src.js +1 -1
- package/esm/indicators/keltner-channels.js +12 -1
- package/esm/indicators/keltner-channels.src.js +1 -1
- package/esm/indicators/klinger.js +12 -1
- package/esm/indicators/klinger.src.js +1 -1
- package/esm/indicators/macd.js +12 -1
- package/esm/indicators/macd.src.js +2 -2
- package/esm/indicators/mfi.js +12 -1
- package/esm/indicators/mfi.src.js +1 -1
- package/esm/indicators/momentum.js +12 -1
- package/esm/indicators/momentum.src.js +1 -1
- package/esm/indicators/natr.js +12 -1
- package/esm/indicators/natr.src.js +1 -1
- package/esm/indicators/obv.js +12 -1
- package/esm/indicators/obv.src.js +1 -1
- package/esm/indicators/pivot-points.js +12 -1
- package/esm/indicators/pivot-points.src.js +1 -1
- package/esm/indicators/ppo.js +12 -1
- package/esm/indicators/ppo.src.js +1 -1
- package/esm/indicators/price-channel.js +12 -1
- package/esm/indicators/price-channel.src.js +1 -1
- package/esm/indicators/price-envelopes.js +12 -1
- package/esm/indicators/price-envelopes.src.js +1 -1
- package/esm/indicators/psar.js +12 -1
- package/esm/indicators/psar.src.js +1 -1
- package/esm/indicators/regressions.js +12 -1
- package/esm/indicators/regressions.src.js +1 -1
- package/esm/indicators/roc.js +12 -1
- package/esm/indicators/roc.src.js +1 -1
- package/esm/indicators/rsi.js +12 -1
- package/esm/indicators/rsi.src.js +1 -1
- package/esm/indicators/slow-stochastic.js +12 -1
- package/esm/indicators/slow-stochastic.src.js +1 -1
- package/esm/indicators/stochastic.js +12 -1
- package/esm/indicators/stochastic.src.js +1 -1
- package/esm/indicators/supertrend.js +12 -1
- package/esm/indicators/supertrend.src.js +1 -1
- package/esm/indicators/tema.js +12 -1
- package/esm/indicators/tema.src.js +1 -1
- package/esm/indicators/trendline.js +12 -1
- package/esm/indicators/trendline.src.js +1 -1
- package/esm/indicators/trix.js +12 -1
- package/esm/indicators/trix.src.js +1 -1
- package/esm/indicators/volume-by-price.js +12 -1
- package/esm/indicators/volume-by-price.src.js +1 -1
- package/esm/indicators/vwap.js +12 -1
- package/esm/indicators/vwap.src.js +1 -1
- package/esm/indicators/williams-r.js +12 -1
- package/esm/indicators/williams-r.src.js +1 -1
- package/esm/indicators/wma.js +12 -1
- package/esm/indicators/wma.src.js +1 -1
- package/esm/indicators/zigzag.js +12 -1
- package/esm/indicators/zigzag.src.js +1 -1
- package/esm/modules/accessibility.js +12 -1
- package/esm/modules/accessibility.src.js +92 -63
- package/esm/modules/annotations-advanced.js +11 -1
- package/esm/modules/annotations-advanced.src.js +872 -778
- package/esm/modules/annotations.js +11 -1
- package/esm/modules/annotations.src.js +95 -43
- package/esm/modules/arc-diagram.js +11 -1
- package/esm/modules/arc-diagram.src.js +3 -3
- package/esm/modules/arrow-symbols.js +11 -1
- package/esm/modules/arrow-symbols.src.js +1 -1
- package/esm/modules/boost-canvas.js +12 -1
- package/esm/modules/boost-canvas.src.js +102 -53
- package/esm/modules/boost.js +13 -1
- package/esm/modules/boost.src.js +107 -49
- package/esm/modules/broken-axis.js +9 -1
- package/esm/modules/broken-axis.src.js +115 -91
- package/esm/modules/bullet.js +11 -1
- package/esm/modules/bullet.src.js +1 -1
- package/esm/modules/coloraxis.js +11 -1
- package/esm/modules/coloraxis.src.js +6 -7
- package/esm/modules/current-date-indicator.js +11 -1
- package/esm/modules/current-date-indicator.src.js +1 -1
- package/esm/modules/cylinder.js +12 -1
- package/esm/modules/cylinder.src.js +1 -1
- package/esm/modules/data-tools.js +11 -1
- package/esm/modules/data-tools.src.js +542 -125
- package/esm/modules/data.js +11 -1
- package/esm/modules/data.src.js +46 -39
- package/esm/modules/datagrouping.js +11 -1
- package/esm/modules/datagrouping.src.js +1 -1
- package/esm/modules/debugger.js +11 -1
- package/esm/modules/debugger.src.js +1 -1
- package/esm/modules/dependency-wheel.js +12 -1
- package/esm/modules/dependency-wheel.src.js +3 -3
- package/esm/modules/dotplot.js +11 -1
- package/esm/modules/dotplot.src.js +1 -1
- package/esm/modules/drag-panes.js +13 -1
- package/esm/modules/drag-panes.src.js +1 -1
- package/esm/modules/draggable-points.js +9 -1
- package/esm/modules/draggable-points.src.js +1 -1
- package/esm/modules/drilldown.js +13 -1
- package/esm/modules/drilldown.src.js +4 -2
- package/esm/modules/dumbbell.js +9 -1
- package/esm/modules/dumbbell.src.js +1 -1
- package/esm/modules/export-data.js +12 -1
- package/esm/modules/export-data.src.js +985 -799
- package/esm/modules/exporting.js +11 -1
- package/esm/modules/exporting.src.js +1453 -634
- package/esm/modules/flowmap.js +9 -1
- package/esm/modules/flowmap.src.js +1 -1
- package/esm/modules/full-screen.js +12 -1
- package/esm/modules/full-screen.src.js +3 -3
- package/esm/modules/funnel.js +11 -1
- package/esm/modules/funnel.src.js +7 -3
- package/esm/modules/funnel3d.js +13 -1
- package/esm/modules/funnel3d.src.js +1 -1
- package/esm/modules/gantt.js +11 -1
- package/esm/modules/gantt.src.js +254 -212
- package/esm/modules/geoheatmap.js +9 -1
- package/esm/modules/geoheatmap.src.js +1 -1
- package/esm/modules/grid-axis.js +11 -1
- package/esm/modules/grid-axis.src.js +1 -1
- package/esm/modules/heatmap.js +9 -1
- package/esm/modules/heatmap.src.js +2 -3
- package/esm/modules/heikinashi.js +12 -1
- package/esm/modules/heikinashi.src.js +1 -1
- package/esm/modules/histogram-bellcurve.js +10 -1
- package/esm/modules/histogram-bellcurve.src.js +36 -27
- package/esm/modules/hollowcandlestick.js +12 -1
- package/esm/modules/hollowcandlestick.src.js +1 -1
- package/esm/modules/item-series.js +11 -1
- package/esm/modules/item-series.src.js +3 -5
- package/esm/modules/lollipop.js +9 -1
- package/esm/modules/lollipop.src.js +1 -1
- package/esm/modules/map.js +11 -1
- package/esm/modules/map.src.js +5 -6
- package/esm/modules/marker-clusters.js +11 -1
- package/esm/modules/marker-clusters.src.js +1 -1
- package/esm/modules/mouse-wheel-zoom.js +11 -1
- package/esm/modules/mouse-wheel-zoom.src.js +1 -1
- package/esm/modules/navigator.js +11 -1
- package/esm/modules/navigator.src.js +29 -29
- package/esm/modules/networkgraph.js +11 -1
- package/esm/modules/networkgraph.src.js +16 -4
- package/esm/modules/no-data-to-display.js +12 -1
- package/esm/modules/no-data-to-display.src.js +1 -1
- package/esm/modules/non-cartesian-zoom.d.ts +2 -0
- package/esm/modules/non-cartesian-zoom.js +11 -0
- package/esm/modules/non-cartesian-zoom.src.d.ts +2 -0
- package/esm/modules/non-cartesian-zoom.src.js +374 -0
- package/esm/modules/offline-exporting.js +12 -1
- package/esm/modules/offline-exporting.src.js +339 -3363
- package/esm/modules/organization.js +11 -1
- package/esm/modules/organization.src.js +3 -3
- package/esm/modules/parallel-coordinates.js +11 -1
- package/esm/modules/parallel-coordinates.src.js +1 -1
- package/esm/modules/pareto.js +11 -1
- package/esm/modules/pareto.src.js +1 -1
- package/esm/modules/pathfinder.js +11 -1
- package/esm/modules/pathfinder.src.js +1 -1
- package/esm/modules/pattern-fill.js +12 -1
- package/esm/modules/pattern-fill.src.js +1 -1
- package/esm/modules/pictorial.js +11 -1
- package/esm/modules/pictorial.src.js +1 -1
- package/esm/modules/pointandfigure.js +12 -1
- package/esm/modules/pointandfigure.src.js +1 -1
- package/esm/modules/price-indicator.js +13 -1
- package/esm/modules/price-indicator.src.js +1 -1
- package/esm/modules/pyramid3d.js +14 -1
- package/esm/modules/pyramid3d.src.js +1 -1
- package/esm/modules/renko.js +12 -1
- package/esm/modules/renko.src.js +1 -1
- package/esm/modules/sankey.js +11 -1
- package/esm/modules/sankey.src.js +3 -3
- package/esm/modules/series-label.js +9 -1
- package/esm/modules/series-label.src.js +1 -1
- package/esm/modules/series-on-point.js +12 -1
- package/esm/modules/series-on-point.src.js +1 -9
- package/esm/modules/solid-gauge.js +12 -1
- package/esm/modules/solid-gauge.src.js +27 -5
- package/esm/modules/sonification.js +12 -1
- package/esm/modules/sonification.src.js +45 -10
- package/esm/modules/static-scale.js +11 -1
- package/esm/modules/static-scale.src.js +14 -12
- package/esm/modules/stock-tools.js +13 -1
- package/esm/modules/stock-tools.src.js +37 -116
- package/esm/modules/stock.js +11 -1
- package/esm/modules/stock.src.js +98 -98
- package/esm/modules/streamgraph.js +11 -1
- package/esm/modules/streamgraph.src.js +1 -1
- package/esm/modules/sunburst.js +10 -1
- package/esm/modules/sunburst.src.js +9 -9
- package/esm/modules/textpath.js +9 -1
- package/esm/modules/textpath.src.js +3 -3
- package/esm/modules/tiledwebmap.js +10 -2
- package/esm/modules/tiledwebmap.src.js +1 -1
- package/esm/modules/tilemap.js +12 -1
- package/esm/modules/tilemap.src.js +1 -1
- package/esm/modules/timeline.js +12 -1
- package/esm/modules/timeline.src.js +1 -1
- package/esm/modules/treegraph.js +11 -1
- package/esm/modules/treegraph.src.js +16 -8
- package/esm/modules/treegrid.js +11 -1
- package/esm/modules/treegrid.src.js +190 -159
- package/esm/modules/treemap.js +10 -1
- package/esm/modules/treemap.src.js +7 -7
- package/esm/modules/variable-pie.js +11 -1
- package/esm/modules/variable-pie.src.js +1 -1
- package/esm/modules/variwide.js +11 -1
- package/esm/modules/variwide.src.js +18 -13
- package/esm/modules/vector.js +11 -1
- package/esm/modules/vector.src.js +1 -1
- package/esm/modules/venn.js +10 -1
- package/esm/modules/venn.src.js +5 -3
- package/esm/modules/windbarb.js +11 -1
- package/esm/modules/windbarb.src.js +1 -1
- package/esm/modules/wordcloud.js +10 -1
- package/esm/modules/wordcloud.src.js +89 -12
- package/esm/modules/xrange.js +11 -1
- package/esm/modules/xrange.src.js +3 -2
- package/esm/standalone-navigator.js +11 -2
- package/esm/standalone-navigator.src.js +312 -206
- package/esm/themes/adaptive.d.ts +2 -0
- package/esm/themes/adaptive.js +130 -0
- package/esm/themes/adaptive.src.d.ts +2 -0
- package/esm/themes/adaptive.src.js +1069 -0
- package/esm/themes/avocado.js +9 -1
- package/esm/themes/avocado.src.js +1 -1
- package/esm/themes/brand-dark.js +9 -1
- package/esm/themes/brand-dark.src.js +1 -1
- package/esm/themes/brand-light.js +9 -1
- package/esm/themes/brand-light.src.js +1 -1
- package/esm/themes/dark-blue.js +9 -1
- package/esm/themes/dark-blue.src.js +1 -1
- package/esm/themes/dark-green.js +9 -1
- package/esm/themes/dark-green.src.js +1 -1
- package/esm/themes/dark-unica.js +9 -1
- package/esm/themes/dark-unica.src.js +1 -1
- package/esm/themes/gray.js +9 -1
- package/esm/themes/gray.src.js +1 -1
- package/esm/themes/grid-light.js +9 -1
- package/esm/themes/grid-light.src.js +1 -1
- package/esm/themes/grid.js +9 -1
- package/esm/themes/grid.src.js +1 -1
- package/esm/themes/high-contrast-dark.js +9 -1
- package/esm/themes/high-contrast-dark.src.js +1 -1
- package/esm/themes/high-contrast-light.js +9 -1
- package/esm/themes/high-contrast-light.src.js +1 -1
- package/esm/themes/sand-signika.js +9 -1
- package/esm/themes/sand-signika.src.js +1 -1
- package/esm/themes/skies.js +9 -1
- package/esm/themes/skies.src.js +1 -1
- package/esm/themes/sunset.js +9 -1
- package/esm/themes/sunset.src.js +1 -1
- package/highcharts-3d.d.ts +1 -9
- package/highcharts-3d.js +11 -1
- package/highcharts-3d.src.d.ts +1 -9
- package/highcharts-3d.src.js +3 -4
- package/highcharts-gantt.js +15 -2
- package/highcharts-gantt.src.js +546 -392
- package/highcharts-more.d.ts +10 -9
- package/highcharts-more.js +9 -1
- package/highcharts-more.src.d.ts +10 -9
- package/highcharts-more.src.js +516 -57
- package/highcharts.d.ts +4526 -1522
- package/highcharts.js +9 -2
- package/highcharts.src.d.ts +4526 -1522
- package/highcharts.src.js +273 -168
- package/highmaps.js +9 -2
- package/highmaps.src.js +294 -191
- package/highstock.js +9 -2
- package/highstock.src.js +490 -361
- package/i18n/fr-FR.js +13 -1
- package/i18n/fr-FR.src.js +8 -8
- package/i18n/nb-NO.js +13 -1
- package/i18n/nb-NO.src.js +8 -8
- package/i18n/zh-CN.js +13 -1
- package/i18n/zh-CN.src.js +8 -8
- package/indicators/acceleration-bands.d.ts +1 -9
- package/indicators/acceleration-bands.js +12 -1
- package/indicators/acceleration-bands.src.d.ts +1 -9
- package/indicators/acceleration-bands.src.js +1 -1
- package/indicators/accumulation-distribution.d.ts +1 -9
- package/indicators/accumulation-distribution.js +12 -1
- package/indicators/accumulation-distribution.src.d.ts +1 -9
- package/indicators/accumulation-distribution.src.js +1 -1
- package/indicators/ao.d.ts +1 -9
- package/indicators/ao.js +12 -1
- package/indicators/ao.src.d.ts +1 -9
- package/indicators/ao.src.js +1 -1
- package/indicators/apo.d.ts +1 -9
- package/indicators/apo.js +12 -1
- package/indicators/apo.src.d.ts +1 -9
- package/indicators/apo.src.js +1 -1
- package/indicators/aroon-oscillator.d.ts +1 -9
- package/indicators/aroon-oscillator.js +12 -1
- package/indicators/aroon-oscillator.src.d.ts +1 -9
- package/indicators/aroon-oscillator.src.js +1 -1
- package/indicators/aroon.d.ts +1 -9
- package/indicators/aroon.js +12 -1
- package/indicators/aroon.src.d.ts +1 -9
- package/indicators/aroon.src.js +1 -1
- package/indicators/atr.d.ts +1 -9
- package/indicators/atr.js +12 -1
- package/indicators/atr.src.d.ts +1 -9
- package/indicators/atr.src.js +1 -1
- package/indicators/bollinger-bands.d.ts +1 -9
- package/indicators/bollinger-bands.js +12 -1
- package/indicators/bollinger-bands.src.d.ts +1 -9
- package/indicators/bollinger-bands.src.js +1 -1
- package/indicators/cci.d.ts +1 -9
- package/indicators/cci.js +12 -1
- package/indicators/cci.src.d.ts +1 -9
- package/indicators/cci.src.js +1 -1
- package/indicators/chaikin.d.ts +1 -9
- package/indicators/chaikin.js +12 -1
- package/indicators/chaikin.src.d.ts +1 -9
- package/indicators/chaikin.src.js +1 -1
- package/indicators/cmf.d.ts +1 -9
- package/indicators/cmf.js +11 -1
- package/indicators/cmf.src.d.ts +1 -9
- package/indicators/cmf.src.js +1 -1
- package/indicators/cmo.d.ts +1 -9
- package/indicators/cmo.js +12 -1
- package/indicators/cmo.src.d.ts +1 -9
- package/indicators/cmo.src.js +1 -1
- package/indicators/dema.d.ts +1 -9
- package/indicators/dema.js +12 -1
- package/indicators/dema.src.d.ts +1 -9
- package/indicators/dema.src.js +1 -1
- package/indicators/disparity-index.d.ts +1 -9
- package/indicators/disparity-index.js +12 -1
- package/indicators/disparity-index.src.d.ts +1 -9
- package/indicators/disparity-index.src.js +1 -1
- package/indicators/dmi.d.ts +1 -9
- package/indicators/dmi.js +12 -1
- package/indicators/dmi.src.d.ts +1 -9
- package/indicators/dmi.src.js +1 -1
- package/indicators/dpo.d.ts +1 -9
- package/indicators/dpo.js +12 -1
- package/indicators/dpo.src.d.ts +1 -9
- package/indicators/dpo.src.js +1 -1
- package/indicators/ema.d.ts +1 -9
- package/indicators/ema.src.d.ts +1 -9
- package/indicators/ema.src.js +3 -6
- package/indicators/ichimoku-kinko-hyo.d.ts +1 -9
- package/indicators/ichimoku-kinko-hyo.js +12 -1
- package/indicators/ichimoku-kinko-hyo.src.d.ts +1 -9
- package/indicators/ichimoku-kinko-hyo.src.js +1 -1
- package/indicators/indicators-all.d.ts +1 -9
- package/indicators/indicators-all.js +12 -1
- package/indicators/indicators-all.src.d.ts +1 -9
- package/indicators/indicators-all.src.js +2 -2
- package/indicators/indicators.d.ts +1 -9
- package/indicators/indicators.js +12 -1
- package/indicators/indicators.src.d.ts +1 -9
- package/indicators/indicators.src.js +1 -1
- package/indicators/keltner-channels.d.ts +1 -9
- package/indicators/keltner-channels.js +12 -1
- package/indicators/keltner-channels.src.d.ts +1 -9
- package/indicators/keltner-channels.src.js +1 -1
- package/indicators/klinger.d.ts +1 -9
- package/indicators/klinger.js +12 -1
- package/indicators/klinger.src.d.ts +1 -9
- package/indicators/klinger.src.js +1 -1
- package/indicators/macd.d.ts +1 -9
- package/indicators/macd.js +12 -1
- package/indicators/macd.src.d.ts +1 -9
- package/indicators/macd.src.js +2 -2
- package/indicators/mfi.d.ts +1 -9
- package/indicators/mfi.js +12 -1
- package/indicators/mfi.src.d.ts +1 -9
- package/indicators/mfi.src.js +1 -1
- package/indicators/momentum.d.ts +1 -9
- package/indicators/momentum.js +12 -1
- package/indicators/momentum.src.d.ts +1 -9
- package/indicators/momentum.src.js +1 -1
- package/indicators/natr.d.ts +1 -9
- package/indicators/natr.js +12 -1
- package/indicators/natr.src.d.ts +1 -9
- package/indicators/natr.src.js +1 -1
- package/indicators/obv.d.ts +1 -9
- package/indicators/obv.js +12 -1
- package/indicators/obv.src.d.ts +1 -9
- package/indicators/obv.src.js +1 -1
- package/indicators/pivot-points.d.ts +1 -9
- package/indicators/pivot-points.js +12 -1
- package/indicators/pivot-points.src.d.ts +1 -9
- package/indicators/pivot-points.src.js +1 -1
- package/indicators/ppo.d.ts +1 -9
- package/indicators/ppo.js +12 -1
- package/indicators/ppo.src.d.ts +1 -9
- package/indicators/ppo.src.js +1 -1
- package/indicators/price-channel.d.ts +1 -9
- package/indicators/price-channel.js +12 -1
- package/indicators/price-channel.src.d.ts +1 -9
- package/indicators/price-channel.src.js +1 -1
- package/indicators/price-envelopes.d.ts +1 -9
- package/indicators/price-envelopes.js +12 -1
- package/indicators/price-envelopes.src.d.ts +1 -9
- package/indicators/price-envelopes.src.js +1 -1
- package/indicators/psar.d.ts +1 -9
- package/indicators/psar.js +12 -1
- package/indicators/psar.src.d.ts +1 -9
- package/indicators/psar.src.js +1 -1
- package/indicators/regressions.d.ts +1 -9
- package/indicators/regressions.js +12 -1
- package/indicators/regressions.src.d.ts +1 -9
- package/indicators/regressions.src.js +1 -1
- package/indicators/roc.d.ts +1 -9
- package/indicators/roc.js +12 -1
- package/indicators/roc.src.d.ts +1 -9
- package/indicators/roc.src.js +1 -1
- package/indicators/rsi.d.ts +1 -9
- package/indicators/rsi.js +12 -1
- package/indicators/rsi.src.d.ts +1 -9
- package/indicators/rsi.src.js +1 -1
- package/indicators/slow-stochastic.d.ts +1 -9
- package/indicators/slow-stochastic.js +12 -1
- package/indicators/slow-stochastic.src.d.ts +1 -9
- package/indicators/slow-stochastic.src.js +1 -1
- package/indicators/stochastic.d.ts +1 -9
- package/indicators/stochastic.js +12 -1
- package/indicators/stochastic.src.d.ts +1 -9
- package/indicators/stochastic.src.js +1 -1
- package/indicators/supertrend.d.ts +1 -9
- package/indicators/supertrend.js +12 -1
- package/indicators/supertrend.src.d.ts +1 -9
- package/indicators/supertrend.src.js +1 -1
- package/indicators/tema.d.ts +1 -9
- package/indicators/tema.js +12 -1
- package/indicators/tema.src.d.ts +1 -9
- package/indicators/tema.src.js +1 -1
- package/indicators/trendline.d.ts +1 -9
- package/indicators/trendline.js +12 -1
- package/indicators/trendline.src.d.ts +1 -9
- package/indicators/trendline.src.js +1 -1
- package/indicators/trix.d.ts +1 -9
- package/indicators/trix.js +12 -1
- package/indicators/trix.src.d.ts +1 -9
- package/indicators/trix.src.js +1 -1
- package/indicators/volume-by-price.d.ts +1 -9
- package/indicators/volume-by-price.js +12 -1
- package/indicators/volume-by-price.src.d.ts +1 -9
- package/indicators/volume-by-price.src.js +1 -1
- package/indicators/vwap.d.ts +1 -9
- package/indicators/vwap.js +12 -1
- package/indicators/vwap.src.d.ts +1 -9
- package/indicators/vwap.src.js +1 -1
- package/indicators/williams-r.d.ts +1 -9
- package/indicators/williams-r.js +12 -1
- package/indicators/williams-r.src.d.ts +1 -9
- package/indicators/williams-r.src.js +1 -1
- package/indicators/wma.d.ts +1 -9
- package/indicators/wma.js +12 -1
- package/indicators/wma.src.d.ts +1 -9
- package/indicators/wma.src.js +1 -1
- package/indicators/zigzag.d.ts +1 -9
- package/indicators/zigzag.js +12 -1
- package/indicators/zigzag.src.d.ts +1 -9
- package/indicators/zigzag.src.js +1 -1
- package/modules/accessibility.d.ts +1 -11
- package/modules/accessibility.js +12 -1
- package/modules/accessibility.src.d.ts +1 -11
- package/modules/accessibility.src.js +92 -63
- package/modules/annotations-advanced.d.ts +1 -9
- package/modules/annotations-advanced.js +21 -1
- package/modules/annotations-advanced.src.d.ts +1 -9
- package/modules/annotations-advanced.src.js +888 -794
- package/modules/annotations.d.ts +1 -9
- package/modules/annotations.js +11 -1
- package/modules/annotations.src.d.ts +1 -9
- package/modules/annotations.src.js +95 -43
- package/modules/arc-diagram.d.ts +1 -9
- package/modules/arc-diagram.js +11 -1
- package/modules/arc-diagram.src.d.ts +1 -9
- package/modules/arc-diagram.src.js +3 -3
- package/modules/arrow-symbols.d.ts +1 -9
- package/modules/arrow-symbols.js +11 -1
- package/modules/arrow-symbols.src.d.ts +1 -9
- package/modules/arrow-symbols.src.js +1 -1
- package/modules/boost-canvas.d.ts +1 -9
- package/modules/boost-canvas.js +12 -1
- package/modules/boost-canvas.src.d.ts +1 -9
- package/modules/boost-canvas.src.js +102 -53
- package/modules/boost.d.ts +1 -9
- package/modules/boost.js +13 -1
- package/modules/boost.src.d.ts +1 -9
- package/modules/boost.src.js +107 -49
- package/modules/broken-axis.d.ts +1 -9
- package/modules/broken-axis.js +9 -1
- package/modules/broken-axis.src.d.ts +1 -9
- package/modules/broken-axis.src.js +115 -91
- package/modules/bullet.d.ts +1 -9
- package/modules/bullet.js +11 -1
- package/modules/bullet.src.d.ts +1 -9
- package/modules/bullet.src.js +1 -1
- package/modules/coloraxis.d.ts +1 -9
- package/modules/coloraxis.js +11 -1
- package/modules/coloraxis.src.d.ts +1 -9
- package/modules/coloraxis.src.js +6 -7
- package/modules/current-date-indicator.d.ts +1 -9
- package/modules/current-date-indicator.js +11 -1
- package/modules/current-date-indicator.src.d.ts +1 -9
- package/modules/current-date-indicator.src.js +1 -1
- package/modules/cylinder.d.ts +1 -9
- package/modules/cylinder.js +12 -1
- package/modules/cylinder.src.d.ts +1 -9
- package/modules/cylinder.src.js +1 -1
- package/modules/data-tools.js +11 -1
- package/modules/data-tools.src.js +542 -125
- package/modules/data.d.ts +1 -9
- package/modules/data.js +11 -1
- package/modules/data.src.d.ts +1 -9
- package/modules/data.src.js +46 -39
- package/modules/datagrouping.d.ts +1 -9
- package/modules/datagrouping.js +11 -1
- package/modules/datagrouping.src.d.ts +1 -9
- package/modules/datagrouping.src.js +1 -1
- package/modules/debugger.d.ts +1 -9
- package/modules/debugger.js +11 -1
- package/modules/debugger.src.d.ts +1 -9
- package/modules/debugger.src.js +1 -1
- package/modules/dependency-wheel.d.ts +1 -9
- package/modules/dependency-wheel.js +12 -1
- package/modules/dependency-wheel.src.d.ts +1 -9
- package/modules/dependency-wheel.src.js +3 -3
- package/modules/dotplot.d.ts +1 -9
- package/modules/dotplot.js +11 -1
- package/modules/dotplot.src.d.ts +1 -9
- package/modules/dotplot.src.js +1 -1
- package/modules/drag-panes.d.ts +1 -9
- package/modules/drag-panes.js +13 -1
- package/modules/drag-panes.src.d.ts +1 -9
- package/modules/drag-panes.src.js +1 -1
- package/modules/draggable-points.d.ts +1 -9
- package/modules/draggable-points.js +9 -1
- package/modules/draggable-points.src.d.ts +1 -9
- package/modules/draggable-points.src.js +1 -1
- package/modules/drilldown.d.ts +1 -9
- package/modules/drilldown.js +13 -1
- package/modules/drilldown.src.d.ts +1 -9
- package/modules/drilldown.src.js +4 -2
- package/modules/dumbbell.d.ts +1 -9
- package/modules/dumbbell.js +9 -1
- package/modules/dumbbell.src.d.ts +1 -9
- package/modules/dumbbell.src.js +1 -1
- package/modules/export-data.d.ts +2 -79
- package/modules/export-data.js +12 -1
- package/modules/export-data.src.d.ts +2 -79
- package/modules/export-data.src.js +997 -804
- package/modules/exporting.d.ts +35 -21
- package/modules/exporting.js +11 -1
- package/modules/exporting.src.d.ts +35 -21
- package/modules/exporting.src.js +1452 -628
- package/modules/flowmap.d.ts +1 -9
- package/modules/flowmap.js +9 -1
- package/modules/flowmap.src.d.ts +1 -9
- package/modules/flowmap.src.js +1 -1
- package/modules/full-screen.d.ts +1 -9
- package/modules/full-screen.js +12 -1
- package/modules/full-screen.src.d.ts +1 -9
- package/modules/full-screen.src.js +3 -3
- package/modules/funnel.d.ts +1 -9
- package/modules/funnel.js +11 -1
- package/modules/funnel.src.d.ts +1 -9
- package/modules/funnel.src.js +7 -3
- package/modules/funnel3d.d.ts +1 -9
- package/modules/funnel3d.js +13 -1
- package/modules/funnel3d.src.d.ts +1 -9
- package/modules/funnel3d.src.js +1 -1
- package/modules/gantt.d.ts +1 -9
- package/modules/gantt.js +31 -1
- package/modules/gantt.src.d.ts +1 -9
- package/modules/gantt.src.js +273 -230
- package/modules/geoheatmap.d.ts +1 -9
- package/modules/geoheatmap.js +9 -1
- package/modules/geoheatmap.src.d.ts +1 -9
- package/modules/geoheatmap.src.js +1 -1
- package/modules/grid-axis.d.ts +1 -9
- package/modules/grid-axis.js +11 -1
- package/modules/grid-axis.src.d.ts +1 -9
- package/modules/grid-axis.src.js +1 -1
- package/modules/heatmap.d.ts +1 -9
- package/modules/heatmap.js +19 -1
- package/modules/heatmap.src.d.ts +1 -9
- package/modules/heatmap.src.js +21 -23
- package/modules/heikinashi.d.ts +1 -9
- package/modules/heikinashi.js +12 -1
- package/modules/heikinashi.src.d.ts +1 -9
- package/modules/heikinashi.src.js +1 -1
- package/modules/histogram-bellcurve.d.ts +2 -11
- package/modules/histogram-bellcurve.js +10 -1
- package/modules/histogram-bellcurve.src.d.ts +2 -11
- package/modules/histogram-bellcurve.src.js +36 -27
- package/modules/hollowcandlestick.d.ts +1 -9
- package/modules/hollowcandlestick.js +12 -1
- package/modules/hollowcandlestick.src.d.ts +1 -9
- package/modules/hollowcandlestick.src.js +1 -1
- package/modules/item-series.d.ts +1 -9
- package/modules/item-series.js +11 -1
- package/modules/item-series.src.d.ts +1 -9
- package/modules/item-series.src.js +3 -5
- package/modules/lollipop.d.ts +1 -9
- package/modules/lollipop.js +9 -1
- package/modules/lollipop.src.d.ts +1 -9
- package/modules/lollipop.src.js +1 -1
- package/modules/map.d.ts +1 -9
- package/modules/map.js +21 -1
- package/modules/map.src.d.ts +1 -9
- package/modules/map.src.js +25 -27
- package/modules/marker-clusters.d.ts +1 -9
- package/modules/marker-clusters.js +11 -1
- package/modules/marker-clusters.src.d.ts +1 -9
- package/modules/marker-clusters.src.js +1 -1
- package/modules/mouse-wheel-zoom.d.ts +1 -9
- package/modules/mouse-wheel-zoom.js +11 -1
- package/modules/mouse-wheel-zoom.src.d.ts +1 -9
- package/modules/mouse-wheel-zoom.src.js +1 -1
- package/modules/navigator.d.ts +1 -9
- package/modules/navigator.js +11 -1
- package/modules/navigator.src.d.ts +1 -9
- package/modules/navigator.src.js +29 -29
- package/modules/networkgraph.d.ts +1 -9
- package/modules/networkgraph.js +11 -1
- package/modules/networkgraph.src.d.ts +1 -9
- package/modules/networkgraph.src.js +16 -4
- package/modules/no-data-to-display.d.ts +1 -9
- package/modules/no-data-to-display.js +12 -1
- package/modules/no-data-to-display.src.d.ts +1 -9
- package/modules/no-data-to-display.src.js +1 -1
- package/modules/non-cartesian-zoom.d.ts +9 -0
- package/modules/non-cartesian-zoom.js +11 -0
- package/modules/non-cartesian-zoom.src.d.ts +9 -0
- package/modules/non-cartesian-zoom.src.js +427 -0
- package/modules/offline-exporting.d.ts +2 -90
- package/modules/offline-exporting.js +12 -1
- package/modules/offline-exporting.src.d.ts +2 -90
- package/modules/offline-exporting.src.js +355 -3380
- package/modules/organization.d.ts +1 -9
- package/modules/organization.js +11 -1
- package/modules/organization.src.d.ts +1 -9
- package/modules/organization.src.js +3 -3
- package/modules/parallel-coordinates.d.ts +1 -9
- package/modules/parallel-coordinates.js +11 -1
- package/modules/parallel-coordinates.src.d.ts +1 -9
- package/modules/parallel-coordinates.src.js +1 -1
- package/modules/pareto.d.ts +1 -9
- package/modules/pareto.js +11 -1
- package/modules/pareto.src.d.ts +1 -9
- package/modules/pareto.src.js +1 -1
- package/modules/pathfinder.d.ts +1 -9
- package/modules/pathfinder.js +11 -1
- package/modules/pathfinder.src.d.ts +1 -9
- package/modules/pathfinder.src.js +1 -1
- package/modules/pattern-fill.d.ts +1 -9
- package/modules/pattern-fill.js +12 -1
- package/modules/pattern-fill.src.d.ts +1 -9
- package/modules/pattern-fill.src.js +1 -1
- package/modules/pictorial.d.ts +1 -9
- package/modules/pictorial.js +11 -1
- package/modules/pictorial.src.d.ts +1 -9
- package/modules/pictorial.src.js +1 -1
- package/modules/pointandfigure.d.ts +1 -9
- package/modules/pointandfigure.js +12 -1
- package/modules/pointandfigure.src.d.ts +1 -9
- package/modules/pointandfigure.src.js +1 -1
- package/modules/price-indicator.d.ts +1 -9
- package/modules/price-indicator.js +13 -1
- package/modules/price-indicator.src.d.ts +1 -9
- package/modules/price-indicator.src.js +1 -1
- package/modules/pyramid3d.d.ts +1 -9
- package/modules/pyramid3d.js +14 -1
- package/modules/pyramid3d.src.d.ts +1 -9
- package/modules/pyramid3d.src.js +1 -1
- package/modules/renko.d.ts +1 -9
- package/modules/renko.js +12 -1
- package/modules/renko.src.d.ts +1 -9
- package/modules/renko.src.js +1 -1
- package/modules/sankey.d.ts +1 -9
- package/modules/sankey.js +11 -1
- package/modules/sankey.src.d.ts +1 -9
- package/modules/sankey.src.js +3 -3
- package/modules/series-label.d.ts +1 -9
- package/modules/series-label.js +9 -1
- package/modules/series-label.src.d.ts +1 -9
- package/modules/series-label.src.js +1 -1
- package/modules/series-on-point.d.ts +1 -9
- package/modules/series-on-point.js +12 -1
- package/modules/series-on-point.src.d.ts +1 -9
- package/modules/series-on-point.src.js +6 -16
- package/modules/solid-gauge.d.ts +1 -9
- package/modules/solid-gauge.js +12 -1
- package/modules/solid-gauge.src.d.ts +1 -9
- package/modules/solid-gauge.src.js +27 -5
- package/modules/sonification.d.ts +1 -9
- package/modules/sonification.js +12 -1
- package/modules/sonification.src.d.ts +1 -9
- package/modules/sonification.src.js +45 -10
- package/modules/static-scale.d.ts +1 -9
- package/modules/static-scale.js +11 -1
- package/modules/static-scale.src.d.ts +1 -9
- package/modules/static-scale.src.js +14 -12
- package/modules/stock-tools.d.ts +1 -9
- package/modules/stock-tools.js +13 -1
- package/modules/stock-tools.src.d.ts +1 -9
- package/modules/stock-tools.src.js +37 -116
- package/modules/stock.d.ts +1 -9
- package/modules/stock.js +21 -1
- package/modules/stock.src.d.ts +1 -9
- package/modules/stock.src.js +233 -209
- package/modules/streamgraph.d.ts +1 -9
- package/modules/streamgraph.js +11 -1
- package/modules/streamgraph.src.d.ts +1 -9
- package/modules/streamgraph.src.js +1 -1
- package/modules/sunburst.d.ts +1 -9
- package/modules/sunburst.js +10 -1
- package/modules/sunburst.src.d.ts +1 -9
- package/modules/sunburst.src.js +9 -9
- package/modules/textpath.d.ts +1 -9
- package/modules/textpath.js +9 -1
- package/modules/textpath.src.d.ts +1 -9
- package/modules/textpath.src.js +3 -3
- package/modules/tiledwebmap.d.ts +1 -9
- package/modules/tiledwebmap.js +10 -2
- package/modules/tiledwebmap.src.d.ts +1 -9
- package/modules/tiledwebmap.src.js +1 -1
- package/modules/tilemap.d.ts +1 -9
- package/modules/tilemap.js +12 -1
- package/modules/tilemap.src.d.ts +1 -9
- package/modules/tilemap.src.js +1 -1
- package/modules/timeline.d.ts +1 -9
- package/modules/timeline.js +12 -1
- package/modules/timeline.src.d.ts +1 -9
- package/modules/timeline.src.js +1 -1
- package/modules/treegraph.d.ts +1 -9
- package/modules/treegraph.js +11 -1
- package/modules/treegraph.src.d.ts +1 -9
- package/modules/treegraph.src.js +16 -8
- package/modules/treegrid.d.ts +1 -9
- package/modules/treegrid.js +11 -1
- package/modules/treegrid.src.d.ts +1 -9
- package/modules/treegrid.src.js +190 -159
- package/modules/treemap.d.ts +1 -9
- package/modules/treemap.js +10 -1
- package/modules/treemap.src.d.ts +1 -9
- package/modules/treemap.src.js +7 -7
- package/modules/variable-pie.d.ts +1 -9
- package/modules/variable-pie.js +11 -1
- package/modules/variable-pie.src.d.ts +1 -9
- package/modules/variable-pie.src.js +1 -1
- package/modules/variwide.d.ts +1 -9
- package/modules/variwide.js +11 -1
- package/modules/variwide.src.d.ts +1 -9
- package/modules/variwide.src.js +18 -13
- package/modules/vector.d.ts +1 -9
- package/modules/vector.js +11 -1
- package/modules/vector.src.d.ts +1 -9
- package/modules/vector.src.js +1 -1
- package/modules/venn.d.ts +1 -9
- package/modules/venn.js +10 -1
- package/modules/venn.src.d.ts +1 -9
- package/modules/venn.src.js +5 -3
- package/modules/windbarb.d.ts +1 -9
- package/modules/windbarb.js +11 -1
- package/modules/windbarb.src.d.ts +1 -9
- package/modules/windbarb.src.js +1 -1
- package/modules/wordcloud.d.ts +1 -9
- package/modules/wordcloud.js +10 -1
- package/modules/wordcloud.src.d.ts +1 -9
- package/modules/wordcloud.src.js +89 -12
- package/modules/xrange.d.ts +1 -9
- package/modules/xrange.js +11 -1
- package/modules/xrange.src.d.ts +1 -9
- package/modules/xrange.src.js +3 -2
- package/options/abands.d.ts +8 -0
- package/options/abands.src.d.ts +8 -0
- package/options/ao.d.ts +8 -0
- package/options/ao.src.d.ts +8 -0
- package/options/arcdiagram.d.ts +8 -0
- package/options/arcdiagram.src.d.ts +8 -0
- package/options/area.d.ts +9 -0
- package/options/area.src.d.ts +9 -0
- package/options/arearange.d.ts +9 -0
- package/options/arearange.src.d.ts +9 -0
- package/options/areaspline.d.ts +9 -0
- package/options/areaspline.src.d.ts +9 -0
- package/options/areasplinerange.d.ts +9 -0
- package/options/areasplinerange.src.d.ts +9 -0
- package/options/aroon.d.ts +8 -0
- package/options/aroon.src.d.ts +8 -0
- package/options/atr.d.ts +8 -0
- package/options/atr.src.d.ts +8 -0
- package/options/bellcurve.d.ts +8 -0
- package/options/bellcurve.src.d.ts +8 -0
- package/options/boxplot.d.ts +8 -0
- package/options/boxplot.src.d.ts +8 -0
- package/options/bullet.d.ts +8 -0
- package/options/bullet.src.d.ts +8 -0
- package/options/chaikin.d.ts +8 -0
- package/options/chaikin.src.d.ts +8 -0
- package/options/cmo.d.ts +8 -0
- package/options/cmo.src.d.ts +8 -0
- package/options/columnpyramid.d.ts +9 -0
- package/options/columnpyramid.src.d.ts +9 -0
- package/options/columnrange.d.ts +9 -0
- package/options/columnrange.src.d.ts +9 -0
- package/options/dmi.d.ts +8 -0
- package/options/dmi.src.d.ts +8 -0
- package/options/errorbar.d.ts +8 -0
- package/options/errorbar.src.d.ts +8 -0
- package/options/flags.d.ts +8 -0
- package/options/flags.src.d.ts +8 -0
- package/options/funnel.d.ts +8 -0
- package/options/funnel.src.d.ts +8 -0
- package/options/gauge.d.ts +8 -0
- package/options/gauge.src.d.ts +8 -0
- package/options/item.d.ts +8 -0
- package/options/item.src.d.ts +8 -0
- package/options/keltnerchannels.d.ts +8 -0
- package/options/keltnerchannels.src.d.ts +8 -0
- package/options/line.d.ts +9 -0
- package/options/line.src.d.ts +9 -0
- package/options/linearregressionangle.d.ts +8 -0
- package/options/linearregressionangle.src.d.ts +8 -0
- package/options/linearregressionintercept.d.ts +8 -0
- package/options/linearregressionintercept.src.d.ts +8 -0
- package/options/map.d.ts +8 -0
- package/options/map.src.d.ts +8 -0
- package/options/mfi.d.ts +8 -0
- package/options/mfi.src.d.ts +8 -0
- package/options/natr.d.ts +8 -0
- package/options/natr.src.d.ts +8 -0
- package/options/ohlc.d.ts +8 -0
- package/options/ohlc.src.d.ts +8 -0
- package/options/packedbubble.d.ts +8 -0
- package/options/packedbubble.src.d.ts +8 -0
- package/options/pictorial.d.ts +8 -0
- package/options/pictorial.src.d.ts +8 -0
- package/options/pointandfigure.d.ts +8 -0
- package/options/pointandfigure.src.d.ts +8 -0
- package/options/polygon.d.ts +9 -0
- package/options/polygon.src.d.ts +9 -0
- package/options/ppo.d.ts +8 -0
- package/options/ppo.src.d.ts +8 -0
- package/options/psar.d.ts +8 -0
- package/options/psar.src.d.ts +8 -0
- package/options/pyramid.d.ts +8 -0
- package/options/pyramid.src.d.ts +8 -0
- package/options/renko.d.ts +8 -0
- package/options/renko.src.d.ts +8 -0
- package/options/roc.d.ts +8 -0
- package/options/roc.src.d.ts +8 -0
- package/options/sankey.d.ts +8 -0
- package/options/sankey.src.d.ts +8 -0
- package/options/scatter.d.ts +9 -0
- package/options/scatter.src.d.ts +9 -0
- package/options/series.d.ts +9 -0
- package/options/series.src.d.ts +9 -0
- package/options/sma.d.ts +8 -0
- package/options/sma.src.d.ts +8 -0
- package/options/solidgauge.d.ts +14 -0
- package/options/solidgauge.src.d.ts +14 -0
- package/options/spline.d.ts +9 -0
- package/options/spline.src.d.ts +9 -0
- package/options/stochastic.d.ts +8 -0
- package/options/stochastic.src.d.ts +8 -0
- package/options/tema.d.ts +8 -0
- package/options/tema.src.d.ts +8 -0
- package/options/tiledwebmap.d.ts +8 -0
- package/options/tiledwebmap.src.d.ts +8 -0
- package/options/timeline.d.ts +8 -0
- package/options/timeline.src.d.ts +8 -0
- package/options/treegraph.d.ts +8 -0
- package/options/treegraph.src.d.ts +8 -0
- package/options/trix.d.ts +8 -0
- package/options/trix.src.d.ts +8 -0
- package/options/variablepie.d.ts +8 -0
- package/options/variablepie.src.d.ts +8 -0
- package/options/variwide.d.ts +8 -0
- package/options/variwide.src.d.ts +8 -0
- package/options/vbp.d.ts +8 -0
- package/options/vbp.src.d.ts +8 -0
- package/options/vector.d.ts +9 -0
- package/options/vector.src.d.ts +9 -0
- package/options/venn.d.ts +8 -0
- package/options/venn.src.d.ts +8 -0
- package/options/vwap.d.ts +8 -0
- package/options/vwap.src.d.ts +8 -0
- package/options/windbarb.d.ts +9 -0
- package/options/windbarb.src.d.ts +9 -0
- package/options/wma.d.ts +8 -0
- package/options/wma.src.d.ts +8 -0
- package/options/wordcloud.d.ts +8 -0
- package/options/wordcloud.src.d.ts +8 -0
- package/options/zigzag.d.ts +8 -0
- package/options/zigzag.src.d.ts +8 -0
- package/package.json +1 -1
- package/standalone-navigator.js +11 -2
- package/standalone-navigator.src.js +312 -206
- package/themes/adaptive.d.ts +18 -0
- package/themes/adaptive.js +130 -0
- package/themes/adaptive.src.d.ts +18 -0
- package/themes/adaptive.src.js +1122 -0
- package/themes/avocado.d.ts +1 -9
- package/themes/avocado.js +9 -1
- package/themes/avocado.src.d.ts +1 -9
- package/themes/avocado.src.js +1 -1
- package/themes/brand-dark.d.ts +1 -9
- package/themes/brand-dark.js +9 -1
- package/themes/brand-dark.src.d.ts +1 -9
- package/themes/brand-dark.src.js +1 -1
- package/themes/brand-light.d.ts +1 -9
- package/themes/brand-light.js +9 -1
- package/themes/brand-light.src.d.ts +1 -9
- package/themes/brand-light.src.js +1 -1
- package/themes/dark-blue.d.ts +1 -9
- package/themes/dark-blue.js +9 -1
- package/themes/dark-blue.src.d.ts +1 -9
- package/themes/dark-blue.src.js +1 -1
- package/themes/dark-green.d.ts +1 -9
- package/themes/dark-green.js +9 -1
- package/themes/dark-green.src.d.ts +1 -9
- package/themes/dark-green.src.js +1 -1
- package/themes/dark-unica.d.ts +1 -9
- package/themes/dark-unica.js +9 -1
- package/themes/dark-unica.src.d.ts +1 -9
- package/themes/dark-unica.src.js +1 -1
- package/themes/gray.d.ts +1 -9
- package/themes/gray.js +9 -1
- package/themes/gray.src.d.ts +1 -9
- package/themes/gray.src.js +1 -1
- package/themes/grid-light.d.ts +1 -9
- package/themes/grid-light.js +9 -1
- package/themes/grid-light.src.d.ts +1 -9
- package/themes/grid-light.src.js +1 -1
- package/themes/grid.d.ts +1 -9
- package/themes/grid.js +9 -1
- package/themes/grid.src.d.ts +1 -9
- package/themes/grid.src.js +1 -1
- package/themes/high-contrast-dark.d.ts +1 -9
- package/themes/high-contrast-dark.js +9 -1
- package/themes/high-contrast-dark.src.d.ts +1 -9
- package/themes/high-contrast-dark.src.js +1 -1
- package/themes/high-contrast-light.d.ts +1 -9
- package/themes/high-contrast-light.js +9 -1
- package/themes/high-contrast-light.src.d.ts +1 -9
- package/themes/high-contrast-light.src.js +1 -1
- package/themes/sand-signika.d.ts +1 -9
- package/themes/sand-signika.js +9 -1
- package/themes/sand-signika.src.d.ts +1 -9
- package/themes/sand-signika.src.js +1 -1
- package/themes/skies.d.ts +1 -9
- package/themes/skies.js +9 -1
- package/themes/skies.src.d.ts +1 -9
- package/themes/skies.src.js +1 -1
- package/themes/sunset.d.ts +1 -9
- package/themes/sunset.js +9 -1
- package/themes/sunset.src.d.ts +1 -9
- package/themes/sunset.src.js +1 -1
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license
|
|
3
|
-
* @module highcharts/
|
|
2
|
+
* @license Highchart JS v12.4.0 (2025-09-04)
|
|
3
|
+
* @module highcharts/standalone-navigator
|
|
4
|
+
*
|
|
5
|
+
* Standalone Navigator for Highcharts.
|
|
4
6
|
*
|
|
5
|
-
* (c) 2009-2025
|
|
7
|
+
* (c) 2009-2025 Highsoft AS
|
|
6
8
|
*
|
|
7
9
|
* License: www.highcharts.com/license
|
|
8
10
|
*/
|
|
@@ -34,7 +36,7 @@ var Globals;
|
|
|
34
36
|
* Constants
|
|
35
37
|
*
|
|
36
38
|
* */
|
|
37
|
-
Globals.SVG_NS = 'http://www.w3.org/2000/svg', Globals.product = 'Highcharts', Globals.version = '12.
|
|
39
|
+
Globals.SVG_NS = 'http://www.w3.org/2000/svg', Globals.product = 'Highcharts', Globals.version = '12.4.0', Globals.win = (typeof window !== 'undefined' ?
|
|
38
40
|
window :
|
|
39
41
|
{}), // eslint-disable-line node/no-unsupported-features/es-builtins
|
|
40
42
|
Globals.doc = Globals.win.document, Globals.svg = !!Globals.doc?.createElementNS?.(Globals.SVG_NS, 'svg')?.createSVGRect, Globals.pageLang = Globals.doc?.documentElement?.closest('[lang]')?.lang, Globals.userAgent = Globals.win.navigator?.userAgent || '', Globals.isChrome = Globals.win.chrome, Globals.isFirefox = Globals.userAgent.indexOf('Firefox') !== -1, Globals.isMS = /(edge|msie|trident)/i.test(Globals.userAgent) && !Globals.win.opera, Globals.isSafari = !Globals.isChrome && Globals.userAgent.indexOf('Safari') !== -1, Globals.isTouchDevice = /(Mobile|Android|Windows Phone)/.test(Globals.userAgent), Globals.isWebKit = Globals.userAgent.indexOf('AppleWebKit') !== -1, Globals.deg2rad = Math.PI * 2 / 360, Globals.marginNames = [
|
|
@@ -2590,6 +2592,10 @@ const ChartDefaults = {
|
|
|
2590
2592
|
* panning action is finished, the axes will adjust to their actual
|
|
2591
2593
|
* settings.
|
|
2592
2594
|
*
|
|
2595
|
+
* **Note:** For non-cartesian series, the only supported panning type
|
|
2596
|
+
* is `xy`, as zooming in a single direction is not applicable due to
|
|
2597
|
+
* the radial nature of the coordinate system.
|
|
2598
|
+
*
|
|
2593
2599
|
* @sample {highcharts} highcharts/chart/panning-type
|
|
2594
2600
|
* Zooming and xy panning
|
|
2595
2601
|
*
|
|
@@ -2915,11 +2921,12 @@ const ChartDefaults = {
|
|
|
2915
2921
|
* others series in a stack. The shadow can be an object configuration
|
|
2916
2922
|
* containing `color`, `offsetX`, `offsetY`, `opacity` and `width`.
|
|
2917
2923
|
*
|
|
2918
|
-
* @sample highcharts/chart/seriesgroupshadow/
|
|
2924
|
+
* @sample highcharts/chart/seriesgroupshadow/
|
|
2925
|
+
* Shadow
|
|
2919
2926
|
*
|
|
2920
2927
|
* @type {boolean|Highcharts.ShadowOptionsObject}
|
|
2921
2928
|
* @default false
|
|
2922
|
-
* @apioption chart.
|
|
2929
|
+
* @apioption chart.seriesGroupShadow
|
|
2923
2930
|
*/
|
|
2924
2931
|
/**
|
|
2925
2932
|
* Whether to apply a drop shadow to the outer chart area. Requires
|
|
@@ -3129,6 +3136,11 @@ const ChartDefaults = {
|
|
|
3129
3136
|
/**
|
|
3130
3137
|
* Chart zooming options.
|
|
3131
3138
|
* @since 10.2.1
|
|
3139
|
+
*
|
|
3140
|
+
* @sample highcharts/plotoptions/sankey-node-color
|
|
3141
|
+
* Zooming in sankey series
|
|
3142
|
+
* @sample highcharts/series-treegraph/link-types
|
|
3143
|
+
* Zooming in treegraph series
|
|
3132
3144
|
*/
|
|
3133
3145
|
zooming: {
|
|
3134
3146
|
/**
|
|
@@ -3151,6 +3163,10 @@ const ChartDefaults = {
|
|
|
3151
3163
|
* Decides in what dimensions the user can zoom by dragging the mouse.
|
|
3152
3164
|
* Can be one of `x`, `y` or `xy`.
|
|
3153
3165
|
*
|
|
3166
|
+
* **Note:** For non-cartesian series, the only supported zooming type
|
|
3167
|
+
* is `xy`, as zooming in a single direction is not applicable due to
|
|
3168
|
+
* the radial nature of the coordinate system.
|
|
3169
|
+
*
|
|
3154
3170
|
* @declare Highcharts.OptionsChartZoomingTypeValue
|
|
3155
3171
|
* @type {string}
|
|
3156
3172
|
* @default {highcharts} undefined
|
|
@@ -3570,7 +3586,7 @@ class TimeBase {
|
|
|
3570
3586
|
update(options = {}) {
|
|
3571
3587
|
this.dTLCache = {};
|
|
3572
3588
|
this.options = options = TimeBase_merge(true, this.options, options);
|
|
3573
|
-
const { timezoneOffset, useUTC } = options;
|
|
3589
|
+
const { timezoneOffset, useUTC, locale } = options;
|
|
3574
3590
|
// Allow using a different Date class
|
|
3575
3591
|
this.Date = options.Date || TimeBase_win.Date || Date;
|
|
3576
3592
|
// Assign the time zone. Handle the legacy, deprecated `useUTC` option.
|
|
@@ -3590,6 +3606,10 @@ class TimeBase {
|
|
|
3590
3606
|
this.variableTimezone = timezone !== 'UTC' &&
|
|
3591
3607
|
timezone?.indexOf('Etc/GMT') !== 0;
|
|
3592
3608
|
this.timezone = timezone;
|
|
3609
|
+
// Update locale.
|
|
3610
|
+
if (this.lang && locale) {
|
|
3611
|
+
this.lang.locale = locale;
|
|
3612
|
+
}
|
|
3593
3613
|
// Assign default time formats from locale strings
|
|
3594
3614
|
['months', 'shortMonths', 'weekdays', 'shortWeekdays'].forEach((name) => {
|
|
3595
3615
|
const isMonth = /months/i.test(name), isShort = /short/.test(name), options = {
|
|
@@ -4530,6 +4550,9 @@ const defaultOptions = {
|
|
|
4530
4550
|
* setup uses `Highcharts.setOptions` to make the options apply to all
|
|
4531
4551
|
* charts in the same page.
|
|
4532
4552
|
*
|
|
4553
|
+
* Some language options, like `months` and `weekdays`, are only used
|
|
4554
|
+
* with non-locale-aware date formats.
|
|
4555
|
+
*
|
|
4533
4556
|
* ```js
|
|
4534
4557
|
* Highcharts.setOptions({
|
|
4535
4558
|
* lang: {
|
|
@@ -4579,7 +4602,7 @@ const defaultOptions = {
|
|
|
4579
4602
|
* An array containing the months names. Corresponds to the `%B` format
|
|
4580
4603
|
* in `Highcharts.dateFormat()`. Defaults to 'undefined',
|
|
4581
4604
|
* meaning the default month names are used according to the
|
|
4582
|
-
* `lang.locale`
|
|
4605
|
+
* `lang.locale` or browser settings.
|
|
4583
4606
|
*
|
|
4584
4607
|
* @type {Array<string>}
|
|
4585
4608
|
*/
|
|
@@ -4594,23 +4617,25 @@ const defaultOptions = {
|
|
|
4594
4617
|
* An array containing the months names in abbreviated form. Corresponds
|
|
4595
4618
|
* to the `%b` format in `Highcharts.dateFormat()`. Defaults to
|
|
4596
4619
|
* 'undefined', meaning the default short month names are used according
|
|
4597
|
-
* to the `lang.locale`
|
|
4620
|
+
* to the `lang.locale` or browser settings.
|
|
4598
4621
|
*
|
|
4599
4622
|
* @type {Array<string>}
|
|
4600
4623
|
*/
|
|
4601
4624
|
shortMonths: void 0,
|
|
4602
4625
|
/**
|
|
4603
|
-
* An array containing the weekday names.
|
|
4604
|
-
*
|
|
4605
|
-
*
|
|
4626
|
+
* An array containing the weekday names. Corresponds
|
|
4627
|
+
* to the `%A` format in `Highcharts.dateFormat()`. Defaults to
|
|
4628
|
+
* 'undefined', meaning the default weekday names are used according to
|
|
4629
|
+
* the `lang.locale` or browser settings.
|
|
4606
4630
|
*
|
|
4607
4631
|
* @type {Array<string>}
|
|
4608
4632
|
*/
|
|
4609
4633
|
weekdays: void 0,
|
|
4610
4634
|
/**
|
|
4611
|
-
* Short week days, starting Sunday.
|
|
4635
|
+
* Short week days, starting Sunday. Corresponds to the `%a` format in
|
|
4636
|
+
* `Highcharts.dateFormat()`. Defaults to 'undefined', meaning
|
|
4612
4637
|
* the default short weekday names are used according to the
|
|
4613
|
-
* `lang.locale`
|
|
4638
|
+
* `lang.locale` or browser settings.
|
|
4614
4639
|
*
|
|
4615
4640
|
* @sample highcharts/lang/shortweekdays/
|
|
4616
4641
|
* Finnish two-letter abbreviations
|
|
@@ -6173,6 +6198,10 @@ const defaultOptions = {
|
|
|
6173
6198
|
* @since 3.0
|
|
6174
6199
|
*/
|
|
6175
6200
|
style: {
|
|
6201
|
+
/**
|
|
6202
|
+
* @ignore
|
|
6203
|
+
*/
|
|
6204
|
+
color: "#333333" /* Palette.neutralColor80 */,
|
|
6176
6205
|
/**
|
|
6177
6206
|
* @ignore
|
|
6178
6207
|
*/
|
|
@@ -7441,7 +7470,7 @@ const isStringColor = (color) => Color_isString(color) && !!color && color !== '
|
|
|
7441
7470
|
* @name Highcharts.Color
|
|
7442
7471
|
*
|
|
7443
7472
|
* @param {Highcharts.ColorType} input
|
|
7444
|
-
* The input color
|
|
7473
|
+
* The input color.
|
|
7445
7474
|
*/
|
|
7446
7475
|
class Color {
|
|
7447
7476
|
/* *
|
|
@@ -7455,7 +7484,7 @@ class Color {
|
|
|
7455
7484
|
* @function Highcharts.Color.parse
|
|
7456
7485
|
*
|
|
7457
7486
|
* @param {Highcharts.ColorType} [input]
|
|
7458
|
-
* The input color
|
|
7487
|
+
* The input color.
|
|
7459
7488
|
*
|
|
7460
7489
|
* @return {Highcharts.Color}
|
|
7461
7490
|
* Color instance.
|
|
@@ -7715,11 +7744,7 @@ Color.None = new Color('');
|
|
|
7715
7744
|
*
|
|
7716
7745
|
* */
|
|
7717
7746
|
/**
|
|
7718
|
-
* A valid color to be parsed and handled by Highcharts.
|
|
7719
|
-
* supports hex colors like `#ffffff`, rgb colors like `rgb(255,255,255)` and
|
|
7720
|
-
* rgba colors like `rgba(255,255,255,1)`. Other colors may be supported by the
|
|
7721
|
-
* browsers and displayed correctly, but Highcharts is not able to process them
|
|
7722
|
-
* and apply concepts like opacity and brightening.
|
|
7747
|
+
* A valid color to be parsed and handled by Highcharts.
|
|
7723
7748
|
*
|
|
7724
7749
|
* @typedef {string} Highcharts.ColorString
|
|
7725
7750
|
*/
|
|
@@ -7823,7 +7848,7 @@ Color.None = new Color('');
|
|
|
7823
7848
|
* @function Highcharts.color
|
|
7824
7849
|
*
|
|
7825
7850
|
* @param {Highcharts.ColorType} input
|
|
7826
|
-
* The input color
|
|
7851
|
+
* The input color.
|
|
7827
7852
|
*
|
|
7828
7853
|
* @return {Highcharts.Color}
|
|
7829
7854
|
* Color instance
|
|
@@ -8667,7 +8692,7 @@ class AST {
|
|
|
8667
8692
|
trustedTypesPolicy.createHTML(markup) :
|
|
8668
8693
|
markup, 'text/html');
|
|
8669
8694
|
}
|
|
8670
|
-
catch
|
|
8695
|
+
catch {
|
|
8671
8696
|
// There are two cases where this fails:
|
|
8672
8697
|
// 1. IE9 and PhantomJS, where the DOMParser only supports parsing
|
|
8673
8698
|
// XML
|
|
@@ -8760,9 +8785,9 @@ AST.allowedAttributes = [
|
|
|
8760
8785
|
'cx',
|
|
8761
8786
|
'cy',
|
|
8762
8787
|
'd',
|
|
8788
|
+
'disabled',
|
|
8763
8789
|
'dx',
|
|
8764
8790
|
'dy',
|
|
8765
|
-
'disabled',
|
|
8766
8791
|
'fill',
|
|
8767
8792
|
'filterUnits',
|
|
8768
8793
|
'flood-color',
|
|
@@ -8786,22 +8811,22 @@ AST.allowedAttributes = [
|
|
|
8786
8811
|
'radius',
|
|
8787
8812
|
'refX',
|
|
8788
8813
|
'refY',
|
|
8814
|
+
'result',
|
|
8789
8815
|
'role',
|
|
8816
|
+
'rowspan',
|
|
8790
8817
|
'scope',
|
|
8791
8818
|
'slope',
|
|
8792
8819
|
'src',
|
|
8793
8820
|
'startOffset',
|
|
8794
8821
|
'stdDeviation',
|
|
8795
|
-
'stroke',
|
|
8796
8822
|
'stroke-linecap',
|
|
8797
8823
|
'stroke-width',
|
|
8824
|
+
'stroke',
|
|
8798
8825
|
'style',
|
|
8799
|
-
'tableValues',
|
|
8800
|
-
'result',
|
|
8801
|
-
'rowspan',
|
|
8802
8826
|
'summary',
|
|
8803
|
-
'target',
|
|
8804
8827
|
'tabindex',
|
|
8828
|
+
'tableValues',
|
|
8829
|
+
'target',
|
|
8805
8830
|
'text-align',
|
|
8806
8831
|
'text-anchor',
|
|
8807
8832
|
'textAnchor',
|
|
@@ -8858,6 +8883,7 @@ AST.allowedReferences = [
|
|
|
8858
8883
|
* @type {Array<string>}
|
|
8859
8884
|
*/
|
|
8860
8885
|
AST.allowedTags = [
|
|
8886
|
+
'#text',
|
|
8861
8887
|
'a',
|
|
8862
8888
|
'abbr',
|
|
8863
8889
|
'b',
|
|
@@ -8882,10 +8908,10 @@ AST.allowedTags = [
|
|
|
8882
8908
|
'feFuncG',
|
|
8883
8909
|
'feFuncR',
|
|
8884
8910
|
'feGaussianBlur',
|
|
8885
|
-
'feMorphology',
|
|
8886
|
-
'feOffset',
|
|
8887
8911
|
'feMerge',
|
|
8888
8912
|
'feMergeNode',
|
|
8913
|
+
'feMorphology',
|
|
8914
|
+
'feOffset',
|
|
8889
8915
|
'filter',
|
|
8890
8916
|
'h1',
|
|
8891
8917
|
'h2',
|
|
@@ -8914,18 +8940,17 @@ AST.allowedTags = [
|
|
|
8914
8940
|
'sup',
|
|
8915
8941
|
'svg',
|
|
8916
8942
|
'table',
|
|
8943
|
+
'tbody',
|
|
8944
|
+
'td',
|
|
8917
8945
|
'text',
|
|
8918
8946
|
'textPath',
|
|
8947
|
+
'th',
|
|
8919
8948
|
'thead',
|
|
8920
8949
|
'title',
|
|
8921
|
-
'tbody',
|
|
8922
|
-
'tspan',
|
|
8923
|
-
'td',
|
|
8924
|
-
'th',
|
|
8925
8950
|
'tr',
|
|
8951
|
+
'tspan',
|
|
8926
8952
|
'u',
|
|
8927
|
-
'ul'
|
|
8928
|
-
'#text'
|
|
8953
|
+
'ul'
|
|
8929
8954
|
];
|
|
8930
8955
|
AST.emptyHTML = emptyHTML;
|
|
8931
8956
|
/**
|
|
@@ -9121,7 +9146,7 @@ function format(str = '', ctx, owner) {
|
|
|
9121
9146
|
// The sub expression regex is the same as the top expression regex,
|
|
9122
9147
|
// but except parens and block helpers (#), and surrounded by parens
|
|
9123
9148
|
// instead of curly brackets.
|
|
9124
|
-
subRegex = /\(([a-zA-Z\u00C0-\u017F\d:\.,;\-\/<>\[\]%_@+"'= ]+)\)/g, matches = [], floatRegex = /f$/, decRegex = /\.(\d)/, lang = owner?.options?.lang || Templating_defaultOptions.lang, time = owner?.time || Templating_defaultTime, numberFormatter = owner?.numberFormatter || numberFormat;
|
|
9149
|
+
subRegex = /\(([a-zA-Z\u00C0-\u017F\d:\.,;\-\/<>\[\]%_@+"'= ]+)\)/g, matches = [], floatRegex = /f$/, decRegex = /\.(\d)/, lang = owner?.options?.lang || Templating_defaultOptions.lang, time = owner?.time || Templating_defaultTime, numberFormatter = owner?.numberFormatter || numberFormat.bind(owner);
|
|
9125
9150
|
/*
|
|
9126
9151
|
* Get a literal or variable value inside a template expression. May be
|
|
9127
9152
|
* extended with other types like string or null if needed, but keep it
|
|
@@ -9256,9 +9281,11 @@ function format(str = '', ctx, owner) {
|
|
|
9256
9281
|
[expression] : expression.split(':');
|
|
9257
9282
|
replacement = resolveProperty(valueAndFormat.shift() || '');
|
|
9258
9283
|
// Format the replacement
|
|
9259
|
-
|
|
9284
|
+
const isFloat = replacement % 1 !== 0;
|
|
9285
|
+
if (typeof replacement === 'number' &&
|
|
9286
|
+
(valueAndFormat.length || isFloat)) {
|
|
9260
9287
|
const segment = valueAndFormat.join(':');
|
|
9261
|
-
if (floatRegex.test(segment)) { // Float
|
|
9288
|
+
if (floatRegex.test(segment) || isFloat) { // Float
|
|
9262
9289
|
const decimals = parseInt((segment.match(decRegex) || ['', '-1'])[1], 10);
|
|
9263
9290
|
if (replacement !== null) {
|
|
9264
9291
|
replacement = numberFormatter(replacement, decimals, lang.decimalPoint, segment.indexOf(',') > -1 ? lang.thousandsSep : '');
|
|
@@ -9353,8 +9380,7 @@ function numberFormat(number, decimals, decimalPoint, thousandsSep) {
|
|
|
9353
9380
|
options.useGrouping = false;
|
|
9354
9381
|
}
|
|
9355
9382
|
const hasSeparators = thousandsSep || decimalPoint, locale = hasSeparators ?
|
|
9356
|
-
'en' :
|
|
9357
|
-
(this?.locale || lang.locale || Templating_pageLang), cacheKey = JSON.stringify(options) + locale, nf = numberFormatCache[cacheKey] ?? (numberFormatCache[cacheKey] = new Intl.NumberFormat(locale, options));
|
|
9383
|
+
'en' : (this?.locale || lang.locale || Templating_pageLang), cacheKey = JSON.stringify(options) + locale, nf = numberFormatCache[cacheKey] ?? (numberFormatCache[cacheKey] = new Intl.NumberFormat(locale, options));
|
|
9358
9384
|
ret = nf.format(number);
|
|
9359
9385
|
// If thousandsSep or decimalPoint are set, fall back to using English
|
|
9360
9386
|
// format with string replacement for the separators.
|
|
@@ -10678,8 +10704,8 @@ class SVGElement {
|
|
|
10678
10704
|
toggleTextShadowShim('');
|
|
10679
10705
|
}
|
|
10680
10706
|
}
|
|
10681
|
-
catch
|
|
10682
|
-
|
|
10707
|
+
catch {
|
|
10708
|
+
// Ignore error
|
|
10683
10709
|
}
|
|
10684
10710
|
// If the bBox is not set, the try-catch block above failed. The
|
|
10685
10711
|
// other condition is for Opera that returns a width of
|
|
@@ -11584,7 +11610,8 @@ class SVGLabel extends SVG_SVGElement {
|
|
|
11584
11610
|
* Constructor
|
|
11585
11611
|
*
|
|
11586
11612
|
* */
|
|
11587
|
-
constructor(renderer, str, x, y, shape,
|
|
11613
|
+
constructor(renderer, str, x, y, shape, // @todo (SymbolKey|string),
|
|
11614
|
+
anchorX, anchorY, useHTML, baseline, className) {
|
|
11588
11615
|
super(renderer, 'g');
|
|
11589
11616
|
this.paddingLeftSetter = this.paddingSetter;
|
|
11590
11617
|
this.paddingRightSetter = this.paddingSetter;
|
|
@@ -11917,10 +11944,18 @@ class SVGLabel extends SVG_SVGElement {
|
|
|
11917
11944
|
// Force animation even when setting to the same value (#7898)
|
|
11918
11945
|
this['forceAnimate:x'] = true;
|
|
11919
11946
|
}
|
|
11947
|
+
if (this.anchorX) {
|
|
11948
|
+
// #22907, force anchorX to animate after x set
|
|
11949
|
+
this['forceAnimate:anchorX'] = true;
|
|
11950
|
+
}
|
|
11920
11951
|
this.xSetting = Math.round(value);
|
|
11921
11952
|
this.attr('translateX', this.xSetting);
|
|
11922
11953
|
}
|
|
11923
11954
|
ySetter(value) {
|
|
11955
|
+
if (this.anchorY) {
|
|
11956
|
+
// #22907, force anchorY to animate after y set
|
|
11957
|
+
this['forceAnimate:anchorY'] = true;
|
|
11958
|
+
}
|
|
11924
11959
|
this.ySetting = this.y = Math.round(value);
|
|
11925
11960
|
this.attr('translateY', this.ySetting);
|
|
11926
11961
|
}
|
|
@@ -12587,8 +12622,8 @@ class TextBuilder {
|
|
|
12587
12622
|
lengths[end] = startAt +
|
|
12588
12623
|
parentNode.getSubStringLength(0, words ? end + 1 : end);
|
|
12589
12624
|
}
|
|
12590
|
-
catch
|
|
12591
|
-
|
|
12625
|
+
catch {
|
|
12626
|
+
// Ignore error
|
|
12592
12627
|
}
|
|
12593
12628
|
}
|
|
12594
12629
|
}
|
|
@@ -12840,7 +12875,7 @@ class SVGRenderer {
|
|
|
12840
12875
|
this.url = this.getReferenceURL();
|
|
12841
12876
|
// Add description
|
|
12842
12877
|
const desc = this.createElement('desc').add();
|
|
12843
|
-
desc.element.appendChild(SVGRenderer_doc.createTextNode('Created with Highcharts 12.
|
|
12878
|
+
desc.element.appendChild(SVGRenderer_doc.createTextNode('Created with Highcharts 12.4.0'));
|
|
12844
12879
|
this.defs = this.createElement('defs').add();
|
|
12845
12880
|
this.allowHTML = allowHTML;
|
|
12846
12881
|
this.forExport = forExport;
|
|
@@ -13176,6 +13211,9 @@ class SVGRenderer {
|
|
|
13176
13211
|
* The contrast color, either `#000000` or `#FFFFFF`.
|
|
13177
13212
|
*/
|
|
13178
13213
|
getContrast(color) {
|
|
13214
|
+
if (color === 'transparent') {
|
|
13215
|
+
return '#000000';
|
|
13216
|
+
}
|
|
13179
13217
|
// #6216, #17273
|
|
13180
13218
|
const rgba256 = Color_Color.parse(color).rgba,
|
|
13181
13219
|
// For each rgb channel, compute the luminosity based on all
|
|
@@ -13976,15 +14014,15 @@ class SVGRenderer {
|
|
|
13976
14014
|
*
|
|
13977
14015
|
* @function Highcharts.SVGRenderer#fontMetrics
|
|
13978
14016
|
*
|
|
13979
|
-
* @param {Highcharts.SVGElement|Highcharts.SVGDOMElement|number}
|
|
13980
|
-
*
|
|
13981
|
-
*
|
|
14017
|
+
* @param {Highcharts.SVGElement|Highcharts.SVGDOMElement|number} ref
|
|
14018
|
+
* The element to inspect for a current font size. If a number is given,
|
|
14019
|
+
* it's used as a fall back for direct font size in pixels.
|
|
13982
14020
|
*
|
|
13983
14021
|
* @return {Highcharts.FontMetricsObject}
|
|
13984
|
-
*
|
|
14022
|
+
* The font metrics.
|
|
13985
14023
|
*/
|
|
13986
|
-
fontMetrics(
|
|
13987
|
-
const f = SVGRenderer_pInt(SVG_SVGElement.prototype.getStyle.call(
|
|
14024
|
+
fontMetrics(ref) {
|
|
14025
|
+
const f = SVGRenderer_isNumber(ref) ? ref : SVGRenderer_pInt((SVG_SVGElement.prototype.getStyle.call(ref, 'font-size') || 0));
|
|
13988
14026
|
// Empirical values found by comparing font size and bounding box
|
|
13989
14027
|
// height. Applies to the default font family.
|
|
13990
14028
|
// https://jsfiddle.net/highcharts/7xvn7/
|
|
@@ -14597,10 +14635,10 @@ const { attr: HTMLElement_attr, css: HTMLElement_css, createElement: HTMLElement
|
|
|
14597
14635
|
* @private
|
|
14598
14636
|
*/
|
|
14599
14637
|
function commonSetter(value, key, elem) {
|
|
14600
|
-
const style = this.div?.style
|
|
14638
|
+
const style = this.div?.style;
|
|
14601
14639
|
SVG_SVGElement.prototype[`${key}Setter`].call(this, value, key, elem);
|
|
14602
14640
|
if (style) {
|
|
14603
|
-
style[key] = value;
|
|
14641
|
+
elem.style[key] = style[key] = value;
|
|
14604
14642
|
}
|
|
14605
14643
|
}
|
|
14606
14644
|
/**
|
|
@@ -14645,6 +14683,10 @@ const decorateSVGGroup = (g, container) => {
|
|
|
14645
14683
|
div.style[key === 'translateX' ? 'left' : 'top'] = `${value}px`;
|
|
14646
14684
|
g.doTransform = true;
|
|
14647
14685
|
};
|
|
14686
|
+
g.scaleXSetter = g.scaleYSetter = (value, key) => {
|
|
14687
|
+
g[key] = value;
|
|
14688
|
+
g.doTransform = true;
|
|
14689
|
+
};
|
|
14648
14690
|
g.opacitySetter = g.visibilitySetter = commonSetter;
|
|
14649
14691
|
// Extend the parent group's css function by updating the parallel div
|
|
14650
14692
|
// counterpart with the same style.
|
|
@@ -14839,7 +14881,8 @@ class HTMLElement extends SVG_SVGElement {
|
|
|
14839
14881
|
// Calling offsetWidth affects rendering time as it forces layout
|
|
14840
14882
|
// (#7656).
|
|
14841
14883
|
if (textWidth !== oldTextWidth) { // #983, #1254
|
|
14842
|
-
const textPxLength = getTextPxLength(), textWidthNum = textWidth || 0, willOverWrap =
|
|
14884
|
+
const textPxLength = getTextPxLength(), textWidthNum = textWidth || 0, willOverWrap = !renderer.styledMode &&
|
|
14885
|
+
element.style.textOverflow === '' &&
|
|
14843
14886
|
element.style.webkitLineClamp;
|
|
14844
14887
|
if ((textWidthNum > oldTextWidth ||
|
|
14845
14888
|
textPxLength > textWidthNum ||
|
|
@@ -15732,14 +15775,6 @@ var AxisDefaults;
|
|
|
15732
15775
|
* @context Highcharts.Axis
|
|
15733
15776
|
* @apioption xAxis.events.pointInBreak
|
|
15734
15777
|
*/
|
|
15735
|
-
/**
|
|
15736
|
-
* An event fired when a point is outside a break after zoom.
|
|
15737
|
-
*
|
|
15738
|
-
* @type {Highcharts.AxisPointBreakEventCallbackFunction}
|
|
15739
|
-
* @product highcharts highstock gantt
|
|
15740
|
-
* @context Highcharts.Axis
|
|
15741
|
-
* @apioption xAxis.events.pointBreakOut
|
|
15742
|
-
*/
|
|
15743
15778
|
/**
|
|
15744
15779
|
* Fires when the minimum and maximum is set for the axis, either by
|
|
15745
15780
|
* calling the `.setExtremes()` method or by selecting an area in the
|
|
@@ -16810,6 +16845,10 @@ var AxisDefaults;
|
|
|
16810
16845
|
* overrides the default behaviour of [tickPixelInterval](
|
|
16811
16846
|
* #xAxis.tickPixelInterval) and [tickInterval](#xAxis.tickInterval).
|
|
16812
16847
|
*
|
|
16848
|
+
* Note: When working with date-time axes, be aware of time zone
|
|
16849
|
+
* handling. See the [documentation on time options](https://www.highcharts.com/docs/chart-concepts/axes#datetime)
|
|
16850
|
+
* for best practices.
|
|
16851
|
+
*
|
|
16813
16852
|
* @see [tickPositioner](#xAxis.tickPositioner)
|
|
16814
16853
|
*
|
|
16815
16854
|
* @sample {highcharts} highcharts/xaxis/tickpositions-tickpositioner/
|
|
@@ -17897,6 +17936,7 @@ var AxisDefaults;
|
|
|
17897
17936
|
* @default {highcharts} Values
|
|
17898
17937
|
* @default {highstock} undefined
|
|
17899
17938
|
* @product highcharts highstock gantt
|
|
17939
|
+
* @apioption yAxis.title.text
|
|
17900
17940
|
*/
|
|
17901
17941
|
},
|
|
17902
17942
|
/**
|
|
@@ -18267,7 +18307,7 @@ class Tick {
|
|
|
18267
18307
|
// position, use that. If not, use the general format.
|
|
18268
18308
|
if (axis.dateTime) {
|
|
18269
18309
|
if (tickPositionInfo) {
|
|
18270
|
-
dateTimeLabelFormats = chart.time.resolveDTLFormat(options.dateTimeLabelFormats[(!options.grid &&
|
|
18310
|
+
dateTimeLabelFormats = chart.time.resolveDTLFormat(options.dateTimeLabelFormats[(!options.grid?.enabled &&
|
|
18271
18311
|
tickPositionInfo.higherRanks[pos]) ||
|
|
18272
18312
|
tickPositionInfo.unitName]);
|
|
18273
18313
|
dateTimeLabelFormat = dateTimeLabelFormats.main;
|
|
@@ -19386,7 +19426,7 @@ class Axis {
|
|
|
19386
19426
|
}
|
|
19387
19427
|
const minPixelPadding = axis.minPixelPadding, doPostTranslate = (axis.isOrdinal ||
|
|
19388
19428
|
axis.brokenAxis?.hasBreaks ||
|
|
19389
|
-
(axis.logarithmic && handleLog)) && axis.lin2val;
|
|
19429
|
+
(axis.logarithmic && handleLog)) && !!axis.lin2val;
|
|
19390
19430
|
let sign = 1, cvsOffset = 0, localA = old && axis.old ? axis.old.transA : axis.transA, returnValue = 0;
|
|
19391
19431
|
if (!localA) {
|
|
19392
19432
|
localA = axis.transA;
|
|
@@ -20948,7 +20988,8 @@ class Axis {
|
|
|
20948
20988
|
if (cssWidth !== void 0) {
|
|
20949
20989
|
return parseInt(String(cssWidth), 10);
|
|
20950
20990
|
}
|
|
20951
|
-
|
|
20991
|
+
// Skip marginLeft for opposite axis to avoid label cutoff, #22821
|
|
20992
|
+
if (!this.opposite && marginLeft) {
|
|
20952
20993
|
return marginLeft - chart.spacing[3];
|
|
20953
20994
|
}
|
|
20954
20995
|
}
|
|
@@ -21663,7 +21704,7 @@ class Axis {
|
|
|
21663
21704
|
axis.plotLinesAndBandsGroups[plotGroup].destroy();
|
|
21664
21705
|
}
|
|
21665
21706
|
// Delete all properties and fall back to the prototype.
|
|
21666
|
-
Axis_objectEach(axis, function (
|
|
21707
|
+
Axis_objectEach(axis, function (_val, key) {
|
|
21667
21708
|
if (axis.getKeepProps().indexOf(key) === -1) {
|
|
21668
21709
|
delete axis[key];
|
|
21669
21710
|
}
|
|
@@ -22946,7 +22987,7 @@ class PlotLineOrBand {
|
|
|
22946
22987
|
// Common for lines and bands. Add events only if they were not added
|
|
22947
22988
|
// before.
|
|
22948
22989
|
if (!this.eventsAdded && events) {
|
|
22949
|
-
PlotLineOrBand_objectEach(events, (
|
|
22990
|
+
PlotLineOrBand_objectEach(events, (_event, eventType) => {
|
|
22950
22991
|
svgElem?.on(eventType, (e) => {
|
|
22951
22992
|
events[eventType].apply(this, [e]);
|
|
22952
22993
|
});
|
|
@@ -23020,6 +23061,11 @@ class PlotLineOrBand {
|
|
|
23020
23061
|
});
|
|
23021
23062
|
if (!axis.chart.styledMode) {
|
|
23022
23063
|
label.css(PlotLineOrBand_merge({
|
|
23064
|
+
// To allow theming, and in lack of a general place to set
|
|
23065
|
+
// default options for plot lines and bands, default to the
|
|
23066
|
+
// title color. If we expose the palette, we should use that
|
|
23067
|
+
// instead.
|
|
23068
|
+
color: axis.chart.options.title?.style?.color,
|
|
23023
23069
|
fontSize: '0.8em',
|
|
23024
23070
|
textOverflow: (isBand && !inside) ? '' : 'ellipsis'
|
|
23025
23071
|
}, optionsLabel.style));
|
|
@@ -23552,7 +23598,7 @@ class PlotLineOrBand {
|
|
|
23552
23598
|
* @apioption xAxis.plotLines.zIndex
|
|
23553
23599
|
*/
|
|
23554
23600
|
/**
|
|
23555
|
-
* Text labels for the plot
|
|
23601
|
+
* Text labels for the plot lines
|
|
23556
23602
|
*
|
|
23557
23603
|
* @apioption xAxis.plotLines.label
|
|
23558
23604
|
*/
|
|
@@ -23570,6 +23616,14 @@ class PlotLineOrBand {
|
|
|
23570
23616
|
* @since 2.1
|
|
23571
23617
|
* @apioption xAxis.plotLines.label.align
|
|
23572
23618
|
*/
|
|
23619
|
+
/**
|
|
23620
|
+
* Whether or not the label can be hidden if it overlaps with another label.
|
|
23621
|
+
*
|
|
23622
|
+
* @type {boolean}
|
|
23623
|
+
* @default undefined
|
|
23624
|
+
* @since 11.4.8
|
|
23625
|
+
* @apioption xAxis.plotBands.label.allowOverlap
|
|
23626
|
+
*/
|
|
23573
23627
|
/**
|
|
23574
23628
|
* Whether to hide labels that are outside the plot area.
|
|
23575
23629
|
*
|
|
@@ -23947,7 +24001,9 @@ class Tooltip {
|
|
|
23947
24001
|
// Use the average position for multiple points
|
|
23948
24002
|
ret = [chartX - plotLeft, chartY - plotTop];
|
|
23949
24003
|
}
|
|
23950
|
-
|
|
24004
|
+
const params = { point: points[0], ret };
|
|
24005
|
+
Tooltip_fireEvent(this, 'getAnchor', params);
|
|
24006
|
+
return params.ret.map(Math.round);
|
|
23951
24007
|
}
|
|
23952
24008
|
/**
|
|
23953
24009
|
* Get the CSS class names for the tooltip's label. Styles the label
|
|
@@ -25224,6 +25280,15 @@ class Point {
|
|
|
25224
25280
|
* @name Highcharts.Point#shapeArgs
|
|
25225
25281
|
* @type {Readonly<Highcharts.SVGAttributes>|undefined}
|
|
25226
25282
|
*/
|
|
25283
|
+
/**
|
|
25284
|
+
* Defines the tooltip's position for a data point in a chart. It is an
|
|
25285
|
+
* array of numbers representing the coordinates for the tooltip's
|
|
25286
|
+
* placement, allowing for precise control over its location.
|
|
25287
|
+
*
|
|
25288
|
+
* @readonly
|
|
25289
|
+
* @name Highcharts.Point#tooltipPos
|
|
25290
|
+
* @type {Readonly<Array<number>>|undefined}
|
|
25291
|
+
*/
|
|
25227
25292
|
/**
|
|
25228
25293
|
* The total of values in either a stack for stacked series, or a pie in a
|
|
25229
25294
|
* pie series.
|
|
@@ -26509,17 +26574,20 @@ class Pointer {
|
|
|
26509
26574
|
activeSeries.push.apply(activeSeries, this.chart.series.filter((otherSeries) => otherSeries.markerGroup === series.markerGroup));
|
|
26510
26575
|
}
|
|
26511
26576
|
});
|
|
26512
|
-
|
|
26513
|
-
|
|
26577
|
+
for (const series of this.chart.series) {
|
|
26578
|
+
const seriesOptions = series.options;
|
|
26579
|
+
if (seriesOptions.states?.inactive?.enabled === false) {
|
|
26580
|
+
continue;
|
|
26581
|
+
}
|
|
26514
26582
|
if (activeSeries.indexOf(series) === -1) {
|
|
26515
26583
|
// Inactive series
|
|
26516
26584
|
series.setState('inactive', true);
|
|
26517
26585
|
}
|
|
26518
|
-
else if (
|
|
26586
|
+
else if (seriesOptions.inactiveOtherPoints) {
|
|
26519
26587
|
// Active series, but other points should be inactivated
|
|
26520
26588
|
series.setAllPointsToState('inactive');
|
|
26521
26589
|
}
|
|
26522
|
-
}
|
|
26590
|
+
}
|
|
26523
26591
|
}
|
|
26524
26592
|
/**
|
|
26525
26593
|
* Destroys the Pointer object and disconnects DOM events.
|
|
@@ -26619,8 +26687,7 @@ class Pointer {
|
|
|
26619
26687
|
});
|
|
26620
26688
|
const { shapeType, attrs } = this.getSelectionMarkerAttrs(chartX, chartY);
|
|
26621
26689
|
// Make a selection
|
|
26622
|
-
if (
|
|
26623
|
-
this.hasZoom &&
|
|
26690
|
+
if (this.hasZoom &&
|
|
26624
26691
|
clickedInside &&
|
|
26625
26692
|
!panKeyPressed) {
|
|
26626
26693
|
if (!selectionMarker) {
|
|
@@ -26733,6 +26800,7 @@ class Pointer {
|
|
|
26733
26800
|
chart.mouseIsDown = false;
|
|
26734
26801
|
this.hasDragged = 0;
|
|
26735
26802
|
this.pinchDown = [];
|
|
26803
|
+
this.hasPinchMoved = false;
|
|
26736
26804
|
}
|
|
26737
26805
|
}
|
|
26738
26806
|
/**
|
|
@@ -27206,7 +27274,7 @@ class Pointer {
|
|
|
27206
27274
|
this.drag(pEvt);
|
|
27207
27275
|
}
|
|
27208
27276
|
// Show the tooltip and run mouse over events (#977)
|
|
27209
|
-
if (!chart.openMenu &&
|
|
27277
|
+
if (!chart.exporting?.openMenu &&
|
|
27210
27278
|
(this.inClass(pEvt.target, 'highcharts-tracker') ||
|
|
27211
27279
|
chart.isInsidePlot(pEvt.chartX - chart.plotLeft, pEvt.chartY - chart.plotTop, {
|
|
27212
27280
|
visiblePlotOnly: true
|
|
@@ -27282,6 +27350,11 @@ class Pointer {
|
|
|
27282
27350
|
* @function Highcharts.Pointer#onDocumentMouseUp
|
|
27283
27351
|
*/
|
|
27284
27352
|
onDocumentMouseUp(e) {
|
|
27353
|
+
// #17852, IOS devices sometimes reverts back to previous point when
|
|
27354
|
+
// dragging between points
|
|
27355
|
+
if (e?.touches && this.hasPinchMoved) {
|
|
27356
|
+
e?.preventDefault?.();
|
|
27357
|
+
}
|
|
27285
27358
|
Pointer_charts[Pointer_pick(Pointer.hoverChartIndex, -1)]
|
|
27286
27359
|
?.pointer
|
|
27287
27360
|
?.drop(e);
|
|
@@ -27825,7 +27898,7 @@ class Pointer {
|
|
|
27825
27898
|
isInside = chart.isInsidePlot(e.chartX - chart.plotLeft, e.chartY - chart.plotTop, {
|
|
27826
27899
|
visiblePlotOnly: true
|
|
27827
27900
|
});
|
|
27828
|
-
if (isInside && !chart.openMenu) {
|
|
27901
|
+
if (isInside && !chart.exporting?.openMenu) {
|
|
27829
27902
|
// Run mouse events and display tooltip etc
|
|
27830
27903
|
if (start) {
|
|
27831
27904
|
this.runPointActions(e);
|
|
@@ -27837,7 +27910,7 @@ class Pointer {
|
|
|
27837
27910
|
// checking how much it moved, and cancelling on small
|
|
27838
27911
|
// distances. #3450. Tested and still relevant as of 2024.
|
|
27839
27912
|
if (e.type === 'touchmove') {
|
|
27840
|
-
hasMoved = pinchDown[0] ? // #5266
|
|
27913
|
+
this.hasPinchMoved = hasMoved = pinchDown[0] ? // #5266
|
|
27841
27914
|
(Math.pow(pinchDown[0].chartX - e.chartX, 2) +
|
|
27842
27915
|
Math.pow(pinchDown[0].chartY - e.chartY, 2)) >= 16 :
|
|
27843
27916
|
false;
|
|
@@ -30765,9 +30838,7 @@ const seriesDefaults = {
|
|
|
30765
30838
|
size: 10,
|
|
30766
30839
|
/**
|
|
30767
30840
|
* Opacity for the halo unless a specific fill is overridden
|
|
30768
|
-
* using the `attributes` setting.
|
|
30769
|
-
* only able to apply opacity to colors of hex or rgb(a)
|
|
30770
|
-
* formats.
|
|
30841
|
+
* using the `attributes` setting.
|
|
30771
30842
|
*
|
|
30772
30843
|
* @since 4.0
|
|
30773
30844
|
* @product highcharts highstock
|
|
@@ -31080,6 +31151,12 @@ const seriesDefaults = {
|
|
|
31080
31151
|
*
|
|
31081
31152
|
* */
|
|
31082
31153
|
|
|
31154
|
+
/* *
|
|
31155
|
+
*
|
|
31156
|
+
* Imports
|
|
31157
|
+
*
|
|
31158
|
+
* */
|
|
31159
|
+
|
|
31083
31160
|
|
|
31084
31161
|
|
|
31085
31162
|
const { defaultOptions: SeriesRegistry_defaultOptions } = Defaults;
|
|
@@ -31163,7 +31240,8 @@ var SeriesRegistry;
|
|
|
31163
31240
|
defaultPlotOptions[type] = SeriesRegistry_merge(defaultPlotOptions[parent], options);
|
|
31164
31241
|
// Create the class
|
|
31165
31242
|
delete SeriesRegistry.seriesTypes[type];
|
|
31166
|
-
|
|
31243
|
+
const parentClass = SeriesRegistry.seriesTypes[parent] || Series_Series, childClass = SeriesRegistry_extendClass(parentClass, seriesProto);
|
|
31244
|
+
registerSeriesType(type, childClass);
|
|
31167
31245
|
SeriesRegistry.seriesTypes[type].prototype.type = type;
|
|
31168
31246
|
// Create the point class if needed
|
|
31169
31247
|
if (pointProto) {
|
|
@@ -31995,7 +32073,9 @@ class Series {
|
|
|
31995
32073
|
// all the rest are defined the same way. Although the 'for' loops
|
|
31996
32074
|
// are similar, they are repeated inside each if-else conditional
|
|
31997
32075
|
// for max performance.
|
|
31998
|
-
let runTurbo = turboThreshold &&
|
|
32076
|
+
let runTurbo = (turboThreshold &&
|
|
32077
|
+
!options.relativeXValue &&
|
|
32078
|
+
dataLength > turboThreshold);
|
|
31999
32079
|
if (runTurbo) {
|
|
32000
32080
|
const firstPoint = series.getFirstValidPoint(data), lastPoint = series.getFirstValidPoint(data, dataLength - 1, -1), isShortArray = (a) => Boolean(Series_isArray(a) && (keys || Series_isNumber(a[0])));
|
|
32001
32081
|
// Assume all points are numbers
|
|
@@ -33340,18 +33420,26 @@ class Series {
|
|
|
33340
33420
|
horAxis = vertAxis;
|
|
33341
33421
|
vertAxis = this.xAxis;
|
|
33342
33422
|
}
|
|
33343
|
-
|
|
33423
|
+
const params = {
|
|
33424
|
+
scale: 1,
|
|
33344
33425
|
translateX: horAxis ? horAxis.left : chart.plotLeft,
|
|
33345
33426
|
translateY: vertAxis ? vertAxis.top : chart.plotTop,
|
|
33427
|
+
name
|
|
33428
|
+
};
|
|
33429
|
+
Series_fireEvent(this, 'getPlotBox', params);
|
|
33430
|
+
const { scale, translateX, translateY } = params;
|
|
33431
|
+
return {
|
|
33432
|
+
translateX,
|
|
33433
|
+
translateY,
|
|
33346
33434
|
rotation: inverted ? 90 : 0,
|
|
33347
33435
|
rotationOriginX: inverted ?
|
|
33348
|
-
(horAxis.len - vertAxis.len) / 2 :
|
|
33436
|
+
scale * (horAxis.len - vertAxis.len) / 2 :
|
|
33349
33437
|
0,
|
|
33350
33438
|
rotationOriginY: inverted ?
|
|
33351
|
-
(horAxis.len + vertAxis.len) / 2 :
|
|
33439
|
+
scale * (horAxis.len + vertAxis.len) / 2 :
|
|
33352
33440
|
0,
|
|
33353
|
-
scaleX: inverted ? -
|
|
33354
|
-
scaleY:
|
|
33441
|
+
scaleX: inverted ? -scale : scale, // #1623
|
|
33442
|
+
scaleY: scale
|
|
33355
33443
|
};
|
|
33356
33444
|
}
|
|
33357
33445
|
/**
|
|
@@ -33971,7 +34059,7 @@ class Series {
|
|
|
33971
34059
|
oldOptions.type ||
|
|
33972
34060
|
chart.options.chart.type);
|
|
33973
34061
|
const keepPoints = !(
|
|
33974
|
-
// Indicators
|
|
34062
|
+
// Indicators etc recalculate the data. It should be
|
|
33975
34063
|
// possible to omit this.
|
|
33976
34064
|
this.hasDerivedData ||
|
|
33977
34065
|
// New type requires new point classes
|
|
@@ -35181,16 +35269,14 @@ class Legend {
|
|
|
35181
35269
|
* The item to remove
|
|
35182
35270
|
*/
|
|
35183
35271
|
destroyItem(item) {
|
|
35184
|
-
const
|
|
35272
|
+
const legendItem = item.legendItem || {};
|
|
35185
35273
|
// Destroy SVG elements
|
|
35186
35274
|
for (const key of ['group', 'label', 'line', 'symbol']) {
|
|
35187
35275
|
if (legendItem[key]) {
|
|
35188
35276
|
legendItem[key] = legendItem[key].destroy();
|
|
35189
35277
|
}
|
|
35190
35278
|
}
|
|
35191
|
-
|
|
35192
|
-
Legend_discardElement(checkbox);
|
|
35193
|
-
}
|
|
35279
|
+
item.checkbox = Legend_discardElement(item.checkbox);
|
|
35194
35280
|
item.legendItem = void 0;
|
|
35195
35281
|
}
|
|
35196
35282
|
/**
|
|
@@ -35519,13 +35605,13 @@ class Legend {
|
|
|
35519
35605
|
/(rtv|rm|rbv)/,
|
|
35520
35606
|
/(rbh|cb|lbh)/,
|
|
35521
35607
|
/(lbv|lm|ltv)/
|
|
35522
|
-
]).forEach(
|
|
35608
|
+
]).forEach((alignments, side) => {
|
|
35523
35609
|
if (alignments.test(alignment) && !Legend_defined(margin[side])) {
|
|
35524
35610
|
// Now we have detected on which side of the chart we should
|
|
35525
35611
|
// reserve space for the legend
|
|
35526
35612
|
chart[marginNames[side]] = Math.max(chart[marginNames[side]], (chart.legend[(side + 1) % 2 ? 'legendHeight' : 'legendWidth'] +
|
|
35527
|
-
[1, -1, -1, 1][side] * options[(side % 2) ? 'x' : 'y'] +
|
|
35528
|
-
|
|
35613
|
+
[1, -1, -1, 1][side] * (options[(side % 2) ? 'x' : 'y']) +
|
|
35614
|
+
(options.margin ?? 12) +
|
|
35529
35615
|
spacing[side] +
|
|
35530
35616
|
(chart.titleOffset[side] || 0)));
|
|
35531
35617
|
}
|
|
@@ -36139,6 +36225,9 @@ class Legend {
|
|
|
36139
36225
|
*/ /**
|
|
36140
36226
|
* @name Highcharts.LegendItemObject#symbol
|
|
36141
36227
|
* @type {Highcharts.SVGElement|undefined}
|
|
36228
|
+
*/ /**
|
|
36229
|
+
* @name Highcharts.LegendItemObject#label
|
|
36230
|
+
* @type {Highcharts.SVGElement|undefined}
|
|
36142
36231
|
*/
|
|
36143
36232
|
/**
|
|
36144
36233
|
* Gets fired when the legend item is clicked. The default
|
|
@@ -37485,8 +37574,8 @@ class Chart {
|
|
|
37485
37574
|
getAxisMargins() {
|
|
37486
37575
|
const chart = this,
|
|
37487
37576
|
// [top, right, bottom, left]
|
|
37488
|
-
axisOffset = chart.axisOffset = [0, 0, 0, 0], colorAxis = chart.colorAxis, margin = chart.margin, getOffset =
|
|
37489
|
-
axes.forEach(
|
|
37577
|
+
axisOffset = chart.axisOffset = [0, 0, 0, 0], colorAxis = chart.colorAxis, margin = chart.margin, getOffset = (axes) => {
|
|
37578
|
+
axes.forEach((axis) => {
|
|
37490
37579
|
if (axis.visible) {
|
|
37491
37580
|
axis.getOffset();
|
|
37492
37581
|
}
|
|
@@ -37500,9 +37589,9 @@ class Chart {
|
|
|
37500
37589
|
getOffset(colorAxis);
|
|
37501
37590
|
}
|
|
37502
37591
|
// Add the axis offsets
|
|
37503
|
-
Chart_marginNames.forEach(
|
|
37592
|
+
Chart_marginNames.forEach((marginName, side) => {
|
|
37504
37593
|
if (!Chart_defined(margin[side])) {
|
|
37505
|
-
chart[
|
|
37594
|
+
chart[marginName] += axisOffset[side];
|
|
37506
37595
|
}
|
|
37507
37596
|
});
|
|
37508
37597
|
chart.setChartSize();
|
|
@@ -37543,7 +37632,7 @@ class Chart {
|
|
|
37543
37632
|
delete chart.pointer?.chartPosition;
|
|
37544
37633
|
// Width and height checks for display:none. Target is doc in Opera
|
|
37545
37634
|
// and win in Firefox, Chrome and IE9.
|
|
37546
|
-
if (!chart.isPrinting &&
|
|
37635
|
+
if (!chart.exporting?.isPrinting &&
|
|
37547
37636
|
!chart.isResizing &&
|
|
37548
37637
|
oldBox &&
|
|
37549
37638
|
// When fired by resize observer inside hidden container
|
|
@@ -37757,21 +37846,22 @@ class Chart {
|
|
|
37757
37846
|
Chart_fireEvent(this, 'resetMargins');
|
|
37758
37847
|
const chart = this, chartOptions = chart.options.chart, plotBorderWidth = chartOptions.plotBorderWidth || 0, halfWidth = Math.round(plotBorderWidth) / 2;
|
|
37759
37848
|
// Create margin and spacing array
|
|
37760
|
-
['margin', 'spacing'].forEach(
|
|
37849
|
+
['margin', 'spacing'].forEach((target) => {
|
|
37761
37850
|
const value = chartOptions[target], values = Chart_isObject(value) ? value : [value, value, value, value];
|
|
37762
37851
|
[
|
|
37763
37852
|
'Top',
|
|
37764
37853
|
'Right',
|
|
37765
37854
|
'Bottom',
|
|
37766
37855
|
'Left'
|
|
37767
|
-
].forEach(
|
|
37768
|
-
chart[target][side] =
|
|
37856
|
+
].forEach((sideName, side) => {
|
|
37857
|
+
chart[target][side] = (chartOptions[`${target}${sideName}`] ??
|
|
37858
|
+
values[side]);
|
|
37769
37859
|
});
|
|
37770
37860
|
});
|
|
37771
37861
|
// Set margin names like chart.plotTop, chart.plotLeft,
|
|
37772
37862
|
// chart.marginRight, chart.marginBottom.
|
|
37773
|
-
Chart_marginNames.forEach(
|
|
37774
|
-
chart[
|
|
37863
|
+
Chart_marginNames.forEach((marginName, side) => {
|
|
37864
|
+
chart[marginName] = chart.margin[side] ?? chart.spacing[side];
|
|
37775
37865
|
});
|
|
37776
37866
|
chart.axisOffset = [0, 0, 0, 0]; // Top, right, bottom, left
|
|
37777
37867
|
chart.clipOffset = [
|
|
@@ -38082,12 +38172,13 @@ class Chart {
|
|
|
38082
38172
|
renderAxes(colorAxis);
|
|
38083
38173
|
}
|
|
38084
38174
|
// The series
|
|
38085
|
-
|
|
38086
|
-
|
|
38087
|
-
|
|
38088
|
-
|
|
38089
|
-
|
|
38090
|
-
|
|
38175
|
+
chart.seriesGroup || (chart.seriesGroup = renderer.g('series-group')
|
|
38176
|
+
.attr({ zIndex: 3 })
|
|
38177
|
+
.shadow(chart.options.chart.seriesGroupShadow)
|
|
38178
|
+
.add());
|
|
38179
|
+
chart.dataLabelsGroup || (chart.dataLabelsGroup = renderer.g('datalabels-group')
|
|
38180
|
+
.attr({ zIndex: 6 })
|
|
38181
|
+
.add());
|
|
38091
38182
|
chart.renderSeries();
|
|
38092
38183
|
// Credits
|
|
38093
38184
|
chart.addCredits();
|
|
@@ -38919,9 +39010,10 @@ class Chart {
|
|
|
38919
39010
|
*/
|
|
38920
39011
|
transform(params) {
|
|
38921
39012
|
const { axes = this.axes, event, from = {}, reset, selection, to = {}, trigger } = params, { inverted, time } = this;
|
|
38922
|
-
let hasZoomed = false, displayButton, isAnyAxisPanning;
|
|
38923
39013
|
// Remove active points for shared tooltip
|
|
38924
39014
|
this.hoverPoints?.forEach((point) => point.setState());
|
|
39015
|
+
Chart_fireEvent(this, 'transform', params);
|
|
39016
|
+
let hasZoomed = params.hasZoomed || false, displayButton, isAnyAxisPanning;
|
|
38925
39017
|
for (const axis of axes) {
|
|
38926
39018
|
const { horiz, len, minPointOffset = 0, options, reversed } = axis, wh = horiz ? 'width' : 'height', xy = horiz ? 'x' : 'y', toLength = Chart_pick(to[wh], axis.len), fromLength = Chart_pick(from[wh], axis.len),
|
|
38927
39019
|
// If fingers pinched very close on this axis, treat as pan
|
|
@@ -38937,19 +39029,19 @@ class Chart {
|
|
|
38937
39029
|
if (!reset && (fromCenter < 0 || fromCenter > axis.len)) {
|
|
38938
39030
|
continue;
|
|
38939
39031
|
}
|
|
38940
|
-
|
|
38941
|
-
|
|
38942
|
-
|
|
38943
|
-
|
|
38944
|
-
(
|
|
38945
|
-
|
|
38946
|
-
|
|
38947
|
-
|
|
38948
|
-
|
|
38949
|
-
|
|
38950
|
-
|
|
38951
|
-
|
|
38952
|
-
|
|
39032
|
+
// Adjust offset to ensure selection zoom triggers correctly
|
|
39033
|
+
// (#22945)
|
|
39034
|
+
const offset = (axis.chart.polar || axis.isOrdinal) ?
|
|
39035
|
+
0 :
|
|
39036
|
+
(minPointOffset * pointRangeDirection || 0), eventMin = axis.toValue(minPx, true), eventMax = axis.toValue(minPx + len / scale, true);
|
|
39037
|
+
let newMin = eventMin + offset, newMax = eventMax - offset, allExtremes = axis.allExtremes;
|
|
39038
|
+
if (selection) {
|
|
39039
|
+
selection[axis.coll].push({
|
|
39040
|
+
axis,
|
|
39041
|
+
min: Math.min(eventMin, eventMax),
|
|
39042
|
+
max: Math.max(eventMin, eventMax)
|
|
39043
|
+
});
|
|
39044
|
+
}
|
|
38953
39045
|
if (newMin > newMax) {
|
|
38954
39046
|
[newMin, newMax] = [newMax, newMin];
|
|
38955
39047
|
}
|
|
@@ -38989,10 +39081,7 @@ class Chart {
|
|
|
38989
39081
|
// It is not necessary to calculate extremes on ordinal axis,
|
|
38990
39082
|
// because they are already calculated, so we don't want to override
|
|
38991
39083
|
// them.
|
|
38992
|
-
if (!axis.isOrdinal ||
|
|
38993
|
-
axis.options.overscroll || // #21316
|
|
38994
|
-
scale !== 1 ||
|
|
38995
|
-
reset) {
|
|
39084
|
+
if (!axis.isOrdinal || scale !== 1 || reset) {
|
|
38996
39085
|
// If the new range spills over, either to the min or max,
|
|
38997
39086
|
// adjust it.
|
|
38998
39087
|
if (newMin < floor) {
|
|
@@ -39037,6 +39126,13 @@ class Chart {
|
|
|
39037
39126
|
}
|
|
39038
39127
|
hasZoomed = true;
|
|
39039
39128
|
}
|
|
39129
|
+
// Show the resetZoom button for non-cartesian series,
|
|
39130
|
+
// except when triggered by mouse wheel zoom
|
|
39131
|
+
if (!this.hasCartesianSeries &&
|
|
39132
|
+
!reset &&
|
|
39133
|
+
trigger !== 'mousewheel') {
|
|
39134
|
+
displayButton = true;
|
|
39135
|
+
}
|
|
39040
39136
|
if (event) {
|
|
39041
39137
|
this[horiz ? 'mouseDownX' : 'mouseDownY'] =
|
|
39042
39138
|
event[horiz ? 'chartX' : 'chartY'];
|
|
@@ -39328,29 +39424,33 @@ class ScrollablePlotArea {
|
|
|
39328
39424
|
static afterSetSize(chart, e) {
|
|
39329
39425
|
const { minWidth, minHeight } = chart.options.chart.scrollablePlotArea || {}, { clipBox, plotBox, inverted, renderer } = chart;
|
|
39330
39426
|
let scrollablePixelsX, scrollablePixelsY, recalculateHoriz;
|
|
39331
|
-
|
|
39332
|
-
|
|
39333
|
-
|
|
39334
|
-
|
|
39335
|
-
|
|
39336
|
-
|
|
39337
|
-
|
|
39338
|
-
|
|
39339
|
-
|
|
39340
|
-
|
|
39341
|
-
|
|
39342
|
-
|
|
39343
|
-
|
|
39344
|
-
|
|
39345
|
-
|
|
39346
|
-
|
|
39347
|
-
|
|
39348
|
-
|
|
39349
|
-
|
|
39350
|
-
|
|
39351
|
-
|
|
39352
|
-
|
|
39353
|
-
|
|
39427
|
+
// Skip for exporting
|
|
39428
|
+
if (renderer.forExport) {
|
|
39429
|
+
return;
|
|
39430
|
+
}
|
|
39431
|
+
// The amount of pixels to scroll, the difference between chart width
|
|
39432
|
+
// and scrollable width
|
|
39433
|
+
if (minWidth) {
|
|
39434
|
+
chart.scrollablePixelsX = scrollablePixelsX = Math.max(0, minWidth - chart.chartWidth);
|
|
39435
|
+
if (scrollablePixelsX) {
|
|
39436
|
+
chart.scrollablePlotBox = ScrollablePlotArea_merge(chart.plotBox);
|
|
39437
|
+
plotBox.width = chart.plotWidth += scrollablePixelsX;
|
|
39438
|
+
clipBox[inverted ? 'height' : 'width'] += scrollablePixelsX;
|
|
39439
|
+
recalculateHoriz = true;
|
|
39440
|
+
}
|
|
39441
|
+
// Currently we can only do either X or Y
|
|
39442
|
+
}
|
|
39443
|
+
else if (minHeight) {
|
|
39444
|
+
chart.scrollablePixelsY = scrollablePixelsY = Math.max(0, minHeight - chart.chartHeight);
|
|
39445
|
+
if (ScrollablePlotArea_defined(scrollablePixelsY)) {
|
|
39446
|
+
chart.scrollablePlotBox = ScrollablePlotArea_merge(chart.plotBox);
|
|
39447
|
+
plotBox.height = chart.plotHeight += scrollablePixelsY;
|
|
39448
|
+
clipBox[inverted ? 'width' : 'height'] += scrollablePixelsY;
|
|
39449
|
+
recalculateHoriz = false;
|
|
39450
|
+
}
|
|
39451
|
+
}
|
|
39452
|
+
if (ScrollablePlotArea_defined(recalculateHoriz)) {
|
|
39453
|
+
if (!e.skipAxes) {
|
|
39354
39454
|
for (const axis of chart.axes) {
|
|
39355
39455
|
// Apply the corrected plot size to the axes of the other
|
|
39356
39456
|
// orientation than the scrolling direction
|
|
@@ -39363,6 +39463,10 @@ class ScrollablePlotArea {
|
|
|
39363
39463
|
}
|
|
39364
39464
|
}
|
|
39365
39465
|
}
|
|
39466
|
+
else {
|
|
39467
|
+
// Clear (potential) old box when a new one was not set
|
|
39468
|
+
delete chart.scrollablePlotBox;
|
|
39469
|
+
}
|
|
39366
39470
|
}
|
|
39367
39471
|
constructor(chart) {
|
|
39368
39472
|
const chartOptions = chart.options.chart, Renderer = Renderer_RendererRegistry.getRendererType(), scrollableOptions = chartOptions.scrollablePlotArea || {}, moveFixedElements = this.moveFixedElements.bind(this), styles = {
|
|
@@ -39946,7 +40050,6 @@ class StackItem {
|
|
|
39946
40050
|
|
|
39947
40051
|
const { getDeferredAnimation: StackingAxis_getDeferredAnimation } = AnimationUtilities;
|
|
39948
40052
|
|
|
39949
|
-
|
|
39950
40053
|
const { series: { prototype: seriesProto } } = Series_SeriesRegistry;
|
|
39951
40054
|
|
|
39952
40055
|
|
|
@@ -42149,8 +42252,7 @@ const ColumnSeriesDefaults = {
|
|
|
42149
42252
|
* @apioption plotOptions.column.states.hover.color
|
|
42150
42253
|
*/
|
|
42151
42254
|
/**
|
|
42152
|
-
* How much to brighten the point on interaction.
|
|
42153
|
-
* main color to be defined in hex or rgb(a) format.
|
|
42255
|
+
* How much to brighten the point on interaction.
|
|
42154
42256
|
*
|
|
42155
42257
|
* In styled mode, the hover brightening is by default replaced
|
|
42156
42258
|
* with a fill-opacity set in the `.highcharts-point:hover`
|
|
@@ -43269,7 +43371,7 @@ var DataLabel;
|
|
|
43269
43371
|
*/
|
|
43270
43372
|
function initDataLabelsGroup() {
|
|
43271
43373
|
return this.plotGroup('dataLabelsGroup', 'data-labels', this.hasRendered ? 'inherit' : 'hidden', // #5133, #10220
|
|
43272
|
-
this.options.dataLabels.zIndex || 6);
|
|
43374
|
+
this.options.dataLabels.zIndex || 6, this.chart.dataLabelsGroup);
|
|
43273
43375
|
}
|
|
43274
43376
|
/**
|
|
43275
43377
|
* Init the data labels with the correct animation
|
|
@@ -43407,7 +43509,9 @@ var DataLabel;
|
|
|
43407
43509
|
// Individual labels are disabled if the are explicitly
|
|
43408
43510
|
// disabled in the point options, or if they fall outside
|
|
43409
43511
|
// the plot area.
|
|
43410
|
-
if (labelEnabled &&
|
|
43512
|
+
if (labelEnabled &&
|
|
43513
|
+
DataLabel_defined(labelText) &&
|
|
43514
|
+
labelText !== '') {
|
|
43411
43515
|
if (!dataLabel) {
|
|
43412
43516
|
// Create new label element
|
|
43413
43517
|
dataLabel = renderer.label(labelText, 0, 0, labelOptions.shape, void 0, void 0, labelOptions.useHTML, void 0, 'data-label');
|
|
@@ -45138,8 +45242,7 @@ const PieSeriesDefaults = {
|
|
|
45138
45242
|
*/
|
|
45139
45243
|
hover: {
|
|
45140
45244
|
/**
|
|
45141
|
-
* How much to brighten the point on interaction.
|
|
45142
|
-
* main color to be defined in hex or rgb(a) format.
|
|
45245
|
+
* How much to brighten the point on interaction.
|
|
45143
45246
|
*
|
|
45144
45247
|
* In styled mode, the hover brightness is by default replaced
|
|
45145
45248
|
* by a fill-opacity given in the `.highcharts-point-hover`
|
|
@@ -45410,11 +45513,11 @@ class PieSeries extends Series_Series {
|
|
|
45410
45513
|
}
|
|
45411
45514
|
/**
|
|
45412
45515
|
* Define hasData function for non-cartesian series. Returns true if the
|
|
45413
|
-
* series has
|
|
45516
|
+
* series has at least one visible point (#23235)
|
|
45414
45517
|
* @private
|
|
45415
45518
|
*/
|
|
45416
45519
|
hasData() {
|
|
45417
|
-
return
|
|
45520
|
+
return this.points.some((point) => point.visible);
|
|
45418
45521
|
}
|
|
45419
45522
|
/**
|
|
45420
45523
|
* Draw the data points
|
|
@@ -45635,7 +45738,7 @@ const { distribute: PieDataLabel_distribute } = Renderer_RendererUtilities;
|
|
|
45635
45738
|
|
|
45636
45739
|
const { series: PieDataLabel_Series } = Series_SeriesRegistry;
|
|
45637
45740
|
|
|
45638
|
-
const { arrayMax: PieDataLabel_arrayMax, clamp: PieDataLabel_clamp, defined: PieDataLabel_defined, pick: PieDataLabel_pick, pushUnique: PieDataLabel_pushUnique, relativeLength: PieDataLabel_relativeLength } = Core_Utilities;
|
|
45741
|
+
const { arrayMax: PieDataLabel_arrayMax, clamp: PieDataLabel_clamp, defined: PieDataLabel_defined, isNumber: PieDataLabel_isNumber, pick: PieDataLabel_pick, pushUnique: PieDataLabel_pushUnique, relativeLength: PieDataLabel_relativeLength } = Core_Utilities;
|
|
45639
45742
|
/* *
|
|
45640
45743
|
*
|
|
45641
45744
|
* Composition
|
|
@@ -45987,7 +46090,7 @@ var PieDataLabel_ColumnDataLabel;
|
|
|
45987
46090
|
// #8864: every connector can have individual options
|
|
45988
46091
|
const { connectorColor, connectorWidth = 1 } = (dataLabel.options || {}), labelPosition = dataLabel.dataLabelPosition;
|
|
45989
46092
|
// Draw the connector
|
|
45990
|
-
if (connectorWidth) {
|
|
46093
|
+
if (PieDataLabel_isNumber(connectorWidth)) {
|
|
45991
46094
|
let isNew;
|
|
45992
46095
|
connector = dataLabel.connector;
|
|
45993
46096
|
if (labelPosition && labelPosition.distance > 0) {
|
|
@@ -46612,7 +46715,7 @@ function applyBorderRadius(path, i, r) {
|
|
|
46612
46715
|
* @private
|
|
46613
46716
|
*/
|
|
46614
46717
|
function BorderRadius_arc(x, y, w, h, options = {}) {
|
|
46615
|
-
const path = oldArc(x, y, w, h, options), { innerR = 0, r = w, start = 0, end = 0 } = options;
|
|
46718
|
+
const path = oldArc(x, y, w, h, options), { brStart = true, brEnd = true, innerR = 0, r = w, start = 0, end = 0 } = options;
|
|
46616
46719
|
if (options.open || !options.borderRadius) {
|
|
46617
46720
|
return path;
|
|
46618
46721
|
}
|
|
@@ -46629,6 +46732,10 @@ function BorderRadius_arc(x, y, w, h, options = {}) {
|
|
|
46629
46732
|
// splicing in arc segments.
|
|
46630
46733
|
let i = path.length - 1;
|
|
46631
46734
|
while (i--) {
|
|
46735
|
+
if ((!brStart && (i === 0 || i === 3)) ||
|
|
46736
|
+
(!brEnd && (i === 1 || i === 2))) {
|
|
46737
|
+
continue;
|
|
46738
|
+
}
|
|
46632
46739
|
applyBorderRadius(path, i, i > 1 ? innerBorderRadius : borderRadius);
|
|
46633
46740
|
}
|
|
46634
46741
|
return path;
|
|
@@ -46703,7 +46810,7 @@ function BorderRadius_compose(SeriesClass, SVGElementClass, SVGRendererClass) {
|
|
|
46703
46810
|
order: 9
|
|
46704
46811
|
});
|
|
46705
46812
|
BorderRadius_addEvent(PieSeriesClass, 'afterTranslate', pieSeriesOnAfterTranslate);
|
|
46706
|
-
SVGElementClass.symbolCustomAttribs.push('borderRadius', 'brBoxHeight', 'brBoxY');
|
|
46813
|
+
SVGElementClass.symbolCustomAttribs.push('borderRadius', 'brBoxHeight', 'brBoxY', 'brEnd', 'brStart');
|
|
46707
46814
|
oldArc = symbols.arc;
|
|
46708
46815
|
oldRoundedRect = symbols.roundedRect;
|
|
46709
46816
|
symbols.arc = BorderRadius_arc;
|
|
@@ -47129,7 +47236,14 @@ var Responsive;
|
|
|
47129
47236
|
(''); // Keeps doclets above in JS file
|
|
47130
47237
|
|
|
47131
47238
|
;// ./code/es-modules/masters/highcharts.src.js
|
|
47132
|
-
|
|
47239
|
+
/**
|
|
47240
|
+
* @license Highcharts JS v12.4.0 (2025-09-04)
|
|
47241
|
+
* @module highcharts/highcharts
|
|
47242
|
+
*
|
|
47243
|
+
* (c) 2009-2025 Highsoft AS
|
|
47244
|
+
*
|
|
47245
|
+
* License: www.highcharts.com/license
|
|
47246
|
+
*/
|
|
47133
47247
|
|
|
47134
47248
|
|
|
47135
47249
|
|
|
@@ -48203,7 +48317,7 @@ const StockUtilities = {
|
|
|
48203
48317
|
* */
|
|
48204
48318
|
|
|
48205
48319
|
|
|
48206
|
-
const {
|
|
48320
|
+
const { defaultOptions: NavigatorComposition_defaultOptions } = Defaults;
|
|
48207
48321
|
|
|
48208
48322
|
const { composed: NavigatorComposition_composed } = Core_Globals;
|
|
48209
48323
|
|
|
@@ -48233,8 +48347,8 @@ function NavigatorComposition_compose(ChartClass, AxisClass, SeriesClass) {
|
|
|
48233
48347
|
if (NavigatorComposition_pushUnique(NavigatorComposition_composed, 'Navigator')) {
|
|
48234
48348
|
ChartClass.prototype.setFixedRange = NavigatorComposition_setFixedRange;
|
|
48235
48349
|
NavigatorComposition_extend(getRendererType().prototype.symbols, Navigator_NavigatorSymbols);
|
|
48350
|
+
NavigatorComposition_extend(NavigatorComposition_defaultOptions, { navigator: Navigator_NavigatorDefaults });
|
|
48236
48351
|
NavigatorComposition_addEvent(SeriesClass, 'afterUpdate', onSeriesAfterUpdate);
|
|
48237
|
-
NavigatorComposition_setOptions({ navigator: Navigator_NavigatorDefaults });
|
|
48238
48352
|
}
|
|
48239
48353
|
}
|
|
48240
48354
|
/**
|
|
@@ -48270,7 +48384,7 @@ const NavigatorComposition = {
|
|
|
48270
48384
|
|
|
48271
48385
|
const { composed: ScrollbarAxis_composed } = Core_Globals;
|
|
48272
48386
|
|
|
48273
|
-
const { addEvent: ScrollbarAxis_addEvent, defined: ScrollbarAxis_defined, pick: ScrollbarAxis_pick, pushUnique: ScrollbarAxis_pushUnique } = Core_Utilities;
|
|
48387
|
+
const { addEvent: ScrollbarAxis_addEvent, correctFloat: ScrollbarAxis_correctFloat, defined: ScrollbarAxis_defined, pick: ScrollbarAxis_pick, pushUnique: ScrollbarAxis_pushUnique } = Core_Utilities;
|
|
48274
48388
|
/* *
|
|
48275
48389
|
*
|
|
48276
48390
|
* Composition
|
|
@@ -48317,9 +48431,10 @@ var ScrollbarAxis;
|
|
|
48317
48431
|
axisMin,
|
|
48318
48432
|
axisMax,
|
|
48319
48433
|
scrollMin: ScrollbarAxis_defined(axis.dataMin) ?
|
|
48320
|
-
Math.min(axisMin, axis.min, axis.dataMin,
|
|
48321
|
-
scrollMax: ScrollbarAxis_defined(axis.dataMax) ?
|
|
48322
|
-
Math.max(axisMax, axis.max, axis.dataMax,
|
|
48434
|
+
Math.min(axisMin, axis.min ?? Infinity, axis.dataMin, axis.threshold ?? Infinity) : axisMin,
|
|
48435
|
+
scrollMax: axis.treeGrid?.adjustedMax ?? (ScrollbarAxis_defined(axis.dataMax) ?
|
|
48436
|
+
Math.max(axisMax, axis.max ?? -Infinity, axis.dataMax, axis.threshold ?? -Infinity) :
|
|
48437
|
+
axisMax)
|
|
48323
48438
|
};
|
|
48324
48439
|
}
|
|
48325
48440
|
/**
|
|
@@ -48347,7 +48462,7 @@ var ScrollbarAxis;
|
|
|
48347
48462
|
axis.options.startOnTick = axis.options.endOnTick = false;
|
|
48348
48463
|
axis.scrollbar = new Scrollbar(axis.chart.renderer, axis.options.scrollbar, axis.chart);
|
|
48349
48464
|
ScrollbarAxis_addEvent(axis.scrollbar, 'changed', function (e) {
|
|
48350
|
-
const { axisMin, axisMax, scrollMin: unitedMin, scrollMax: unitedMax } = getExtremes(axis),
|
|
48465
|
+
const { axisMin, axisMax, scrollMin: unitedMin, scrollMax: unitedMax } = getExtremes(axis), minPX = axis.toPixels(unitedMin), maxPX = axis.toPixels(unitedMax), rangePX = maxPX - minPX;
|
|
48351
48466
|
let to, from;
|
|
48352
48467
|
// #12834, scroll when show/hide series, wrong extremes
|
|
48353
48468
|
if (!ScrollbarAxis_defined(axisMin) || !ScrollbarAxis_defined(axisMax)) {
|
|
@@ -48355,20 +48470,20 @@ var ScrollbarAxis;
|
|
|
48355
48470
|
}
|
|
48356
48471
|
if ((axis.horiz && !axis.reversed) ||
|
|
48357
48472
|
(!axis.horiz && axis.reversed)) {
|
|
48358
|
-
to =
|
|
48359
|
-
from = unitedMin +
|
|
48473
|
+
to = Math.min(unitedMax, axis.toValue(minPX + rangePX * this.to));
|
|
48474
|
+
from = Math.max(unitedMin, axis.toValue(minPX + rangePX * this.from));
|
|
48360
48475
|
}
|
|
48361
48476
|
else {
|
|
48362
48477
|
// Y-values in browser are reversed, but this also
|
|
48363
48478
|
// applies for reversed horizontal axis:
|
|
48364
|
-
to =
|
|
48365
|
-
from = unitedMin +
|
|
48479
|
+
to = Math.min(unitedMax, axis.toValue(minPX + rangePX * (1 - this.from)));
|
|
48480
|
+
from = Math.max(unitedMin, axis.toValue(minPX + rangePX * (1 - this.to)));
|
|
48366
48481
|
}
|
|
48367
48482
|
if (this.shouldUpdateExtremes(e.DOMType)) {
|
|
48368
48483
|
// #17977, set animation to undefined instead of true
|
|
48369
48484
|
const animate = e.DOMType === 'mousemove' ||
|
|
48370
48485
|
e.DOMType === 'touchmove' ? false : void 0;
|
|
48371
|
-
axis.setExtremes(from, to, true, animate, e);
|
|
48486
|
+
axis.setExtremes(ScrollbarAxis_correctFloat(from), ScrollbarAxis_correctFloat(to), true, animate, e);
|
|
48372
48487
|
}
|
|
48373
48488
|
else {
|
|
48374
48489
|
// When live redraw is disabled, don't change extremes
|
|
@@ -48383,7 +48498,7 @@ var ScrollbarAxis;
|
|
|
48383
48498
|
* @private
|
|
48384
48499
|
*/
|
|
48385
48500
|
function onAxisAfterRender() {
|
|
48386
|
-
const axis = this, { scrollMin, scrollMax } = getExtremes(axis), scrollbar = axis.scrollbar, offset = (axis.axisTitleMargin + (axis.titleOffset || 0)
|
|
48501
|
+
const axis = this, { scrollMin, scrollMax } = getExtremes(axis), scrollbar = axis.scrollbar, offset = (axis.axisTitleMargin || 0) + (axis.titleOffset || 0), scrollbarsOffsets = axis.chart.scrollbarsOffsets, axisMargin = axis.options.margin || 0;
|
|
48387
48502
|
let offsetsIndex, from, to;
|
|
48388
48503
|
if (scrollbar && scrollbarsOffsets) {
|
|
48389
48504
|
if (axis.horiz) {
|
|
@@ -48431,8 +48546,9 @@ var ScrollbarAxis;
|
|
|
48431
48546
|
isNaN(scrollMax) ||
|
|
48432
48547
|
!ScrollbarAxis_defined(axis.min) ||
|
|
48433
48548
|
!ScrollbarAxis_defined(axis.max) ||
|
|
48434
|
-
axis.dataMin
|
|
48435
|
-
|
|
48549
|
+
(ScrollbarAxis_defined(axis.dataMin) && // #23335
|
|
48550
|
+
axis.dataMin === axis.dataMax // #10733
|
|
48551
|
+
)) {
|
|
48436
48552
|
// Default action: when data extremes are the same or there is
|
|
48437
48553
|
// not extremes on the axis, but scrollbar exists, make it
|
|
48438
48554
|
// full size
|
|
@@ -48449,10 +48565,10 @@ var ScrollbarAxis;
|
|
|
48449
48565
|
scrollbar.setRange(from, to);
|
|
48450
48566
|
}
|
|
48451
48567
|
else {
|
|
48452
|
-
from = ((axis.min - scrollMin) /
|
|
48453
|
-
(scrollMax - scrollMin));
|
|
48454
|
-
to = ((axis.max - scrollMin) /
|
|
48455
|
-
(scrollMax - scrollMin));
|
|
48568
|
+
from = (axis.toPixels(axis.min) - axis.toPixels(scrollMin)) /
|
|
48569
|
+
(axis.toPixels(scrollMax) - axis.toPixels(scrollMin));
|
|
48570
|
+
to = (axis.toPixels(axis.max) - axis.toPixels(scrollMin)) /
|
|
48571
|
+
(axis.toPixels(scrollMax) - axis.toPixels(scrollMin));
|
|
48456
48572
|
if ((axis.horiz && !axis.reversed) ||
|
|
48457
48573
|
(!axis.horiz && axis.reversed)) {
|
|
48458
48574
|
scrollbar.setRange(from, to);
|
|
@@ -48709,10 +48825,11 @@ const ScrollbarDefaults = {
|
|
|
48709
48825
|
|
|
48710
48826
|
const { defaultOptions: Scrollbar_defaultOptions } = Defaults;
|
|
48711
48827
|
|
|
48828
|
+
const { composed: Scrollbar_composed } = Core_Globals;
|
|
48712
48829
|
|
|
48713
48830
|
|
|
48714
48831
|
|
|
48715
|
-
const { addEvent: Scrollbar_addEvent, correctFloat: Scrollbar_correctFloat, crisp: Scrollbar_crisp, defined: Scrollbar_defined, destroyObjectProperties: Scrollbar_destroyObjectProperties, fireEvent: Scrollbar_fireEvent, merge: Scrollbar_merge, pick: Scrollbar_pick, removeEvent: Scrollbar_removeEvent } = Core_Utilities;
|
|
48832
|
+
const { addEvent: Scrollbar_addEvent, correctFloat: Scrollbar_correctFloat, crisp: Scrollbar_crisp, defined: Scrollbar_defined, destroyObjectProperties: Scrollbar_destroyObjectProperties, extend: Scrollbar_extend, fireEvent: Scrollbar_fireEvent, merge: Scrollbar_merge, pick: Scrollbar_pick, pushUnique: Scrollbar_pushUnique, removeEvent: Scrollbar_removeEvent } = Core_Utilities;
|
|
48716
48833
|
/* *
|
|
48717
48834
|
*
|
|
48718
48835
|
* Constants
|
|
@@ -48738,6 +48855,9 @@ class Scrollbar {
|
|
|
48738
48855
|
* */
|
|
48739
48856
|
static compose(AxisClass) {
|
|
48740
48857
|
Axis_ScrollbarAxis.compose(AxisClass, Scrollbar);
|
|
48858
|
+
if (Scrollbar_pushUnique(Scrollbar_composed, 'Scrollbar')) {
|
|
48859
|
+
Scrollbar_extend(Scrollbar_defaultOptions, { scrollbar: Scrollbar_ScrollbarDefaults });
|
|
48860
|
+
}
|
|
48741
48861
|
}
|
|
48742
48862
|
/**
|
|
48743
48863
|
* When we have vertical scrollbar, rifles and arrow in buttons should be
|
|
@@ -49344,12 +49464,6 @@ class Scrollbar {
|
|
|
49344
49464
|
*
|
|
49345
49465
|
* */
|
|
49346
49466
|
Scrollbar.defaultOptions = Scrollbar_ScrollbarDefaults;
|
|
49347
|
-
/* *
|
|
49348
|
-
*
|
|
49349
|
-
* Registry
|
|
49350
|
-
*
|
|
49351
|
-
* */
|
|
49352
|
-
Scrollbar_defaultOptions.scrollbar = Scrollbar_merge(true, Scrollbar.defaultOptions, Scrollbar_defaultOptions.scrollbar);
|
|
49353
49467
|
/* *
|
|
49354
49468
|
*
|
|
49355
49469
|
* Default Export
|
|
@@ -51253,7 +51367,7 @@ class StandaloneNavigator {
|
|
|
51253
51367
|
|
|
51254
51368
|
;// ./code/es-modules/masters/modules/navigator.src.js
|
|
51255
51369
|
/**
|
|
51256
|
-
* @license Highcharts JS v12.
|
|
51370
|
+
* @license Highcharts JS v12.4.0 (2025-09-04)
|
|
51257
51371
|
* @module highcharts/modules/navigator
|
|
51258
51372
|
* @requires highcharts
|
|
51259
51373
|
*
|
|
@@ -51274,15 +51388,7 @@ Navigator_NavigatorComposition.compose(navigator_src_G.Chart, navigator_src_G.Ax
|
|
|
51274
51388
|
/* harmony default export */ const navigator_src = ((/* unused pure expression or super */ null && (Highcharts)));
|
|
51275
51389
|
|
|
51276
51390
|
;// ./code/es-modules/masters/standalone-navigator.src.js
|
|
51277
|
-
|
|
51278
|
-
*
|
|
51279
|
-
* (c) 2010-2025 Mateusz Bernacik
|
|
51280
|
-
*
|
|
51281
|
-
* License: www.highcharts.com/license
|
|
51282
|
-
*
|
|
51283
|
-
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
|
|
51284
|
-
*
|
|
51285
|
-
* */
|
|
51391
|
+
|
|
51286
51392
|
|
|
51287
51393
|
|
|
51288
51394
|
|