highcharts 10.2.1 → 10.3.1
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/es-modules/Accessibility/Accessibility.js +1 -1
- package/es-modules/Accessibility/Components/InfoRegionsComponent.js +9 -6
- package/es-modules/Accessibility/Components/LegendComponent.js +36 -32
- package/es-modules/Accessibility/Components/RangeSelectorComponent.js +1 -1
- package/es-modules/Accessibility/Components/SeriesComponent/SeriesDescriber.js +16 -16
- package/es-modules/Accessibility/Options/LangDefaults.js +4 -0
- package/es-modules/Core/Axis/Axis.js +42 -32
- package/es-modules/Core/Axis/Axis3DComposition.js +501 -0
- package/es-modules/Core/Axis/Axis3DDefaults.js +130 -0
- package/es-modules/Core/Axis/AxisDefaults.js +20 -7
- package/es-modules/Core/Axis/Color/ColorAxis.js +46 -52
- package/es-modules/Core/Axis/Color/ColorAxisComposition.js +4 -2
- package/es-modules/Core/Axis/NavigatorAxisComposition.js +161 -0
- package/es-modules/Core/Axis/OrdinalAxis.js +2 -1
- package/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBand.js +1 -1
- package/es-modules/Core/Axis/RadialAxis.js +19 -5
- package/es-modules/Core/Axis/Tick.js +1 -1
- package/es-modules/Core/Axis/Tick3DComposition.js +71 -0
- package/es-modules/Core/Chart/Chart.js +16 -20
- package/es-modules/Core/Chart/Chart3D.js +4 -4
- package/es-modules/Core/Chart/ChartDefaults.js +33 -43
- package/es-modules/Core/Chart/GanttChart.js +1 -1
- package/es-modules/Core/Chart/MapChart.js +1 -1
- package/es-modules/Core/Chart/StockChart.js +11 -28
- package/es-modules/Core/{DefaultOptions.js → Defaults.js} +21 -37
- package/es-modules/Core/FormatUtilities.js +1 -1
- package/es-modules/Core/Globals.js +1 -1
- package/es-modules/Core/Legend/Legend.js +114 -110
- package/es-modules/Core/Legend/LegendSymbol.js +9 -6
- package/es-modules/Core/MSPointer.js +4 -2
- package/es-modules/Core/Pointer.js +125 -75
- package/es-modules/Core/Renderer/SVG/SVGElement.js +0 -3
- package/es-modules/Core/Renderer/SVG/SVGRenderer.js +28 -14
- package/es-modules/Core/Series/DataLabel.js +8 -5
- package/es-modules/Core/Series/Point.js +38 -22
- package/es-modules/Core/Series/Series.js +12 -9
- package/es-modules/Core/Series/SeriesDefaults.js +36 -24
- package/es-modules/Core/Series/SeriesRegistry.js +2 -2
- package/es-modules/Core/Time.js +6 -5
- package/es-modules/Core/Tooltip.js +6 -28
- package/es-modules/Core/Utilities.js +6 -8
- package/es-modules/Extensions/Annotations/Annotation.js +1 -1
- package/es-modules/Extensions/Annotations/AnnotationDefaults.js +13 -8
- package/es-modules/Extensions/Annotations/MockPoint.js +2 -1
- package/es-modules/Extensions/Annotations/NavigationBindings.js +4 -5
- package/es-modules/Extensions/Annotations/NavigationBindingsDefaults.js +1 -1
- package/es-modules/Extensions/Annotations/Popup/Popup.js +2 -2
- package/es-modules/Extensions/Annotations/Popup/PopupAnnotations.js +4 -4
- package/es-modules/Extensions/Annotations/Popup/PopupComposition.js +1 -1
- package/es-modules/Extensions/Boost/BoostSeries.js +11 -8
- package/es-modules/Extensions/Breadcrumbs.js +2 -2
- package/es-modules/Extensions/Data.js +2 -2
- package/es-modules/Extensions/DataGrouping/ApproximationDefaults.js +157 -0
- package/es-modules/Extensions/DataGrouping/ApproximationRegistry.js +35 -0
- package/es-modules/Extensions/DataGrouping/DataGrouping.js +469 -0
- package/es-modules/Extensions/DataGrouping/DataGroupingAxisComposition.js +174 -0
- package/es-modules/Extensions/DataGrouping/DataGroupingDefaults.js +143 -0
- package/es-modules/Extensions/DataGrouping/DataGroupingSeriesComposition.js +479 -0
- package/es-modules/Extensions/Debugger/Debugger.js +1 -1
- package/es-modules/Extensions/DraggablePoints.js +6 -2
- package/es-modules/Extensions/Drilldown.js +3 -5
- package/es-modules/Extensions/ExportData/ExportData.js +31 -5
- package/es-modules/Extensions/Exporting/Exporting.js +47 -60
- package/es-modules/Extensions/Exporting/ExportingDefaults.js +22 -24
- package/es-modules/Extensions/GeoJSON.js +3 -1
- package/es-modules/Extensions/MarkerClusters.js +1 -1
- package/es-modules/Extensions/NoDataToDisplay.js +1 -1
- package/es-modules/Extensions/OfflineExporting/OfflineExporting.js +5 -5
- package/es-modules/Extensions/OfflineExporting/OfflineExportingDefaults.js +1 -1
- package/es-modules/Extensions/Oldie/Oldie.js +3 -3
- package/es-modules/Extensions/Oldie/VMLRenderer3D.js +1 -1
- package/es-modules/Extensions/OldiePolyfills.js +3 -1
- package/es-modules/Extensions/Pane.js +42 -5
- package/es-modules/Extensions/ParallelCoordinates.js +5 -1
- package/es-modules/Extensions/PatternFill.js +10 -10
- package/es-modules/Extensions/SeriesLabel/SeriesLabel.js +2 -2
- package/es-modules/Extensions/SeriesLabel/SeriesLabelDefaults.js +4 -0
- package/es-modules/Extensions/Sonification/Sonification.js +1 -1
- package/es-modules/Extensions/Themes/Avocado.js +1 -1
- package/es-modules/Extensions/Themes/BrandDark.js +1 -1
- package/es-modules/Extensions/Themes/BrandLight.js +1 -1
- package/es-modules/Extensions/Themes/DarkBlue.js +1 -1
- package/es-modules/Extensions/Themes/DarkGreen.js +1 -1
- package/es-modules/Extensions/Themes/DarkUnica.js +1 -1
- package/es-modules/Extensions/Themes/Gray.js +1 -1
- package/es-modules/Extensions/Themes/Grid.js +1 -1
- package/es-modules/Extensions/Themes/GridLight.js +1 -1
- package/es-modules/Extensions/Themes/HighContrastDark.js +1 -1
- package/es-modules/Extensions/Themes/HighContrastLight.js +1 -1
- package/es-modules/Extensions/Themes/SandSignika.js +1 -1
- package/es-modules/Extensions/Themes/Skies.js +1 -1
- package/es-modules/Extensions/Themes/Sunset.js +1 -1
- package/es-modules/Gantt/Connection.js +5 -5
- package/es-modules/Gantt/Pathfinder.js +6 -6
- package/es-modules/Maps/MapNavigation.js +1 -1
- package/es-modules/Maps/{MapNavigationOptionsDefault.js → MapNavigationDefaults.js} +4 -4
- package/es-modules/Maps/MapViewOptionsDefault.js +4 -4
- package/es-modules/Series/ArcDiagram/ArcDiagramSeries.js +3 -5
- package/es-modules/Series/AreaRange/AreaRangePoint.js +6 -10
- package/es-modules/Series/AreaRange/AreaRangeSeries.js +59 -48
- package/es-modules/Series/BoxPlot/BoxPlotSeries.js +4 -1
- package/es-modules/Series/Bubble/BubbleLegendComposition.js +22 -16
- package/es-modules/Series/Bubble/BubbleLegendItem.js +17 -21
- package/es-modules/Series/Candlestick/CandlestickSeries.js +15 -175
- package/es-modules/Series/Candlestick/CandlestickSeriesDefaults.js +179 -0
- package/es-modules/Series/Column/ColumnSeries.js +25 -506
- package/es-modules/Series/Column/ColumnSeriesDefaults.js +487 -0
- package/es-modules/Series/ColumnRange/ColumnRangeSeries.js +40 -36
- package/es-modules/Series/DependencyWheel/DependencyWheelSeries.js +2 -106
- package/es-modules/Series/DependencyWheel/DependencyWheelSeriesDefaults.js +183 -0
- package/es-modules/Series/DotPlot/DotPlotSeries.js +11 -12
- package/es-modules/Series/DrawPointUtilities.js +2 -14
- package/es-modules/Series/Dumbbell/DumbbellPoint.js +5 -4
- package/es-modules/Series/Dumbbell/DumbbellSeries.js +11 -7
- package/es-modules/Series/ErrorBar/ErrorBarSeries.js +19 -136
- package/es-modules/Series/ErrorBar/ErrorBarSeriesDefaults.js +147 -0
- package/es-modules/Series/Flags/FlagsPoint.js +2 -3
- package/es-modules/Series/Flags/FlagsSeries.js +31 -298
- package/es-modules/Series/Flags/FlagsSeriesDefaults.js +295 -0
- package/es-modules/Series/Flags/FlagsSymbols.js +96 -71
- package/es-modules/Series/HLC/HLCPoint.js +2 -2
- package/es-modules/Series/HLC/HLCSeries.js +7 -172
- package/es-modules/Series/HLC/HLCSeriesDefaults.js +184 -0
- package/es-modules/Series/Heatmap/HeatmapSeries.js +3 -0
- package/es-modules/Series/HeikinAshi/HeikinAshiPoint.js +3 -20
- package/es-modules/Series/HeikinAshi/HeikinAshiSeries.js +78 -139
- package/es-modules/Series/HeikinAshi/HeikinAshiSeriesDefaults.js +102 -0
- package/es-modules/Series/Item/ItemPoint.js +0 -1
- package/es-modules/Series/Item/ItemSeries.js +13 -8
- package/es-modules/Series/Line/LineSeries.js +8 -4
- package/es-modules/Series/Map/MapPoint.js +19 -1
- package/es-modules/Series/Map/MapSeries.js +7 -3
- package/es-modules/Series/MapBubble/MapBubbleSeries.js +4 -0
- package/es-modules/Series/MapPoint/MapPointPoint.js +0 -5
- package/es-modules/Series/MapPoint/MapPointSeries.js +24 -9
- package/es-modules/Series/Networkgraph/NetworkgraphSeries.js +2 -5
- package/es-modules/Series/Networkgraph/NetworkgraphSeriesDefaults.js +2 -0
- package/es-modules/Series/OHLC/OHLCPoint.js +0 -2
- package/es-modules/Series/OHLC/OHLCSeries.js +64 -160
- package/es-modules/Series/OHLC/OHLCSeriesDefaults.js +151 -0
- package/es-modules/Series/Organization/OrganizationPoint.js +0 -2
- package/es-modules/Series/Organization/OrganizationSeries.js +96 -469
- package/es-modules/Series/Organization/OrganizationSeriesDefaults.js +415 -0
- package/es-modules/Series/PackedBubble/PackedBubbleSeries.js +3 -10
- package/es-modules/Series/PackedBubble/PackedBubbleSeriesDefaults.js +2 -0
- package/es-modules/Series/PathUtilities.js +74 -0
- package/es-modules/Series/Pie/PieSeries.js +2 -644
- package/es-modules/Series/Pie/PieSeriesDefaults.js +660 -0
- package/es-modules/Series/PolarComposition.js +233 -15
- package/es-modules/Series/Sankey/SankeySeries.js +27 -530
- package/es-modules/Series/Sankey/SankeySeriesDefaults.js +522 -0
- package/es-modules/Series/Scatter/ScatterSeries.js +2 -172
- package/es-modules/Series/Scatter/ScatterSeriesDefaults.js +188 -0
- package/es-modules/Series/SolidGauge/SolidGaugeSeries.js +12 -182
- package/es-modules/Series/SolidGauge/SolidGaugeSeriesDefaults.js +199 -0
- package/es-modules/Series/Sunburst/SunburstNode.js +34 -0
- package/es-modules/Series/Sunburst/SunburstPoint.js +2 -1
- package/es-modules/Series/Sunburst/SunburstSeries.js +3 -1
- package/es-modules/Series/Timeline/TimelineSeries.js +2 -231
- package/es-modules/Series/Timeline/TimelineSeriesDefaults.js +248 -0
- package/es-modules/Series/TreeUtilities.js +1 -2
- package/es-modules/Series/Treegraph/TreegraphLayout.js +338 -0
- package/es-modules/Series/Treegraph/TreegraphLink.js +92 -0
- package/es-modules/Series/Treegraph/TreegraphNode.js +206 -0
- package/es-modules/Series/Treegraph/TreegraphPoint.js +175 -0
- package/es-modules/Series/Treegraph/TreegraphSeries.js +510 -0
- package/es-modules/Series/Treegraph/TreegraphSeriesDefaults.js +231 -0
- package/es-modules/Series/Treemap/TreemapNode.js +48 -0
- package/es-modules/Series/Treemap/TreemapPoint.js +2 -1
- package/es-modules/Series/Treemap/TreemapSeries.js +29 -27
- package/es-modules/Series/Variwide/VariwideComposition.js +70 -26
- package/es-modules/Series/Variwide/VariwidePoint.js +8 -7
- package/es-modules/Series/Variwide/VariwideSeries.js +19 -14
- package/es-modules/Series/Vector/VectorSeries.js +2 -2
- package/es-modules/Series/Venn/VennSeries.js +14 -0
- package/es-modules/Series/Waterfall/WaterfallSeries.js +0 -1
- package/es-modules/Series/Windbarb/WindbarbSeries.js +3 -2
- package/es-modules/Series/Wordcloud/WordcloudSeries.js +3 -0
- package/es-modules/Stock/Indicators/AO/AOIndicator.js +1 -2
- package/es-modules/Stock/Indicators/BB/BBIndicator.js +15 -4
- package/es-modules/Stock/Indicators/IKH/IKHIndicator.js +21 -18
- package/es-modules/Stock/Indicators/Klinger/KlingerIndicator.js +1 -2
- package/es-modules/Stock/Indicators/MACD/MACDIndicator.js +1 -2
- package/es-modules/Stock/Indicators/PivotPoints/PivotPointsIndicator.js +1 -1
- package/es-modules/Stock/Indicators/SMA/SMAIndicator.js +0 -1
- package/es-modules/Stock/Indicators/SlowStochastic/SlowStochasticIndicator.js +3 -4
- package/es-modules/Stock/Indicators/Supertrend/SupertrendIndicator.js +1 -2
- package/es-modules/Stock/Indicators/VBP/VBPIndicator.js +6 -7
- package/es-modules/{Core → Stock/Navigator}/Navigator.js +112 -686
- package/es-modules/Stock/Navigator/NavigatorComposition.js +218 -0
- package/es-modules/Stock/Navigator/NavigatorDefaults.js +490 -0
- package/es-modules/Stock/Navigator/NavigatorSymbols.js +44 -0
- package/es-modules/{Extensions → Stock/RangeSelector}/RangeSelector.js +154 -818
- package/es-modules/Stock/RangeSelector/RangeSelectorComposition.js +286 -0
- package/es-modules/Stock/RangeSelector/RangeSelectorDefaults.js +521 -0
- package/es-modules/{Core → Stock/Scrollbar}/Scrollbar.js +4 -4
- package/es-modules/{Core → Stock/Scrollbar}/ScrollbarDefaults.js +1 -1
- package/es-modules/Stock/{StockToolbar.js → StockTools/StockToolbar.js} +2 -2
- package/es-modules/Stock/{StockTools.js → StockTools/StockTools.js} +3 -3
- package/es-modules/Stock/{StockToolsBindings.js → StockTools/StockToolsBindings.js} +3 -3
- package/es-modules/Stock/{StockToolsDefaults.js → StockTools/StockToolsDefaults.js} +4 -4
- package/es-modules/Stock/{StockToolsGui.js → StockTools/StockToolsGui.js} +4 -4
- package/es-modules/Stock/{StockToolsUtilities.js → StockTools/StockToolsUtilities.js} +4 -4
- package/es-modules/masters/highcharts-3d.src.js +3 -5
- package/es-modules/masters/highcharts-gantt.src.js +1 -1
- package/es-modules/masters/highcharts-more.src.js +1 -1
- package/es-modules/masters/highcharts.src.js +6 -6
- package/es-modules/masters/highmaps.src.js +1 -1
- package/es-modules/masters/highstock.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/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.src.js +1 -1
- package/es-modules/masters/modules/datagrouping.src.js +11 -3
- 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 +1 -1
- package/es-modules/masters/modules/dumbbell.src.js +1 -1
- package/es-modules/masters/modules/export-data.src.js +1 -1
- package/es-modules/masters/modules/exporting.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 +9 -5
- 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 +5 -2
- 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/networkgraph.src.js +1 -1
- package/es-modules/masters/modules/no-data-to-display.src.js +1 -1
- package/es-modules/masters/modules/offline-exporting.src.js +1 -1
- package/es-modules/masters/modules/oldie-polyfills.src.js +1 -1
- package/es-modules/masters/modules/oldie.src.js +1 -1
- package/es-modules/masters/modules/organization.src.js +1 -1
- package/es-modules/masters/modules/overlapping-datalabels.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/price-indicator.src.js +1 -1
- package/es-modules/masters/modules/pyramid3d.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 +4 -4
- package/es-modules/masters/modules/stock.src.js +17 -11
- 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/tilemap.src.js +1 -1
- package/es-modules/masters/modules/timeline.src.js +1 -1
- package/es-modules/masters/modules/treegraph.src.js +13 -0
- 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 +5 -2
- 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/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/highcharts-3d.js +97 -98
- package/highcharts-3d.js.map +1 -1
- package/highcharts-3d.src.js +476 -449
- package/highcharts-gantt.js +811 -808
- package/highcharts-gantt.js.map +1 -1
- package/highcharts-gantt.src.js +14619 -14112
- package/highcharts-more.d.ts +0 -8
- package/highcharts-more.js +208 -201
- package/highcharts-more.js.map +1 -1
- package/highcharts-more.src.d.ts +0 -8
- package/highcharts-more.src.js +679 -289
- package/highcharts.d.ts +30739 -6156
- package/highcharts.js +590 -589
- package/highcharts.js.map +1 -1
- package/highcharts.src.d.ts +30739 -6156
- package/highcharts.src.js +1988 -1799
- package/highmaps.js +759 -757
- package/highmaps.js.map +1 -1
- package/highmaps.src.js +2339 -2077
- package/highstock.js +802 -794
- package/highstock.js.map +1 -1
- package/highstock.src.js +12349 -11416
- package/indicators/acceleration-bands.js +1 -1
- package/indicators/acceleration-bands.src.js +1 -1
- package/indicators/accumulation-distribution.js +1 -1
- package/indicators/accumulation-distribution.src.js +1 -1
- package/indicators/ao.js +6 -6
- package/indicators/ao.js.map +1 -1
- package/indicators/ao.src.js +4 -3
- package/indicators/apo.js +1 -1
- package/indicators/apo.src.js +1 -1
- package/indicators/aroon-oscillator.js +1 -1
- package/indicators/aroon-oscillator.src.js +1 -1
- package/indicators/aroon.js +1 -1
- package/indicators/aroon.src.js +1 -1
- package/indicators/atr.js +1 -1
- package/indicators/atr.src.js +1 -1
- package/indicators/bollinger-bands.js +1 -1
- package/indicators/bollinger-bands.js.map +1 -1
- package/indicators/bollinger-bands.src.js +16 -5
- package/indicators/cci.js +1 -1
- package/indicators/cci.src.js +1 -1
- package/indicators/chaikin.js +1 -1
- package/indicators/chaikin.src.js +1 -1
- package/indicators/cmf.js +1 -1
- package/indicators/cmf.src.js +1 -1
- package/indicators/cmo.d.ts +17 -0
- package/indicators/cmo.js +1 -1
- package/indicators/cmo.src.d.ts +17 -0
- package/indicators/cmo.src.js +1 -1
- package/indicators/dema.js +1 -1
- package/indicators/dema.src.js +1 -1
- package/indicators/disparity-index.d.ts +17 -0
- package/indicators/disparity-index.js +1 -1
- package/indicators/disparity-index.src.d.ts +17 -0
- package/indicators/disparity-index.src.js +1 -1
- package/indicators/dmi.d.ts +17 -0
- package/indicators/dmi.js +1 -1
- package/indicators/dmi.src.d.ts +17 -0
- package/indicators/dmi.src.js +1 -1
- package/indicators/dpo.js +1 -1
- package/indicators/dpo.src.js +1 -1
- package/indicators/ichimoku-kinko-hyo.js +14 -14
- package/indicators/ichimoku-kinko-hyo.js.map +1 -1
- package/indicators/ichimoku-kinko-hyo.src.js +22 -19
- package/indicators/indicators-all.js +198 -199
- package/indicators/indicators-all.js.map +1 -1
- package/indicators/indicators-all.src.js +63 -57
- package/indicators/indicators.js +13 -13
- package/indicators/indicators.js.map +1 -1
- package/indicators/indicators.src.js +1 -15
- package/indicators/keltner-channels.js +1 -1
- package/indicators/keltner-channels.src.js +1 -1
- package/indicators/klinger.d.ts +17 -0
- package/indicators/klinger.js +12 -12
- package/indicators/klinger.js.map +1 -1
- package/indicators/klinger.src.d.ts +17 -0
- package/indicators/klinger.src.js +4 -3
- package/indicators/macd.js +1 -1
- package/indicators/macd.js.map +1 -1
- package/indicators/macd.src.js +4 -3
- package/indicators/mfi.js +1 -1
- package/indicators/mfi.src.js +1 -1
- package/indicators/momentum.js +1 -1
- package/indicators/momentum.src.js +1 -1
- package/indicators/natr.js +1 -1
- package/indicators/natr.src.js +1 -1
- package/indicators/obv.d.ts +17 -0
- package/indicators/obv.js +1 -1
- package/indicators/obv.src.d.ts +17 -0
- package/indicators/obv.src.js +1 -1
- package/indicators/pivot-points.js +2 -2
- package/indicators/pivot-points.js.map +1 -1
- package/indicators/pivot-points.src.js +2 -2
- package/indicators/ppo.js +1 -1
- package/indicators/ppo.src.js +1 -1
- package/indicators/price-channel.js +1 -1
- package/indicators/price-channel.src.js +1 -1
- package/indicators/price-envelopes.js +1 -1
- package/indicators/price-envelopes.src.js +1 -1
- package/indicators/psar.js +1 -1
- package/indicators/psar.src.js +1 -1
- package/indicators/regressions.js +1 -1
- package/indicators/regressions.src.js +1 -1
- package/indicators/roc.js +1 -1
- package/indicators/roc.src.js +1 -1
- package/indicators/rsi.js +1 -1
- package/indicators/rsi.src.js +1 -1
- package/indicators/slow-stochastic.js +5 -5
- package/indicators/slow-stochastic.js.map +1 -1
- package/indicators/slow-stochastic.src.js +6 -5
- package/indicators/stochastic.js +1 -1
- package/indicators/stochastic.src.js +1 -1
- package/indicators/supertrend.js +7 -7
- package/indicators/supertrend.js.map +1 -1
- package/indicators/supertrend.src.js +4 -3
- package/indicators/tema.js +1 -1
- package/indicators/tema.src.js +1 -1
- package/indicators/trendline.js +1 -1
- package/indicators/trendline.src.js +1 -1
- package/indicators/trix.js +1 -1
- package/indicators/trix.src.js +1 -1
- package/indicators/volume-by-price.js +17 -17
- package/indicators/volume-by-price.js.map +1 -1
- package/indicators/volume-by-price.src.js +9 -8
- package/indicators/vwap.js +1 -1
- package/indicators/vwap.src.js +1 -1
- package/indicators/williams-r.js +1 -1
- package/indicators/williams-r.src.js +1 -1
- package/indicators/wma.js +1 -1
- package/indicators/wma.src.js +1 -1
- package/indicators/zigzag.js +1 -1
- package/indicators/zigzag.src.js +1 -1
- package/modules/accessibility.js +214 -213
- package/modules/accessibility.js.map +1 -1
- package/modules/accessibility.src.js +991 -835
- package/modules/annotations-advanced.js +16 -16
- package/modules/annotations-advanced.js.map +1 -1
- package/modules/annotations-advanced.src.js +29 -24
- package/modules/annotations.js +91 -91
- package/modules/annotations.js.map +1 -1
- package/modules/annotations.src.js +29 -24
- package/modules/arc-diagram.d.ts +17 -0
- package/modules/arc-diagram.js +15 -15
- package/modules/arc-diagram.js.map +1 -1
- package/modules/arc-diagram.src.d.ts +17 -0
- package/modules/arc-diagram.src.js +6 -6
- package/modules/arrow-symbols.js +1 -1
- package/modules/arrow-symbols.src.js +1 -1
- package/modules/boost-canvas.js +19 -19
- package/modules/boost-canvas.js.map +1 -1
- package/modules/boost-canvas.src.js +13 -8
- package/modules/boost.js +37 -37
- package/modules/boost.js.map +1 -1
- package/modules/boost.src.js +13 -8
- package/modules/broken-axis.js +1 -1
- package/modules/broken-axis.src.js +1 -1
- package/modules/bullet.js +1 -1
- package/modules/bullet.src.js +1 -1
- package/modules/coloraxis.js +25 -24
- package/modules/coloraxis.js.map +1 -1
- package/modules/coloraxis.src.js +77 -58
- package/modules/current-date-indicator.js +1 -1
- package/modules/current-date-indicator.src.js +1 -1
- package/modules/cylinder.js +1 -1
- package/modules/cylinder.src.js +1 -1
- package/modules/data.js +27 -27
- package/modules/data.js.map +1 -1
- package/modules/data.src.js +3 -3
- package/modules/datagrouping.d.ts +31 -0
- package/modules/datagrouping.js +23 -21
- package/modules/datagrouping.js.map +1 -1
- package/modules/datagrouping.src.d.ts +31 -0
- package/modules/datagrouping.src.js +921 -640
- package/modules/debugger.js +3 -3
- package/modules/debugger.js.map +1 -1
- package/modules/debugger.src.js +2 -2
- package/modules/dependency-wheel.js +12 -12
- package/modules/dependency-wheel.js.map +1 -1
- package/modules/dependency-wheel.src.js +191 -108
- package/modules/dotplot.js +6 -6
- package/modules/dotplot.js.map +1 -1
- package/modules/dotplot.src.js +10 -13
- package/modules/drag-panes.js +1 -1
- package/modules/drag-panes.src.js +1 -1
- package/modules/draggable-points.js +5 -5
- package/modules/draggable-points.js.map +1 -1
- package/modules/draggable-points.src.js +7 -3
- package/modules/drilldown.js +37 -37
- package/modules/drilldown.js.map +1 -1
- package/modules/drilldown.src.js +5 -6
- package/modules/dumbbell.js +17 -17
- package/modules/dumbbell.js.map +1 -1
- package/modules/dumbbell.src.js +27 -22
- package/modules/export-data.js +26 -25
- package/modules/export-data.js.map +1 -1
- package/modules/export-data.src.js +33 -6
- package/modules/exporting.js +36 -35
- package/modules/exporting.js.map +1 -1
- package/modules/exporting.src.js +81 -88
- package/modules/full-screen.js +1 -1
- package/modules/full-screen.src.js +1 -1
- package/modules/funnel.js +1 -1
- package/modules/funnel.src.js +1 -1
- package/modules/funnel3d.js +1 -1
- package/modules/funnel3d.src.js +1 -1
- package/modules/gantt.js +221 -219
- package/modules/gantt.js.map +1 -1
- package/modules/gantt.src.js +12842 -12524
- package/modules/grid-axis.js +1 -1
- package/modules/grid-axis.src.js +1 -1
- package/modules/heatmap.js +40 -40
- package/modules/heatmap.js.map +1 -1
- package/modules/heatmap.src.js +80 -58
- package/modules/heikinashi.d.ts +17 -0
- package/modules/heikinashi.js +9 -8
- package/modules/heikinashi.js.map +1 -1
- package/modules/heikinashi.src.d.ts +17 -0
- package/modules/heikinashi.src.js +192 -165
- package/modules/histogram-bellcurve.js +1 -1
- package/modules/histogram-bellcurve.src.js +1 -1
- package/modules/hollowcandlestick.d.ts +17 -0
- package/modules/hollowcandlestick.js +1 -1
- package/modules/hollowcandlestick.src.d.ts +17 -0
- package/modules/hollowcandlestick.src.js +1 -1
- package/modules/item-series.js +12 -12
- package/modules/item-series.js.map +1 -1
- package/modules/item-series.src.js +14 -10
- package/modules/lollipop.js +1 -1
- package/modules/lollipop.src.js +1 -1
- package/modules/map.js +172 -171
- package/modules/map.js.map +1 -1
- package/modules/map.src.js +194 -121
- package/modules/marker-clusters.js +2 -2
- package/modules/marker-clusters.js.map +1 -1
- package/modules/marker-clusters.src.js +2 -2
- package/modules/networkgraph.js +8 -8
- package/modules/networkgraph.js.map +1 -1
- package/modules/networkgraph.src.js +5 -6
- package/modules/no-data-to-display.js +4 -4
- package/modules/no-data-to-display.js.map +1 -1
- package/modules/no-data-to-display.src.js +2 -2
- package/modules/offline-exporting.js +4 -4
- package/modules/offline-exporting.js.map +1 -1
- package/modules/offline-exporting.src.js +7 -7
- package/modules/oldie-polyfills.js +7 -7
- package/modules/oldie-polyfills.js.map +1 -1
- package/modules/oldie-polyfills.src.js +9 -7
- package/modules/oldie.js +30 -30
- package/modules/oldie.js.map +1 -1
- package/modules/oldie.src.js +5 -5
- package/modules/organization.js +18 -16
- package/modules/organization.js.map +1 -1
- package/modules/organization.src.js +659 -495
- package/modules/overlapping-datalabels.js +1 -1
- package/modules/overlapping-datalabels.src.js +1 -1
- package/modules/parallel-coordinates.js +10 -10
- package/modules/parallel-coordinates.js.map +1 -1
- package/modules/parallel-coordinates.src.js +6 -2
- package/modules/pareto.js +1 -1
- package/modules/pareto.src.js +1 -1
- package/modules/pathfinder.js +31 -31
- package/modules/pathfinder.js.map +1 -1
- package/modules/pathfinder.src.js +19 -23
- package/modules/pattern-fill.js +2 -2
- package/modules/pattern-fill.js.map +1 -1
- package/modules/pattern-fill.src.js +11 -11
- package/modules/price-indicator.js +1 -1
- package/modules/price-indicator.src.js +1 -1
- package/modules/pyramid3d.js +1 -1
- package/modules/pyramid3d.src.js +1 -1
- package/modules/sankey.js +33 -32
- package/modules/sankey.js.map +1 -1
- package/modules/sankey.src.js +571 -550
- package/modules/series-label.js +17 -17
- package/modules/series-label.js.map +1 -1
- package/modules/series-label.src.js +7 -3
- package/modules/series-on-point.d.ts +17 -0
- package/modules/series-on-point.js +1 -1
- package/modules/series-on-point.src.d.ts +17 -0
- package/modules/series-on-point.src.js +1 -1
- package/modules/solid-gauge.js +11 -10
- package/modules/solid-gauge.js.map +1 -1
- package/modules/solid-gauge.src.js +220 -192
- package/modules/sonification.js +2 -2
- package/modules/sonification.js.map +1 -1
- package/modules/sonification.src.js +2 -2
- package/modules/static-scale.js +1 -1
- package/modules/static-scale.src.js +1 -1
- package/modules/stock-tools.js +59 -59
- package/modules/stock-tools.js.map +1 -1
- package/modules/stock-tools.src.js +19 -21
- package/modules/stock.d.ts +26 -6
- package/modules/stock.js +212 -205
- package/modules/stock.js.map +1 -1
- package/modules/stock.src.d.ts +26 -6
- package/modules/stock.src.js +11361 -10617
- package/modules/streamgraph.js +1 -1
- package/modules/streamgraph.src.js +1 -1
- package/modules/sunburst.js +75 -73
- package/modules/sunburst.js.map +1 -1
- package/modules/sunburst.src.js +133 -57
- package/modules/tilemap.js +1 -1
- package/modules/tilemap.src.js +1 -1
- package/modules/timeline.js +18 -18
- package/modules/timeline.js.map +1 -1
- package/modules/timeline.src.js +257 -233
- package/modules/treegraph.d.ts +17 -0
- package/modules/treegraph.js +44 -0
- package/modules/treegraph.js.map +1 -0
- package/modules/treegraph.src.d.ts +17 -0
- package/modules/treegraph.src.js +1829 -0
- package/modules/treegrid.js +2 -2
- package/modules/treegrid.js.map +1 -1
- package/modules/treegrid.src.js +2 -3
- package/modules/treemap.js +54 -53
- package/modules/treemap.js.map +1 -1
- package/modules/treemap.src.js +90 -52
- package/modules/variable-pie.js +1 -1
- package/modules/variable-pie.src.js +1 -1
- package/modules/variwide.js +12 -12
- package/modules/variwide.js.map +1 -1
- package/modules/variwide.src.js +158 -106
- package/modules/vector.js +1 -1
- package/modules/vector.src.js +3 -3
- package/modules/venn.js +31 -31
- package/modules/venn.js.map +1 -1
- package/modules/venn.src.js +17 -16
- package/modules/windbarb.js +15 -15
- package/modules/windbarb.js.map +1 -1
- package/modules/windbarb.src.js +41 -4
- package/modules/wordcloud.js +23 -23
- package/modules/wordcloud.js.map +1 -1
- package/modules/wordcloud.src.js +6 -15
- package/modules/xrange.js +1 -1
- package/modules/xrange.src.js +1 -1
- package/package.json +1 -1
- package/themes/avocado.js +2 -3
- package/themes/avocado.js.map +1 -1
- package/themes/avocado.src.js +2 -2
- package/themes/brand-dark.d.ts +22 -0
- package/themes/brand-dark.js +3 -3
- package/themes/brand-dark.js.map +1 -1
- package/themes/brand-dark.src.d.ts +22 -0
- package/themes/brand-dark.src.js +2 -2
- package/themes/brand-light.d.ts +22 -0
- package/themes/brand-light.js +2 -2
- package/themes/brand-light.js.map +1 -1
- package/themes/brand-light.src.d.ts +22 -0
- package/themes/brand-light.src.js +2 -2
- package/themes/dark-blue.js +2 -2
- package/themes/dark-blue.js.map +1 -1
- package/themes/dark-blue.src.js +2 -2
- package/themes/dark-green.js +2 -2
- package/themes/dark-green.js.map +1 -1
- package/themes/dark-green.src.js +2 -2
- package/themes/dark-unica.js +2 -2
- package/themes/dark-unica.js.map +1 -1
- package/themes/dark-unica.src.js +2 -2
- package/themes/gray.js +2 -2
- package/themes/gray.js.map +1 -1
- package/themes/gray.src.js +2 -2
- package/themes/grid-light.js +2 -2
- package/themes/grid-light.js.map +1 -1
- package/themes/grid-light.src.js +2 -2
- package/themes/grid.js +2 -2
- package/themes/grid.js.map +1 -1
- package/themes/grid.src.js +2 -2
- package/themes/high-contrast-dark.d.ts +22 -0
- package/themes/high-contrast-dark.js +2 -2
- package/themes/high-contrast-dark.js.map +1 -1
- package/themes/high-contrast-dark.src.d.ts +22 -0
- package/themes/high-contrast-dark.src.js +2 -2
- package/themes/high-contrast-light.d.ts +22 -0
- package/themes/high-contrast-light.js +2 -2
- package/themes/high-contrast-light.js.map +1 -1
- package/themes/high-contrast-light.src.d.ts +22 -0
- package/themes/high-contrast-light.src.js +2 -2
- package/themes/sand-signika.js +2 -2
- package/themes/sand-signika.js.map +1 -1
- package/themes/sand-signika.src.js +2 -2
- package/themes/skies.js +2 -2
- package/themes/skies.js.map +1 -1
- package/themes/skies.src.js +2 -2
- package/themes/sunset.js +2 -2
- package/themes/sunset.js.map +1 -1
- package/themes/sunset.src.js +2 -2
- package/es-modules/Core/Axis/Axis3D.js +0 -612
- package/es-modules/Core/Axis/NavigatorAxis.js +0 -159
- package/es-modules/Core/Axis/Tick3D.js +0 -68
- package/es-modules/Extensions/DataGrouping.js +0 -1177
- package/es-modules/Stock/Indicators/SMA/SMAComposition.js +0 -12
|
@@ -0,0 +1,501 @@
|
|
|
1
|
+
/* *
|
|
2
|
+
*
|
|
3
|
+
* (c) 2010-2021 Torstein Honsi
|
|
4
|
+
*
|
|
5
|
+
* Extenstion for 3d axes
|
|
6
|
+
*
|
|
7
|
+
* License: www.highcharts.com/license
|
|
8
|
+
*
|
|
9
|
+
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
|
|
10
|
+
*
|
|
11
|
+
* */
|
|
12
|
+
'use strict';
|
|
13
|
+
import Axis3DDefaults from './Axis3DDefaults.js';
|
|
14
|
+
import H from '../Globals.js';
|
|
15
|
+
var deg2rad = H.deg2rad;
|
|
16
|
+
import Math3D from '../Math3D.js';
|
|
17
|
+
var perspective = Math3D.perspective, perspective3D = Math3D.perspective3D, shapeArea = Math3D.shapeArea;
|
|
18
|
+
import Tick3D from './Tick3DComposition.js';
|
|
19
|
+
import U from '../Utilities.js';
|
|
20
|
+
var addEvent = U.addEvent, merge = U.merge, pick = U.pick, wrap = U.wrap;
|
|
21
|
+
/* *
|
|
22
|
+
*
|
|
23
|
+
* Constants
|
|
24
|
+
*
|
|
25
|
+
* */
|
|
26
|
+
var composedClasses = [];
|
|
27
|
+
/* *
|
|
28
|
+
*
|
|
29
|
+
* Functions
|
|
30
|
+
*
|
|
31
|
+
* */
|
|
32
|
+
/**
|
|
33
|
+
* @private
|
|
34
|
+
*/
|
|
35
|
+
function onAxisAfterSetOptions() {
|
|
36
|
+
var axis = this, chart = axis.chart, options = axis.options;
|
|
37
|
+
if (chart.is3d && chart.is3d() && axis.coll !== 'colorAxis') {
|
|
38
|
+
options.tickWidth = pick(options.tickWidth, 0);
|
|
39
|
+
options.gridLineWidth = pick(options.gridLineWidth, 1);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* @private
|
|
44
|
+
*/
|
|
45
|
+
function onAxisDrawCrosshair(e) {
|
|
46
|
+
var axis = this;
|
|
47
|
+
if (axis.chart.is3d() &&
|
|
48
|
+
axis.coll !== 'colorAxis') {
|
|
49
|
+
if (e.point) {
|
|
50
|
+
e.point.crosshairPos = axis.isXAxis ?
|
|
51
|
+
e.point.axisXpos :
|
|
52
|
+
axis.len - e.point.axisYpos;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* @private
|
|
58
|
+
*/
|
|
59
|
+
function onAxisInit() {
|
|
60
|
+
var axis = this;
|
|
61
|
+
if (!axis.axis3D) {
|
|
62
|
+
axis.axis3D = new Axis3DAdditions(axis);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Do not draw axislines in 3D.
|
|
67
|
+
* @private
|
|
68
|
+
*/
|
|
69
|
+
function wrapAxisGetLinePath(proceed) {
|
|
70
|
+
var axis = this;
|
|
71
|
+
// Do not do this if the chart is not 3D
|
|
72
|
+
if (!axis.chart.is3d() || axis.coll === 'colorAxis') {
|
|
73
|
+
return proceed.apply(axis, [].slice.call(arguments, 1));
|
|
74
|
+
}
|
|
75
|
+
return [];
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* @private
|
|
79
|
+
*/
|
|
80
|
+
function wrapAxisGetPlotBandPath(proceed) {
|
|
81
|
+
// Do not do this if the chart is not 3D
|
|
82
|
+
if (!this.chart.is3d() || this.coll === 'colorAxis') {
|
|
83
|
+
return proceed.apply(this, [].slice.call(arguments, 1));
|
|
84
|
+
}
|
|
85
|
+
var args = arguments, from = args[1], to = args[2], path = [], fromPath = this.getPlotLinePath({ value: from }), toPath = this.getPlotLinePath({ value: to });
|
|
86
|
+
if (fromPath && toPath) {
|
|
87
|
+
for (var i = 0; i < fromPath.length; i += 2) {
|
|
88
|
+
var fromStartSeg = fromPath[i], fromEndSeg = fromPath[i + 1], toStartSeg = toPath[i], toEndSeg = toPath[i + 1];
|
|
89
|
+
if (fromStartSeg[0] === 'M' &&
|
|
90
|
+
fromEndSeg[0] === 'L' &&
|
|
91
|
+
toStartSeg[0] === 'M' &&
|
|
92
|
+
toEndSeg[0] === 'L') {
|
|
93
|
+
path.push(fromStartSeg, fromEndSeg, toEndSeg,
|
|
94
|
+
// lineTo instead of moveTo
|
|
95
|
+
['L', toStartSeg[1], toStartSeg[2]], ['Z']);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
return path;
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* @private
|
|
103
|
+
*/
|
|
104
|
+
function wrapAxisGetPlotLinePath(proceed) {
|
|
105
|
+
var axis = this, axis3D = axis.axis3D, chart = axis.chart, path = proceed.apply(axis, [].slice.call(arguments, 1));
|
|
106
|
+
// Do not do this if the chart is not 3D
|
|
107
|
+
if (axis.coll === 'colorAxis' ||
|
|
108
|
+
!chart.chart3d ||
|
|
109
|
+
!chart.is3d()) {
|
|
110
|
+
return path;
|
|
111
|
+
}
|
|
112
|
+
if (path === null) {
|
|
113
|
+
return path;
|
|
114
|
+
}
|
|
115
|
+
var options3d = chart.options.chart.options3d, d = axis.isZAxis ? chart.plotWidth : options3d.depth, frame = chart.chart3d.frame3d, startSegment = path[0], endSegment = path[1];
|
|
116
|
+
var pArr, pathSegments = [];
|
|
117
|
+
if (startSegment[0] === 'M' && endSegment[0] === 'L') {
|
|
118
|
+
pArr = [
|
|
119
|
+
axis3D.swapZ({ x: startSegment[1], y: startSegment[2], z: 0 }),
|
|
120
|
+
axis3D.swapZ({ x: startSegment[1], y: startSegment[2], z: d }),
|
|
121
|
+
axis3D.swapZ({ x: endSegment[1], y: endSegment[2], z: 0 }),
|
|
122
|
+
axis3D.swapZ({ x: endSegment[1], y: endSegment[2], z: d })
|
|
123
|
+
];
|
|
124
|
+
if (!this.horiz) { // Y-Axis
|
|
125
|
+
if (frame.front.visible) {
|
|
126
|
+
pathSegments.push(pArr[0], pArr[2]);
|
|
127
|
+
}
|
|
128
|
+
if (frame.back.visible) {
|
|
129
|
+
pathSegments.push(pArr[1], pArr[3]);
|
|
130
|
+
}
|
|
131
|
+
if (frame.left.visible) {
|
|
132
|
+
pathSegments.push(pArr[0], pArr[1]);
|
|
133
|
+
}
|
|
134
|
+
if (frame.right.visible) {
|
|
135
|
+
pathSegments.push(pArr[2], pArr[3]);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
else if (this.isZAxis) { // Z-Axis
|
|
139
|
+
if (frame.left.visible) {
|
|
140
|
+
pathSegments.push(pArr[0], pArr[2]);
|
|
141
|
+
}
|
|
142
|
+
if (frame.right.visible) {
|
|
143
|
+
pathSegments.push(pArr[1], pArr[3]);
|
|
144
|
+
}
|
|
145
|
+
if (frame.top.visible) {
|
|
146
|
+
pathSegments.push(pArr[0], pArr[1]);
|
|
147
|
+
}
|
|
148
|
+
if (frame.bottom.visible) {
|
|
149
|
+
pathSegments.push(pArr[2], pArr[3]);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
else { // X-Axis
|
|
153
|
+
if (frame.front.visible) {
|
|
154
|
+
pathSegments.push(pArr[0], pArr[2]);
|
|
155
|
+
}
|
|
156
|
+
if (frame.back.visible) {
|
|
157
|
+
pathSegments.push(pArr[1], pArr[3]);
|
|
158
|
+
}
|
|
159
|
+
if (frame.top.visible) {
|
|
160
|
+
pathSegments.push(pArr[0], pArr[1]);
|
|
161
|
+
}
|
|
162
|
+
if (frame.bottom.visible) {
|
|
163
|
+
pathSegments.push(pArr[2], pArr[3]);
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
pathSegments = perspective(pathSegments, this.chart, false);
|
|
167
|
+
}
|
|
168
|
+
return chart.renderer.toLineSegments(pathSegments);
|
|
169
|
+
}
|
|
170
|
+
/**
|
|
171
|
+
* Wrap getSlotWidth function to calculate individual width value for each
|
|
172
|
+
* slot (#8042).
|
|
173
|
+
* @private
|
|
174
|
+
*/
|
|
175
|
+
function wrapAxisGetSlotWidth(proceed, tick) {
|
|
176
|
+
var axis = this, chart = axis.chart, ticks = axis.ticks, gridGroup = axis.gridGroup;
|
|
177
|
+
if (axis.categories &&
|
|
178
|
+
chart.frameShapes &&
|
|
179
|
+
chart.is3d() &&
|
|
180
|
+
gridGroup &&
|
|
181
|
+
tick &&
|
|
182
|
+
tick.label) {
|
|
183
|
+
var firstGridLine = (gridGroup.element.childNodes[0].getBBox()), frame3DLeft = chart.frameShapes.left.getBBox(), options3d = chart.options.chart.options3d, origin_1 = {
|
|
184
|
+
x: chart.plotWidth / 2,
|
|
185
|
+
y: chart.plotHeight / 2,
|
|
186
|
+
z: options3d.depth / 2,
|
|
187
|
+
vd: (pick(options3d.depth, 1) *
|
|
188
|
+
pick(options3d.viewDistance, 0))
|
|
189
|
+
}, tickId = tick.pos, prevTick = ticks[tickId - 1], nextTick = ticks[tickId + 1];
|
|
190
|
+
var labelPos = void 0, prevLabelPos = void 0, nextLabelPos = void 0;
|
|
191
|
+
// Check whether the tick is not the first one and previous tick
|
|
192
|
+
// exists, then calculate position of previous label.
|
|
193
|
+
if (tickId !== 0 &&
|
|
194
|
+
prevTick &&
|
|
195
|
+
prevTick.label &&
|
|
196
|
+
prevTick.label.xy) {
|
|
197
|
+
prevLabelPos = perspective3D({
|
|
198
|
+
x: prevTick.label.xy.x,
|
|
199
|
+
y: prevTick.label.xy.y,
|
|
200
|
+
z: null
|
|
201
|
+
}, origin_1, origin_1.vd);
|
|
202
|
+
}
|
|
203
|
+
// If next label position is defined, then recalculate its position
|
|
204
|
+
// basing on the perspective.
|
|
205
|
+
if (nextTick && nextTick.label && nextTick.label.xy) {
|
|
206
|
+
nextLabelPos = perspective3D({
|
|
207
|
+
x: nextTick.label.xy.x,
|
|
208
|
+
y: nextTick.label.xy.y,
|
|
209
|
+
z: null
|
|
210
|
+
}, origin_1, origin_1.vd);
|
|
211
|
+
}
|
|
212
|
+
labelPos = {
|
|
213
|
+
x: tick.label.xy.x,
|
|
214
|
+
y: tick.label.xy.y,
|
|
215
|
+
z: null
|
|
216
|
+
};
|
|
217
|
+
labelPos = perspective3D(labelPos, origin_1, origin_1.vd);
|
|
218
|
+
// If tick is first one, check whether next label position is
|
|
219
|
+
// already calculated, then return difference between the first and
|
|
220
|
+
// the second label. If there is no next label position calculated,
|
|
221
|
+
// return the difference between the first grid line and left 3d
|
|
222
|
+
// frame.
|
|
223
|
+
return Math.abs(prevLabelPos ?
|
|
224
|
+
labelPos.x - prevLabelPos.x : nextLabelPos ?
|
|
225
|
+
nextLabelPos.x - labelPos.x :
|
|
226
|
+
firstGridLine.x - frame3DLeft.x);
|
|
227
|
+
}
|
|
228
|
+
return proceed.apply(axis, [].slice.call(arguments, 1));
|
|
229
|
+
}
|
|
230
|
+
/**
|
|
231
|
+
* @private
|
|
232
|
+
*/
|
|
233
|
+
function wrapAxisGetTitlePosition(proceed) {
|
|
234
|
+
var pos = proceed.apply(this, [].slice.call(arguments, 1));
|
|
235
|
+
return this.axis3D ?
|
|
236
|
+
this.axis3D.fix3dPosition(pos, true) :
|
|
237
|
+
pos;
|
|
238
|
+
}
|
|
239
|
+
/* *
|
|
240
|
+
*
|
|
241
|
+
* Class
|
|
242
|
+
*
|
|
243
|
+
* */
|
|
244
|
+
/**
|
|
245
|
+
* Adds 3D support to axes.
|
|
246
|
+
* @private
|
|
247
|
+
* @class
|
|
248
|
+
*/
|
|
249
|
+
var Axis3DAdditions = /** @class */ (function () {
|
|
250
|
+
/* *
|
|
251
|
+
*
|
|
252
|
+
* Constructors
|
|
253
|
+
*
|
|
254
|
+
* */
|
|
255
|
+
/**
|
|
256
|
+
* @private
|
|
257
|
+
*/
|
|
258
|
+
function Axis3DAdditions(axis) {
|
|
259
|
+
this.axis = axis;
|
|
260
|
+
}
|
|
261
|
+
/* *
|
|
262
|
+
*
|
|
263
|
+
* Functions
|
|
264
|
+
*
|
|
265
|
+
* */
|
|
266
|
+
/**
|
|
267
|
+
* Extends axis class with 3D support.
|
|
268
|
+
* @private
|
|
269
|
+
*/
|
|
270
|
+
Axis3DAdditions.compose = function (AxisClass, TickClass) {
|
|
271
|
+
Tick3D.compose(TickClass);
|
|
272
|
+
if (composedClasses.indexOf(AxisClass) === -1) {
|
|
273
|
+
composedClasses.push(AxisClass);
|
|
274
|
+
merge(true, AxisClass.defaultOptions, Axis3DDefaults);
|
|
275
|
+
AxisClass.keepProps.push('axis3D');
|
|
276
|
+
addEvent(AxisClass, 'init', onAxisInit);
|
|
277
|
+
addEvent(AxisClass, 'afterSetOptions', onAxisAfterSetOptions);
|
|
278
|
+
addEvent(AxisClass, 'drawCrosshair', onAxisDrawCrosshair);
|
|
279
|
+
var axisProto = AxisClass.prototype;
|
|
280
|
+
wrap(axisProto, 'getLinePath', wrapAxisGetLinePath);
|
|
281
|
+
wrap(axisProto, 'getPlotBandPath', wrapAxisGetPlotBandPath);
|
|
282
|
+
wrap(axisProto, 'getPlotLinePath', wrapAxisGetPlotLinePath);
|
|
283
|
+
wrap(axisProto, 'getSlotWidth', wrapAxisGetSlotWidth);
|
|
284
|
+
wrap(axisProto, 'getTitlePosition', wrapAxisGetTitlePosition);
|
|
285
|
+
}
|
|
286
|
+
};
|
|
287
|
+
/* *
|
|
288
|
+
*
|
|
289
|
+
* Functions
|
|
290
|
+
*
|
|
291
|
+
* */
|
|
292
|
+
/**
|
|
293
|
+
* @private
|
|
294
|
+
* @param {Highcharts.Axis} axis
|
|
295
|
+
* Related axis.
|
|
296
|
+
* @param {Highcharts.Position3DObject} pos
|
|
297
|
+
* Position to fix.
|
|
298
|
+
* @param {boolean} [isTitle]
|
|
299
|
+
* Whether this is a title position.
|
|
300
|
+
* @return {Highcharts.Position3DObject}
|
|
301
|
+
* Fixed position.
|
|
302
|
+
*/
|
|
303
|
+
Axis3DAdditions.prototype.fix3dPosition = function (pos, isTitle) {
|
|
304
|
+
var axis3D = this;
|
|
305
|
+
var axis = axis3D.axis;
|
|
306
|
+
var chart = axis.chart;
|
|
307
|
+
// Do not do this if the chart is not 3D
|
|
308
|
+
if (axis.coll === 'colorAxis' ||
|
|
309
|
+
!chart.chart3d ||
|
|
310
|
+
!chart.is3d()) {
|
|
311
|
+
return pos;
|
|
312
|
+
}
|
|
313
|
+
var alpha = deg2rad * chart.options.chart.options3d.alpha, beta = deg2rad * chart.options.chart.options3d.beta, positionMode = pick(isTitle && axis.options.title.position3d, axis.options.labels.position3d), skew = pick(isTitle && axis.options.title.skew3d, axis.options.labels.skew3d), frame = chart.chart3d.frame3d, plotLeft = chart.plotLeft, plotRight = chart.plotWidth + plotLeft, plotTop = chart.plotTop, plotBottom = chart.plotHeight + plotTop;
|
|
314
|
+
var offsetX = 0, offsetY = 0, vecX, vecY = { x: 0, y: 1, z: 0 },
|
|
315
|
+
// Indicates that we are labelling an X or Z axis on the "back" of
|
|
316
|
+
// the chart
|
|
317
|
+
reverseFlap = false;
|
|
318
|
+
pos = axis.axis3D.swapZ({ x: pos.x, y: pos.y, z: 0 });
|
|
319
|
+
if (axis.isZAxis) { // Z Axis
|
|
320
|
+
if (axis.opposite) {
|
|
321
|
+
if (frame.axes.z.top === null) {
|
|
322
|
+
return {};
|
|
323
|
+
}
|
|
324
|
+
offsetY = pos.y - plotTop;
|
|
325
|
+
pos.x = frame.axes.z.top.x;
|
|
326
|
+
pos.y = frame.axes.z.top.y;
|
|
327
|
+
vecX = frame.axes.z.top.xDir;
|
|
328
|
+
reverseFlap = !frame.top.frontFacing;
|
|
329
|
+
}
|
|
330
|
+
else {
|
|
331
|
+
if (frame.axes.z.bottom === null) {
|
|
332
|
+
return {};
|
|
333
|
+
}
|
|
334
|
+
offsetY = pos.y - plotBottom;
|
|
335
|
+
pos.x = frame.axes.z.bottom.x;
|
|
336
|
+
pos.y = frame.axes.z.bottom.y;
|
|
337
|
+
vecX = frame.axes.z.bottom.xDir;
|
|
338
|
+
reverseFlap = !frame.bottom.frontFacing;
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
else if (axis.horiz) { // X Axis
|
|
342
|
+
if (axis.opposite) {
|
|
343
|
+
if (frame.axes.x.top === null) {
|
|
344
|
+
return {};
|
|
345
|
+
}
|
|
346
|
+
offsetY = pos.y - plotTop;
|
|
347
|
+
pos.y = frame.axes.x.top.y;
|
|
348
|
+
pos.z = frame.axes.x.top.z;
|
|
349
|
+
vecX = frame.axes.x.top.xDir;
|
|
350
|
+
reverseFlap = !frame.top.frontFacing;
|
|
351
|
+
}
|
|
352
|
+
else {
|
|
353
|
+
if (frame.axes.x.bottom === null) {
|
|
354
|
+
return {};
|
|
355
|
+
}
|
|
356
|
+
offsetY = pos.y - plotBottom;
|
|
357
|
+
pos.y = frame.axes.x.bottom.y;
|
|
358
|
+
pos.z = frame.axes.x.bottom.z;
|
|
359
|
+
vecX = frame.axes.x.bottom.xDir;
|
|
360
|
+
reverseFlap = !frame.bottom.frontFacing;
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
else { // Y Axis
|
|
364
|
+
if (axis.opposite) {
|
|
365
|
+
if (frame.axes.y.right === null) {
|
|
366
|
+
return {};
|
|
367
|
+
}
|
|
368
|
+
offsetX = pos.x - plotRight;
|
|
369
|
+
pos.x = frame.axes.y.right.x;
|
|
370
|
+
pos.z = frame.axes.y.right.z;
|
|
371
|
+
vecX = frame.axes.y.right.xDir;
|
|
372
|
+
// Rotate 90º on opposite edge
|
|
373
|
+
vecX = { x: vecX.z, y: vecX.y, z: -vecX.x };
|
|
374
|
+
}
|
|
375
|
+
else {
|
|
376
|
+
if (frame.axes.y.left === null) {
|
|
377
|
+
return {};
|
|
378
|
+
}
|
|
379
|
+
offsetX = pos.x - plotLeft;
|
|
380
|
+
pos.x = frame.axes.y.left.x;
|
|
381
|
+
pos.z = frame.axes.y.left.z;
|
|
382
|
+
vecX = frame.axes.y.left.xDir;
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
if (positionMode === 'chart') {
|
|
386
|
+
// Labels preserve their direction relative to the chart
|
|
387
|
+
// nothing to do
|
|
388
|
+
}
|
|
389
|
+
else if (positionMode === 'flap') {
|
|
390
|
+
// Labels are rotated around the axis direction to face the screen
|
|
391
|
+
if (!axis.horiz) { // Y Axis
|
|
392
|
+
vecX = { x: Math.cos(beta), y: 0, z: Math.sin(beta) };
|
|
393
|
+
}
|
|
394
|
+
else { // X and Z Axis
|
|
395
|
+
var sin = Math.sin(alpha);
|
|
396
|
+
var cos = Math.cos(alpha);
|
|
397
|
+
if (axis.opposite) {
|
|
398
|
+
sin = -sin;
|
|
399
|
+
}
|
|
400
|
+
if (reverseFlap) {
|
|
401
|
+
sin = -sin;
|
|
402
|
+
}
|
|
403
|
+
vecY = { x: vecX.z * sin, y: cos, z: -vecX.x * sin };
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
else if (positionMode === 'ortho') {
|
|
407
|
+
// Labels will be rotated to be ortogonal to the axis
|
|
408
|
+
if (!axis.horiz) { // Y Axis
|
|
409
|
+
vecX = { x: Math.cos(beta), y: 0, z: Math.sin(beta) };
|
|
410
|
+
}
|
|
411
|
+
else { // X and Z Axis
|
|
412
|
+
var sina = Math.sin(alpha);
|
|
413
|
+
var cosa = Math.cos(alpha);
|
|
414
|
+
var sinb = Math.sin(beta);
|
|
415
|
+
var cosb = Math.cos(beta);
|
|
416
|
+
var vecZ = { x: sinb * cosa, y: -sina, z: -cosa * cosb };
|
|
417
|
+
vecY = {
|
|
418
|
+
x: vecX.y * vecZ.z - vecX.z * vecZ.y,
|
|
419
|
+
y: vecX.z * vecZ.x - vecX.x * vecZ.z,
|
|
420
|
+
z: vecX.x * vecZ.y - vecX.y * vecZ.x
|
|
421
|
+
};
|
|
422
|
+
var scale = 1 / Math.sqrt(vecY.x * vecY.x + vecY.y * vecY.y + vecY.z * vecY.z);
|
|
423
|
+
if (reverseFlap) {
|
|
424
|
+
scale = -scale;
|
|
425
|
+
}
|
|
426
|
+
vecY = {
|
|
427
|
+
x: scale * vecY.x, y: scale * vecY.y, z: scale * vecY.z
|
|
428
|
+
};
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
else { // positionMode == 'offset'
|
|
432
|
+
// Labels will be skewd to maintain vertical / horizontal offsets
|
|
433
|
+
// from axis
|
|
434
|
+
if (!axis.horiz) { // Y Axis
|
|
435
|
+
vecX = { x: Math.cos(beta), y: 0, z: Math.sin(beta) };
|
|
436
|
+
}
|
|
437
|
+
else { // X and Z Axis
|
|
438
|
+
vecY = {
|
|
439
|
+
x: Math.sin(beta) * Math.sin(alpha),
|
|
440
|
+
y: Math.cos(alpha),
|
|
441
|
+
z: -Math.cos(beta) * Math.sin(alpha)
|
|
442
|
+
};
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
pos.x += offsetX * vecX.x + offsetY * vecY.x;
|
|
446
|
+
pos.y += offsetX * vecX.y + offsetY * vecY.y;
|
|
447
|
+
pos.z += offsetX * vecX.z + offsetY * vecY.z;
|
|
448
|
+
var projected = perspective([pos], axis.chart)[0];
|
|
449
|
+
if (skew) {
|
|
450
|
+
// Check if the label text would be mirrored
|
|
451
|
+
var isMirrored = shapeArea(perspective([
|
|
452
|
+
pos,
|
|
453
|
+
{ x: pos.x + vecX.x, y: pos.y + vecX.y, z: pos.z + vecX.z },
|
|
454
|
+
{ x: pos.x + vecY.x, y: pos.y + vecY.y, z: pos.z + vecY.z }
|
|
455
|
+
], axis.chart)) < 0;
|
|
456
|
+
if (isMirrored) {
|
|
457
|
+
vecX = { x: -vecX.x, y: -vecX.y, z: -vecX.z };
|
|
458
|
+
}
|
|
459
|
+
var pointsProjected = perspective([
|
|
460
|
+
{ x: pos.x, y: pos.y, z: pos.z },
|
|
461
|
+
{ x: pos.x + vecX.x, y: pos.y + vecX.y, z: pos.z + vecX.z },
|
|
462
|
+
{ x: pos.x + vecY.x, y: pos.y + vecY.y, z: pos.z + vecY.z }
|
|
463
|
+
], axis.chart);
|
|
464
|
+
projected.matrix = [
|
|
465
|
+
pointsProjected[1].x - pointsProjected[0].x,
|
|
466
|
+
pointsProjected[1].y - pointsProjected[0].y,
|
|
467
|
+
pointsProjected[2].x - pointsProjected[0].x,
|
|
468
|
+
pointsProjected[2].y - pointsProjected[0].y,
|
|
469
|
+
projected.x,
|
|
470
|
+
projected.y
|
|
471
|
+
];
|
|
472
|
+
projected.matrix[4] -= projected.x * projected.matrix[0] +
|
|
473
|
+
projected.y * projected.matrix[2];
|
|
474
|
+
projected.matrix[5] -= projected.x * projected.matrix[1] +
|
|
475
|
+
projected.y * projected.matrix[3];
|
|
476
|
+
}
|
|
477
|
+
return projected;
|
|
478
|
+
};
|
|
479
|
+
/**
|
|
480
|
+
* @private
|
|
481
|
+
*/
|
|
482
|
+
Axis3DAdditions.prototype.swapZ = function (p, insidePlotArea) {
|
|
483
|
+
var axis = this.axis;
|
|
484
|
+
if (axis.isZAxis) {
|
|
485
|
+
var plotLeft = insidePlotArea ? 0 : axis.chart.plotLeft;
|
|
486
|
+
return {
|
|
487
|
+
x: plotLeft + p.z,
|
|
488
|
+
y: p.y,
|
|
489
|
+
z: p.x - plotLeft
|
|
490
|
+
};
|
|
491
|
+
}
|
|
492
|
+
return p;
|
|
493
|
+
};
|
|
494
|
+
return Axis3DAdditions;
|
|
495
|
+
}());
|
|
496
|
+
/* *
|
|
497
|
+
*
|
|
498
|
+
* Default Export
|
|
499
|
+
*
|
|
500
|
+
* */
|
|
501
|
+
export default Axis3DAdditions;
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
/* *
|
|
2
|
+
*
|
|
3
|
+
* (c) 2010-2021 Torstein Honsi
|
|
4
|
+
*
|
|
5
|
+
* Extenstion for 3d axes
|
|
6
|
+
*
|
|
7
|
+
* License: www.highcharts.com/license
|
|
8
|
+
*
|
|
9
|
+
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
|
|
10
|
+
*
|
|
11
|
+
* */
|
|
12
|
+
'use strict';
|
|
13
|
+
/* *
|
|
14
|
+
*
|
|
15
|
+
* Constants
|
|
16
|
+
*
|
|
17
|
+
* */
|
|
18
|
+
/**
|
|
19
|
+
* @optionparent xAxis
|
|
20
|
+
*/
|
|
21
|
+
var Axis3DDefaults = {
|
|
22
|
+
labels: {
|
|
23
|
+
/**
|
|
24
|
+
* Defines how the labels are be repositioned according to the 3D
|
|
25
|
+
* chart orientation.
|
|
26
|
+
*
|
|
27
|
+
* - `'offset'`: Maintain a fixed horizontal/vertical distance from
|
|
28
|
+
* the tick marks, despite the chart orientation. This is the
|
|
29
|
+
* backwards compatible behavior, and causes skewing of X and Z
|
|
30
|
+
* axes.
|
|
31
|
+
*
|
|
32
|
+
* - `'chart'`: Preserve 3D position relative to the chart. This
|
|
33
|
+
* looks nice, but hard to read if the text isn't forward-facing.
|
|
34
|
+
*
|
|
35
|
+
* - `'flap'`: Rotated text along the axis to compensate for the
|
|
36
|
+
* chart orientation. This tries to maintain text as legible as
|
|
37
|
+
* possible on all orientations.
|
|
38
|
+
*
|
|
39
|
+
* - `'ortho'`: Rotated text along the axis direction so that the
|
|
40
|
+
* labels are orthogonal to the axis. This is very similar to
|
|
41
|
+
* `'flap'`, but prevents skewing the labels (X and Y scaling are
|
|
42
|
+
* still present).
|
|
43
|
+
*
|
|
44
|
+
* @sample highcharts/3d/skewed-labels/
|
|
45
|
+
* Skewed labels
|
|
46
|
+
*
|
|
47
|
+
* @since 5.0.15
|
|
48
|
+
* @validvalue ['offset', 'chart', 'flap', 'ortho']
|
|
49
|
+
* @product highcharts
|
|
50
|
+
* @requires highcharts-3d
|
|
51
|
+
*/
|
|
52
|
+
position3d: 'offset',
|
|
53
|
+
/**
|
|
54
|
+
* If enabled, the axis labels will skewed to follow the
|
|
55
|
+
* perspective.
|
|
56
|
+
*
|
|
57
|
+
* This will fix overlapping labels and titles, but texts become
|
|
58
|
+
* less legible due to the distortion.
|
|
59
|
+
*
|
|
60
|
+
* The final appearance depends heavily on `labels.position3d`.
|
|
61
|
+
*
|
|
62
|
+
* @sample highcharts/3d/skewed-labels/
|
|
63
|
+
* Skewed labels
|
|
64
|
+
*
|
|
65
|
+
* @since 5.0.15
|
|
66
|
+
* @product highcharts
|
|
67
|
+
* @requires highcharts-3d
|
|
68
|
+
*/
|
|
69
|
+
skew3d: false
|
|
70
|
+
},
|
|
71
|
+
title: {
|
|
72
|
+
/**
|
|
73
|
+
* Defines how the title is repositioned according to the 3D chart
|
|
74
|
+
* orientation.
|
|
75
|
+
*
|
|
76
|
+
* - `'offset'`: Maintain a fixed horizontal/vertical distance from
|
|
77
|
+
* the tick marks, despite the chart orientation. This is the
|
|
78
|
+
* backwards compatible behavior, and causes skewing of X and Z
|
|
79
|
+
* axes.
|
|
80
|
+
*
|
|
81
|
+
* - `'chart'`: Preserve 3D position relative to the chart. This
|
|
82
|
+
* looks nice, but hard to read if the text isn't forward-facing.
|
|
83
|
+
*
|
|
84
|
+
* - `'flap'`: Rotated text along the axis to compensate for the
|
|
85
|
+
* chart orientation. This tries to maintain text as legible as
|
|
86
|
+
* possible on all orientations.
|
|
87
|
+
*
|
|
88
|
+
* - `'ortho'`: Rotated text along the axis direction so that the
|
|
89
|
+
* labels are orthogonal to the axis. This is very similar to
|
|
90
|
+
* `'flap'`, but prevents skewing the labels (X and Y scaling are
|
|
91
|
+
* still present).
|
|
92
|
+
*
|
|
93
|
+
* - `undefined`: Will use the config from `labels.position3d`
|
|
94
|
+
*
|
|
95
|
+
* @sample highcharts/3d/skewed-labels/
|
|
96
|
+
* Skewed labels
|
|
97
|
+
*
|
|
98
|
+
* @type {"offset"|"chart"|"flap"|"ortho"|null}
|
|
99
|
+
* @since 5.0.15
|
|
100
|
+
* @product highcharts
|
|
101
|
+
* @requires highcharts-3d
|
|
102
|
+
*/
|
|
103
|
+
position3d: null,
|
|
104
|
+
/**
|
|
105
|
+
* If enabled, the axis title will skewed to follow the perspective.
|
|
106
|
+
*
|
|
107
|
+
* This will fix overlapping labels and titles, but texts become
|
|
108
|
+
* less legible due to the distortion.
|
|
109
|
+
*
|
|
110
|
+
* The final appearance depends heavily on `title.position3d`.
|
|
111
|
+
*
|
|
112
|
+
* A `null` value will use the config from `labels.skew3d`.
|
|
113
|
+
*
|
|
114
|
+
* @sample highcharts/3d/skewed-labels/
|
|
115
|
+
* Skewed labels
|
|
116
|
+
*
|
|
117
|
+
* @type {boolean|null}
|
|
118
|
+
* @since 5.0.15
|
|
119
|
+
* @product highcharts
|
|
120
|
+
* @requires highcharts-3d
|
|
121
|
+
*/
|
|
122
|
+
skew3d: null
|
|
123
|
+
}
|
|
124
|
+
};
|
|
125
|
+
/* *
|
|
126
|
+
*
|
|
127
|
+
* Default Export
|
|
128
|
+
*
|
|
129
|
+
* */
|
|
130
|
+
export default Axis3DDefaults;
|
|
@@ -201,7 +201,7 @@ var AxisDefaults;
|
|
|
201
201
|
* @sample {highcharts} highcharts/xaxis/crosshair-both/
|
|
202
202
|
* Crosshair on both axes
|
|
203
203
|
* @sample {highstock} stock/xaxis/crosshairs-xy/
|
|
204
|
-
* Crosshair on both axes
|
|
204
|
+
* Crosshair on both axes, with y axis label
|
|
205
205
|
* @sample {highmaps} highcharts/xaxis/crosshair-both/
|
|
206
206
|
* Crosshair on both axes
|
|
207
207
|
*
|
|
@@ -1427,7 +1427,9 @@ var AxisDefaults;
|
|
|
1427
1427
|
* @sample {highstock} stock/xaxis/showfirstlabel/
|
|
1428
1428
|
* Labels below plot lines on Y axis
|
|
1429
1429
|
*
|
|
1430
|
-
* @
|
|
1430
|
+
* @type {boolean}
|
|
1431
|
+
* @default undefined
|
|
1432
|
+
* @product highcharts highstock gantt
|
|
1431
1433
|
*/
|
|
1432
1434
|
showLastLabel: true,
|
|
1433
1435
|
/**
|
|
@@ -2188,12 +2190,12 @@ var AxisDefaults;
|
|
|
2188
2190
|
* [data classes](https://api.highcharts.com/highmaps#colorAxis.dataClasses)
|
|
2189
2191
|
* from the Highmaps color axis.
|
|
2190
2192
|
*
|
|
2193
|
+
* @sample {highcharts} highcharts/demo/gauge-solid/
|
|
2194
|
+
* Gauge with stops
|
|
2195
|
+
*
|
|
2191
2196
|
* @see [minColor](#yAxis.minColor)
|
|
2192
2197
|
* @see [maxColor](#yAxis.maxColor)
|
|
2193
2198
|
*
|
|
2194
|
-
* @sample {highcharts} highcharts/demo/gauge-solid/
|
|
2195
|
-
* True by default
|
|
2196
|
-
*
|
|
2197
2199
|
* @type {Array<Array<number,Highcharts.ColorType>>}
|
|
2198
2200
|
* @since 4.0
|
|
2199
2201
|
* @product highcharts
|
|
@@ -2294,6 +2296,18 @@ var AxisDefaults;
|
|
|
2294
2296
|
* @see [tickPositions](#xAxis.tickPositions)
|
|
2295
2297
|
*/
|
|
2296
2298
|
tickPixelInterval: 72,
|
|
2299
|
+
/**
|
|
2300
|
+
* Whether to show the last tick label.
|
|
2301
|
+
*
|
|
2302
|
+
* @productdesc {highcharts|gantt}
|
|
2303
|
+
* Defaults to `true` on cartesian charts, and `false` on polar charts.
|
|
2304
|
+
*
|
|
2305
|
+
* @productdesc {highstock}
|
|
2306
|
+
* Defaults to `true` for categorized yAxis and `false` for other types
|
|
2307
|
+
* of yAxis.
|
|
2308
|
+
*
|
|
2309
|
+
* @default undefined
|
|
2310
|
+
*/
|
|
2297
2311
|
showLastLabel: true,
|
|
2298
2312
|
/**
|
|
2299
2313
|
* @extends xAxis.labels
|
|
@@ -2346,8 +2360,7 @@ var AxisDefaults;
|
|
|
2346
2360
|
* Solid gauge labels auto aligned
|
|
2347
2361
|
*
|
|
2348
2362
|
* @type {Highcharts.AlignValue}
|
|
2349
|
-
* @default {
|
|
2350
|
-
* @default {highstock} left
|
|
2363
|
+
* @default {highstock} right
|
|
2351
2364
|
* @apioption yAxis.labels.align
|
|
2352
2365
|
*/
|
|
2353
2366
|
/**
|