highcharts 9.3.2 → 10.1.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/highcharts.css +19 -2
- package/css/highcharts.scss +17 -2
- package/css/themes/dark-unica.css +19 -2
- package/css/themes/grid-light.css +19 -2
- package/css/themes/sand-signika.css +19 -2
- package/es-modules/Accessibility/A11yI18n.js +4 -4
- package/es-modules/Accessibility/Accessibility.js +1 -1
- package/es-modules/Accessibility/Components/ContainerComponent.js +8 -9
- package/es-modules/Accessibility/Components/InfoRegionsComponent.js +14 -9
- package/es-modules/Accessibility/Components/LegendComponent.js +31 -23
- package/es-modules/Accessibility/Components/MenuComponent.js +15 -5
- package/es-modules/Accessibility/Components/RangeSelectorComponent.js +2 -2
- package/es-modules/Accessibility/Components/SeriesComponent/ForcedMarkers.js +7 -6
- package/es-modules/Accessibility/Components/SeriesComponent/NewDataAnnouncer.js +1 -1
- package/es-modules/Accessibility/Components/SeriesComponent/SeriesComponent.js +0 -1
- package/es-modules/Accessibility/Components/SeriesComponent/SeriesDescriber.js +34 -18
- package/es-modules/Accessibility/Components/SeriesComponent/SeriesKeyboardNavigation.js +84 -33
- package/es-modules/Accessibility/Components/ZoomComponent.js +13 -10
- package/es-modules/Accessibility/FocusBorder.js +6 -5
- package/es-modules/Accessibility/HighContrastMode.js +2 -2
- package/es-modules/Accessibility/KeyboardNavigation.js +113 -98
- package/es-modules/Accessibility/Options/LangOptions.js +36 -31
- package/es-modules/Accessibility/Options/Options.js +66 -3
- package/es-modules/Accessibility/ProxyElement.js +14 -6
- package/es-modules/Accessibility/ProxyProvider.js +10 -2
- package/es-modules/Accessibility/Utils/ChartUtilities.js +9 -4
- package/es-modules/Core/Axis/Axis.js +180 -73
- package/es-modules/Core/Axis/Color/ColorAxis.js +22 -5
- package/es-modules/Core/Axis/GridAxis.js +15 -11
- package/es-modules/Core/Axis/LogarithmicAxis.js +1 -1
- package/es-modules/Core/Axis/OrdinalAxis.js +3 -2
- package/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBand.js +1 -1
- package/es-modules/Core/Axis/StackingAxis.js +0 -1
- package/es-modules/Core/Axis/Tick.js +2 -2
- package/es-modules/Core/Axis/TreeGridTick.js +11 -0
- package/es-modules/Core/Chart/Chart.js +21 -3
- package/es-modules/Core/Chart/Chart3D.js +1 -11
- package/es-modules/Core/Chart/ChartDefaults.js +43 -11
- package/es-modules/Core/Chart/MapChart.js +1 -6
- package/es-modules/Core/Chart/StockChart.js +1 -1
- package/es-modules/Core/DefaultOptions.js +8 -4
- package/es-modules/Core/Geometry/PolygonClip.js +84 -0
- package/es-modules/Core/Globals.js +4 -18
- package/es-modules/Core/HttpUtilities.js +13 -8
- package/es-modules/Core/Legend/Legend.js +11 -9
- package/es-modules/Core/Navigator.js +10 -7
- package/es-modules/Core/Pointer.js +15 -11
- package/es-modules/Core/Renderer/HTML/AST.js +68 -8
- package/es-modules/Core/Renderer/SVG/SVGElement.js +47 -63
- package/es-modules/Core/Renderer/SVG/SVGElement3D.js +17 -5
- package/es-modules/Core/Renderer/SVG/SVGRenderer.js +31 -28
- package/es-modules/Core/Renderer/SVG/SVGRenderer3D.js +1 -1
- package/es-modules/Core/Renderer/SVG/TextBuilder.js +12 -10
- package/es-modules/Core/Scrollbar.js +9 -5
- package/es-modules/Core/Series/DataLabel.js +65 -36
- package/es-modules/Core/Series/Point.js +2 -2
- package/es-modules/Core/Series/Series.js +52 -22
- package/es-modules/Core/Series/SeriesDefaults.js +4 -1
- package/es-modules/Core/Tooltip.js +14 -31
- package/es-modules/Core/Utilities.js +29 -29
- package/es-modules/Extensions/Annotations/Annotations.js +9 -2
- package/es-modules/Extensions/Annotations/ControlPoint.js +1 -1
- package/es-modules/Extensions/Annotations/MockPoint.js +1 -1
- package/es-modules/Extensions/Annotations/NavigationBindings.js +9 -1
- package/es-modules/Extensions/Annotations/Popup.js +1 -1
- package/es-modules/Extensions/Annotations/Types/BasicAnnotation.js +5 -3
- package/es-modules/Extensions/Boost/BoostInit.js +6 -1
- package/es-modules/Extensions/Boost/BoostOptions.js +26 -0
- package/es-modules/Extensions/Boost/Boostables.js +1 -0
- package/es-modules/Extensions/Boost/WGLRenderer.js +48 -37
- package/es-modules/Extensions/Boost/WGLShader.js +4 -3
- package/es-modules/Extensions/Breadcrumbs.js +873 -0
- package/es-modules/Extensions/Data.js +26 -14
- package/es-modules/Extensions/DataGrouping.js +8 -3
- package/es-modules/Extensions/Debugger/ErrorMessages.js +4 -0
- package/es-modules/Extensions/DraggablePoints.js +9 -7
- package/es-modules/Extensions/Drilldown.js +150 -95
- package/es-modules/Extensions/ExportData.js +1 -2
- package/es-modules/Extensions/Exporting/Exporting.js +31 -20
- package/es-modules/Extensions/Exporting/ExportingDefaults.js +49 -1
- package/es-modules/Extensions/FullScreen.js +121 -54
- package/es-modules/Extensions/GeoJSON.js +151 -125
- package/es-modules/Extensions/MarkerClusters.js +34 -20
- package/es-modules/Extensions/OfflineExporting/OfflineExporting.js +110 -22
- package/es-modules/Extensions/OfflineExporting/OfflineExportingDefaults.js +1 -1
- package/es-modules/Extensions/Oldie/Oldie.js +1 -1
- package/es-modules/Extensions/OverlappingDataLabels.js +5 -4
- package/es-modules/Extensions/Polar.js +4 -1
- package/es-modules/Extensions/ScrollablePlotArea.js +5 -1
- package/es-modules/Extensions/Stacking.js +4 -3
- package/es-modules/Extensions/Themes/HighContrastDark.js +10 -10
- package/es-modules/Extensions/Themes/HighContrastLight.js +10 -10
- package/es-modules/Maps/MapNavigation.js +50 -13
- package/es-modules/Maps/MapPointer.js +16 -0
- package/es-modules/Maps/MapUtilities.js +56 -0
- package/es-modules/Maps/MapView.js +611 -136
- package/es-modules/Maps/MapViewInsetsOptionsDefault.js +148 -0
- package/es-modules/Maps/MapViewOptionsDefault.js +60 -20
- package/es-modules/Maps/Projection.js +169 -77
- package/es-modules/Maps/Projections/EqualEarth.js +15 -6
- package/es-modules/Maps/Projections/LambertConformalConic.js +27 -19
- package/es-modules/Maps/Projections/Miller.js +23 -10
- package/es-modules/Maps/Projections/Orthographic.js +21 -10
- package/es-modules/Maps/Projections/WebMercator.js +25 -13
- package/es-modules/Series/ArcDiagram/ArcDiagramPoint.js +77 -0
- package/es-modules/Series/ArcDiagram/ArcDiagramSeries.js +589 -0
- package/es-modules/Series/CenteredUtilities.js +6 -1
- package/es-modules/Series/Column/ColumnSeries.js +4 -3
- package/es-modules/Series/DataModifyComposition.js +1 -0
- package/es-modules/Series/DependencyWheel/DependencyWheelSeries.js +2 -2
- package/es-modules/Series/DrawPointComposition.js +7 -4
- package/es-modules/Series/Flags/FlagsSeries.js +7 -12
- package/es-modules/Series/Gauge/GaugeSeries.js +1 -1
- package/es-modules/Series/Heatmap/HeatmapSeries.js +13 -20
- package/es-modules/Series/Lollipop/LollipopSeries.js +1 -1
- package/es-modules/Series/Map/MapPoint.js +24 -1
- package/es-modules/Series/Map/MapSeries.js +206 -169
- package/es-modules/Series/MapBubble/MapBubblePoint.js +16 -24
- package/es-modules/Series/MapBubble/MapBubbleSeries.js +58 -1
- package/es-modules/Series/MapPoint/MapPointPoint.js +2 -8
- package/es-modules/Series/MapPoint/MapPointSeries.js +40 -14
- package/es-modules/Series/NodesComposition.js +60 -13
- package/es-modules/Series/OHLC/OHLCSeries.js +7 -0
- package/es-modules/Series/Organization/OrganizationPoint.js +68 -2
- package/es-modules/Series/Organization/OrganizationSeries.js +79 -25
- package/es-modules/Series/Pie/PieDataLabel.js +3 -1
- package/es-modules/Series/Pie/PiePoint.js +12 -5
- package/es-modules/Series/Pie/PieSeries.js +12 -1
- package/es-modules/Series/Pie3D/Pie3DSeries.js +19 -0
- package/es-modules/Series/Sankey/SankeyColumnComposition.js +193 -0
- package/es-modules/Series/Sankey/SankeyPoint.js +37 -1
- package/es-modules/Series/Sankey/SankeySeries.js +13 -128
- package/es-modules/Series/Scatter/ScatterSeries.js +1 -1
- package/es-modules/Series/Sunburst/SunburstSeries.js +14 -3
- package/es-modules/Series/Treemap/TreemapSeries.js +88 -80
- package/es-modules/Series/Waterfall/WaterfallSeries.js +2 -0
- package/es-modules/Series/Wordcloud/WordcloudSeries.js +4 -4
- package/es-modules/Stock/Indicators/SMA/SMAIndicator.js +9 -2
- package/es-modules/Stock/StockToolsBindings.js +31 -24
- package/es-modules/Stock/StockToolsGui.js +1 -1
- package/es-modules/masters/highcharts-3d.src.js +1 -1
- 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 +1 -1
- 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 +14 -0
- 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 +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 +2 -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 +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 +5 -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/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/tilemap.src.js +1 -1
- package/es-modules/masters/modules/timeline.src.js +1 -1
- package/es-modules/masters/modules/treegrid.src.js +1 -1
- package/es-modules/masters/modules/treemap.src.js +5 -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/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 +99 -98
- package/highcharts-3d.js.map +1 -1
- package/highcharts-3d.src.js +51 -21
- package/highcharts-gantt.js +808 -800
- package/highcharts-gantt.js.map +1 -1
- package/highcharts-gantt.src.js +781 -426
- package/highcharts-more.js +195 -194
- package/highcharts-more.js.map +1 -1
- package/highcharts-more.src.js +18 -4
- package/highcharts.d.ts +3224 -542
- package/highcharts.js +592 -584
- package/highcharts.js.map +1 -1
- package/highcharts.src.d.ts +3224 -542
- package/highcharts.src.js +732 -400
- package/highmaps.js +760 -728
- package/highmaps.js.map +1 -1
- package/highmaps.src.js +3840 -2189
- package/highstock.js +793 -786
- package/highstock.js.map +1 -1
- package/highstock.src.js +783 -432
- package/indicators/acceleration-bands.js +12 -11
- package/indicators/acceleration-bands.js.map +1 -1
- package/indicators/acceleration-bands.src.js +11 -2
- package/indicators/accumulation-distribution.js +5 -5
- package/indicators/accumulation-distribution.js.map +1 -1
- package/indicators/accumulation-distribution.src.js +11 -2
- package/indicators/ao.js +6 -6
- package/indicators/ao.js.map +1 -1
- package/indicators/ao.src.js +11 -2
- package/indicators/apo.js +5 -5
- package/indicators/apo.js.map +1 -1
- package/indicators/apo.src.js +11 -2
- package/indicators/aroon-oscillator.js +10 -10
- package/indicators/aroon-oscillator.js.map +1 -1
- package/indicators/aroon-oscillator.src.js +11 -2
- package/indicators/aroon.js +11 -11
- package/indicators/aroon.js.map +1 -1
- package/indicators/aroon.src.js +11 -2
- package/indicators/atr.js +5 -5
- package/indicators/atr.js.map +1 -1
- package/indicators/atr.src.js +11 -2
- package/indicators/bollinger-bands.js +12 -12
- package/indicators/bollinger-bands.js.map +1 -1
- package/indicators/bollinger-bands.src.js +11 -2
- package/indicators/cci.js +5 -5
- package/indicators/cci.js.map +1 -1
- package/indicators/cci.src.js +11 -2
- package/indicators/chaikin.js +8 -8
- package/indicators/chaikin.js.map +1 -1
- package/indicators/chaikin.src.js +11 -2
- package/indicators/cmf.js +6 -6
- package/indicators/cmf.js.map +1 -1
- package/indicators/cmf.src.js +11 -2
- package/indicators/cmo.js +5 -5
- package/indicators/cmo.js.map +1 -1
- package/indicators/cmo.src.js +11 -2
- package/indicators/dema.js +5 -5
- package/indicators/dema.js.map +1 -1
- package/indicators/dema.src.js +11 -2
- package/indicators/disparity-index.js +6 -6
- package/indicators/disparity-index.js.map +1 -1
- package/indicators/disparity-index.src.js +11 -2
- package/indicators/dmi.js +12 -12
- package/indicators/dmi.js.map +1 -1
- package/indicators/dmi.src.js +11 -2
- package/indicators/dpo.js +5 -5
- package/indicators/dpo.js.map +1 -1
- package/indicators/dpo.src.js +11 -2
- package/indicators/ema.js +2 -1
- package/indicators/ema.js.map +1 -1
- package/indicators/ema.src.js +10 -1
- package/indicators/ichimoku-kinko-hyo.js +16 -16
- package/indicators/ichimoku-kinko-hyo.js.map +1 -1
- package/indicators/ichimoku-kinko-hyo.src.js +11 -2
- package/indicators/indicators-all.js +195 -194
- package/indicators/indicators-all.js.map +1 -1
- package/indicators/indicators-all.src.js +21 -5
- package/indicators/indicators.js +13 -12
- package/indicators/indicators.js.map +1 -1
- package/indicators/indicators.src.js +21 -5
- package/indicators/keltner-channels.js +12 -11
- package/indicators/keltner-channels.js.map +1 -1
- package/indicators/keltner-channels.src.js +11 -2
- package/indicators/klinger.js +13 -13
- package/indicators/klinger.js.map +1 -1
- package/indicators/klinger.src.js +11 -2
- package/indicators/macd.js +12 -11
- package/indicators/macd.js.map +1 -1
- package/indicators/macd.src.js +11 -2
- package/indicators/mfi.js +6 -6
- package/indicators/mfi.js.map +1 -1
- package/indicators/mfi.src.js +11 -2
- package/indicators/momentum.js +5 -5
- package/indicators/momentum.js.map +1 -1
- package/indicators/momentum.src.js +11 -2
- package/indicators/natr.js +5 -4
- package/indicators/natr.js.map +1 -1
- package/indicators/natr.src.js +11 -2
- package/indicators/obv.js +5 -5
- package/indicators/obv.js.map +1 -1
- package/indicators/obv.src.js +11 -2
- package/indicators/pivot-points.js +11 -11
- package/indicators/pivot-points.js.map +1 -1
- package/indicators/pivot-points.src.js +11 -2
- package/indicators/ppo.js +5 -5
- package/indicators/ppo.js.map +1 -1
- package/indicators/ppo.src.js +11 -2
- package/indicators/price-channel.js +11 -11
- package/indicators/price-channel.js.map +1 -1
- package/indicators/price-channel.src.js +11 -2
- package/indicators/price-envelopes.js +8 -8
- package/indicators/price-envelopes.js.map +1 -1
- package/indicators/price-envelopes.src.js +11 -2
- package/indicators/psar.js +7 -6
- package/indicators/psar.js.map +1 -1
- package/indicators/psar.src.js +11 -2
- package/indicators/regressions.js +12 -12
- package/indicators/regressions.js.map +1 -1
- package/indicators/regressions.src.js +11 -2
- package/indicators/roc.js +5 -5
- package/indicators/roc.js.map +1 -1
- package/indicators/roc.src.js +11 -2
- package/indicators/rsi.js +6 -5
- package/indicators/rsi.js.map +1 -1
- package/indicators/rsi.src.js +11 -2
- package/indicators/slow-stochastic.js +5 -5
- package/indicators/slow-stochastic.js.map +1 -1
- package/indicators/slow-stochastic.src.js +11 -2
- package/indicators/stochastic.js +12 -12
- package/indicators/stochastic.js.map +1 -1
- package/indicators/stochastic.src.js +11 -2
- package/indicators/supertrend.js +10 -10
- package/indicators/supertrend.js.map +1 -1
- package/indicators/supertrend.src.js +11 -2
- package/indicators/tema.js +6 -6
- package/indicators/tema.js.map +1 -1
- package/indicators/tema.src.js +11 -2
- package/indicators/trendline.js +5 -5
- package/indicators/trendline.js.map +1 -1
- package/indicators/trendline.src.js +11 -2
- package/indicators/trix.js +4 -4
- package/indicators/trix.js.map +1 -1
- package/indicators/trix.src.js +11 -2
- package/indicators/volume-by-price.js +17 -17
- package/indicators/volume-by-price.js.map +1 -1
- package/indicators/volume-by-price.src.js +11 -2
- package/indicators/vwap.js +5 -5
- package/indicators/vwap.js.map +1 -1
- package/indicators/vwap.src.js +11 -2
- package/indicators/williams-r.js +6 -5
- package/indicators/williams-r.js.map +1 -1
- package/indicators/williams-r.src.js +11 -2
- package/indicators/wma.js +5 -5
- package/indicators/wma.js.map +1 -1
- package/indicators/wma.src.js +11 -2
- package/indicators/zigzag.js +6 -6
- package/indicators/zigzag.js.map +1 -1
- package/indicators/zigzag.src.js +11 -2
- package/lib/jspdf.js +299 -184
- package/lib/jspdf.src.js +25266 -18067
- package/lib/svg2pdf.js +35 -31
- package/lib/svg2pdf.src.js +5721 -4179
- package/modules/accessibility.js +245 -240
- package/modules/accessibility.js.map +1 -1
- package/modules/accessibility.src.js +510 -283
- package/modules/annotations-advanced.js +144 -144
- package/modules/annotations-advanced.js.map +1 -1
- package/modules/annotations-advanced.src.js +37 -11
- package/modules/annotations.js +79 -79
- package/modules/annotations.js.map +1 -1
- package/modules/annotations.src.js +32 -8
- package/modules/arc-diagram.js +25 -0
- package/modules/arc-diagram.js.map +1 -0
- package/modules/arc-diagram.src.js +778 -0
- package/modules/arrow-symbols.js +4 -3
- package/modules/arrow-symbols.js.map +1 -1
- package/modules/arrow-symbols.src.js +11 -2
- package/modules/boost-canvas.js +15 -15
- package/modules/boost-canvas.js.map +1 -1
- package/modules/boost-canvas.src.js +11 -2
- package/modules/boost.js +80 -79
- package/modules/boost.js.map +1 -1
- package/modules/boost.src.js +71 -43
- package/modules/broken-axis.js +13 -13
- package/modules/broken-axis.js.map +1 -1
- package/modules/broken-axis.src.js +11 -2
- package/modules/bullet.js +9 -9
- package/modules/bullet.js.map +1 -1
- package/modules/bullet.src.js +11 -2
- package/modules/coloraxis.js +24 -24
- package/modules/coloraxis.js.map +1 -1
- package/modules/coloraxis.src.js +33 -7
- package/modules/current-date-indicator.js +5 -4
- package/modules/current-date-indicator.js.map +1 -1
- package/modules/current-date-indicator.src.js +11 -2
- package/modules/cylinder.js +11 -11
- package/modules/cylinder.js.map +1 -1
- package/modules/cylinder.src.js +11 -2
- package/modules/data.js +34 -33
- package/modules/data.js.map +1 -1
- package/modules/data.src.js +59 -32
- package/modules/datagrouping.js +21 -20
- package/modules/datagrouping.js.map +1 -1
- package/modules/datagrouping.src.js +19 -5
- package/modules/debugger.js +8 -7
- package/modules/debugger.js.map +1 -1
- package/modules/debugger.src.js +15 -2
- package/modules/dependency-wheel.js +12 -11
- package/modules/dependency-wheel.js.map +1 -1
- package/modules/dependency-wheel.src.js +14 -5
- package/modules/dotplot.js +6 -6
- package/modules/dotplot.js.map +1 -1
- package/modules/dotplot.src.js +11 -2
- package/modules/drag-panes.js +10 -10
- package/modules/drag-panes.js.map +1 -1
- package/modules/drag-panes.src.js +11 -2
- package/modules/draggable-points.js +35 -34
- package/modules/draggable-points.js.map +1 -1
- package/modules/draggable-points.src.js +20 -9
- package/modules/drilldown.d.ts +19 -0
- package/modules/drilldown.js +36 -25
- package/modules/drilldown.js.map +1 -1
- package/modules/drilldown.src.d.ts +19 -0
- package/modules/drilldown.src.js +1091 -106
- package/modules/dumbbell.js +17 -17
- package/modules/dumbbell.js.map +1 -1
- package/modules/dumbbell.src.js +11 -2
- package/modules/export-data.js +21 -20
- package/modules/export-data.js.map +1 -1
- package/modules/export-data.src.js +12 -4
- package/modules/exporting.js +39 -39
- package/modules/exporting.js.map +1 -1
- package/modules/exporting.src.js +227 -92
- package/modules/full-screen.js +8 -7
- package/modules/full-screen.js.map +1 -1
- package/modules/full-screen.src.js +135 -58
- package/modules/funnel.js +12 -12
- package/modules/funnel.js.map +1 -1
- package/modules/funnel.src.js +11 -2
- package/modules/funnel3d.js +21 -21
- package/modules/funnel3d.js.map +1 -1
- package/modules/funnel3d.src.js +11 -2
- package/modules/gantt.js +216 -215
- package/modules/gantt.js.map +1 -1
- package/modules/gantt.src.js +60 -28
- package/modules/grid-axis.js +23 -23
- package/modules/grid-axis.js.map +1 -1
- package/modules/grid-axis.src.js +27 -13
- package/modules/heatmap.js +40 -39
- package/modules/heatmap.js.map +1 -1
- package/modules/heatmap.src.js +46 -27
- package/modules/heikinashi.js +8 -8
- package/modules/heikinashi.js.map +1 -1
- package/modules/heikinashi.src.js +11 -2
- package/modules/histogram-bellcurve.js +13 -13
- package/modules/histogram-bellcurve.js.map +1 -1
- package/modules/histogram-bellcurve.src.js +11 -2
- package/modules/hollowcandlestick.js +9 -9
- package/modules/hollowcandlestick.js.map +1 -1
- package/modules/hollowcandlestick.src.js +11 -2
- package/modules/item-series.js +12 -12
- package/modules/item-series.js.map +1 -1
- package/modules/item-series.src.js +11 -2
- package/modules/lollipop.js +7 -7
- package/modules/lollipop.js.map +1 -1
- package/modules/lollipop.src.js +12 -3
- package/modules/map.d.ts +80 -43
- package/modules/map.js +169 -144
- package/modules/map.js.map +1 -1
- package/modules/map.src.d.ts +80 -43
- package/modules/map.src.js +8024 -6696
- package/modules/marker-clusters.js +36 -36
- package/modules/marker-clusters.js.map +1 -1
- package/modules/marker-clusters.src.js +47 -23
- package/modules/networkgraph.d.ts +5 -0
- package/modules/networkgraph.js +49 -48
- package/modules/networkgraph.js.map +1 -1
- package/modules/networkgraph.src.d.ts +5 -0
- package/modules/networkgraph.src.js +77 -15
- package/modules/no-data-to-display.js +5 -5
- package/modules/no-data-to-display.js.map +1 -1
- package/modules/no-data-to-display.src.js +11 -2
- package/modules/offline-exporting.js +20 -18
- package/modules/offline-exporting.js.map +1 -1
- package/modules/offline-exporting.src.js +126 -25
- package/modules/oldie-polyfills.js +7 -7
- package/modules/oldie-polyfills.js.map +1 -1
- package/modules/oldie-polyfills.src.js +11 -2
- package/modules/oldie.js +30 -30
- package/modules/oldie.js.map +1 -1
- package/modules/oldie.src.js +12 -3
- package/modules/organization.js +16 -14
- package/modules/organization.js.map +1 -1
- package/modules/organization.src.js +166 -32
- package/modules/overlapping-datalabels.js +3 -2
- package/modules/overlapping-datalabels.js.map +1 -1
- package/modules/overlapping-datalabels.src.js +11 -2
- package/modules/parallel-coordinates.js +11 -11
- package/modules/parallel-coordinates.js.map +1 -1
- package/modules/parallel-coordinates.src.js +11 -2
- package/modules/pareto.js +7 -7
- package/modules/pareto.js.map +1 -1
- package/modules/pareto.src.js +11 -2
- package/modules/pathfinder.js +31 -31
- package/modules/pathfinder.js.map +1 -1
- package/modules/pathfinder.src.js +11 -2
- package/modules/pattern-fill.js +14 -14
- package/modules/pattern-fill.js.map +1 -1
- package/modules/pattern-fill.src.js +11 -2
- package/modules/price-indicator.js +5 -5
- package/modules/price-indicator.js.map +1 -1
- package/modules/price-indicator.src.js +11 -2
- package/modules/pyramid3d.js +4 -4
- package/modules/pyramid3d.js.map +1 -1
- package/modules/pyramid3d.src.js +11 -2
- package/modules/sankey.d.ts +5 -0
- package/modules/sankey.js +32 -29
- package/modules/sankey.js.map +1 -1
- package/modules/sankey.src.d.ts +5 -0
- package/modules/sankey.src.js +341 -157
- package/modules/series-label.js +18 -17
- package/modules/series-label.js.map +1 -1
- package/modules/series-label.src.js +11 -2
- package/modules/solid-gauge.js +10 -10
- package/modules/solid-gauge.js.map +1 -1
- package/modules/solid-gauge.src.js +11 -2
- package/modules/sonification.js +59 -59
- package/modules/sonification.js.map +1 -1
- package/modules/sonification.src.js +11 -2
- package/modules/static-scale.js +5 -4
- package/modules/static-scale.js.map +1 -1
- package/modules/static-scale.src.js +11 -2
- package/modules/stock-tools.js +145 -145
- package/modules/stock-tools.js.map +1 -1
- package/modules/stock-tools.src.js +64 -32
- package/modules/stock.js +204 -204
- package/modules/stock.js.map +1 -1
- package/modules/stock.src.js +62 -34
- package/modules/streamgraph.js +5 -4
- package/modules/streamgraph.js.map +1 -1
- package/modules/streamgraph.src.js +11 -2
- package/modules/sunburst.d.ts +3 -0
- package/modules/sunburst.js +73 -60
- package/modules/sunburst.js.map +1 -1
- package/modules/sunburst.src.d.ts +3 -0
- package/modules/sunburst.src.js +1048 -97
- package/modules/tilemap.js +17 -17
- package/modules/tilemap.js.map +1 -1
- package/modules/tilemap.src.js +11 -2
- package/modules/timeline.js +18 -18
- package/modules/timeline.js.map +1 -1
- package/modules/timeline.src.js +11 -2
- package/modules/treegrid.js +57 -56
- package/modules/treegrid.js.map +1 -1
- package/modules/treegrid.src.js +38 -13
- package/modules/treemap.d.ts +3 -0
- package/modules/treemap.js +53 -41
- package/modules/treemap.js.map +1 -1
- package/modules/treemap.src.d.ts +3 -0
- package/modules/treemap.src.js +1037 -95
- package/modules/variable-pie.js +9 -9
- package/modules/variable-pie.js.map +1 -1
- package/modules/variable-pie.src.js +11 -2
- package/modules/variwide.js +12 -12
- package/modules/variwide.js.map +1 -1
- package/modules/variwide.src.js +11 -2
- package/modules/vector.js +8 -7
- package/modules/vector.js.map +1 -1
- package/modules/vector.src.js +11 -2
- package/modules/venn.js +31 -31
- package/modules/venn.js.map +1 -1
- package/modules/venn.src.js +18 -6
- package/modules/windbarb.js +15 -15
- package/modules/windbarb.js.map +1 -1
- package/modules/windbarb.src.js +11 -2
- package/modules/wordcloud.js +24 -23
- package/modules/wordcloud.js.map +1 -1
- package/modules/wordcloud.src.js +22 -10
- package/modules/xrange.js +16 -16
- package/modules/xrange.js.map +1 -1
- package/modules/xrange.src.js +11 -2
- package/package.json +1 -1
- package/themes/avocado.js +4 -3
- package/themes/avocado.js.map +1 -1
- package/themes/avocado.src.js +11 -2
- package/themes/brand-dark.js +9 -8
- package/themes/brand-dark.js.map +1 -1
- package/themes/brand-dark.src.js +11 -2
- package/themes/brand-light.js +8 -8
- package/themes/brand-light.js.map +1 -1
- package/themes/brand-light.src.js +11 -2
- package/themes/dark-blue.js +9 -8
- package/themes/dark-blue.js.map +1 -1
- package/themes/dark-blue.src.js +11 -2
- package/themes/dark-green.js +9 -8
- package/themes/dark-green.js.map +1 -1
- package/themes/dark-green.src.js +11 -2
- package/themes/dark-unica.js +8 -7
- package/themes/dark-unica.js.map +1 -1
- package/themes/dark-unica.src.js +11 -2
- package/themes/gray.js +9 -8
- package/themes/gray.js.map +1 -1
- package/themes/gray.src.js +11 -2
- package/themes/grid-light.js +5 -4
- package/themes/grid-light.js.map +1 -1
- package/themes/grid-light.src.js +11 -2
- package/themes/grid.js +5 -5
- package/themes/grid.js.map +1 -1
- package/themes/grid.src.js +11 -2
- package/themes/high-contrast-dark.js +7 -7
- package/themes/high-contrast-dark.js.map +1 -1
- package/themes/high-contrast-dark.src.js +21 -12
- package/themes/high-contrast-light.js +3 -3
- package/themes/high-contrast-light.js.map +1 -1
- package/themes/high-contrast-light.src.js +21 -12
- package/themes/sand-signika.js +5 -5
- package/themes/sand-signika.js.map +1 -1
- package/themes/sand-signika.src.js +11 -2
- package/themes/skies.js +5 -5
- package/themes/skies.js.map +1 -1
- package/themes/skies.src.js +11 -2
- package/themes/sunset.js +3 -3
- package/themes/sunset.js.map +1 -1
- package/themes/sunset.src.js +11 -2
- package/es-modules/Maps/ProjectionDefinition.js +0 -9
|
@@ -57,6 +57,12 @@ var MapBubbleSeries = /** @class */ (function (_super) {
|
|
|
57
57
|
_this.points = void 0;
|
|
58
58
|
return _this;
|
|
59
59
|
}
|
|
60
|
+
MapBubbleSeries.prototype.searchPoint = function (e, compareX) {
|
|
61
|
+
return this.searchKDTree({
|
|
62
|
+
clientX: e.chartX - this.chart.plotLeft,
|
|
63
|
+
plotY: e.chartY - this.chart.plotTop
|
|
64
|
+
}, compareX, e);
|
|
65
|
+
};
|
|
60
66
|
MapBubbleSeries.prototype.translate = function () {
|
|
61
67
|
MapPointSeries.prototype.translate.call(this);
|
|
62
68
|
this.getRadii();
|
|
@@ -102,15 +108,62 @@ var MapBubbleSeries = /** @class */ (function (_super) {
|
|
|
102
108
|
* @apioption plotOptions.mapbubble.displayNegative
|
|
103
109
|
*/
|
|
104
110
|
/**
|
|
105
|
-
*
|
|
111
|
+
* Color of the line connecting bubbles. The default value is the same
|
|
112
|
+
* as series' color.
|
|
113
|
+
*
|
|
114
|
+
* In styled mode, the color can be defined by the
|
|
115
|
+
* [colorIndex](#plotOptions.series.colorIndex) option. Also, the series
|
|
116
|
+
* color can be set with the `.highcharts-series`,
|
|
117
|
+
* `.highcharts-color-{n}`, `.highcharts-{type}-series` or
|
|
118
|
+
* `.highcharts-series-{n}` class, or individual classes given by the
|
|
119
|
+
* `className` option.
|
|
120
|
+
*
|
|
121
|
+
*
|
|
122
|
+
* @sample {highmaps} maps/demo/spider-map/
|
|
123
|
+
* Spider map
|
|
124
|
+
* @sample {highmaps} maps/plotoptions/spider-map-line-color/
|
|
125
|
+
* Different line color
|
|
126
|
+
*
|
|
127
|
+
* @type {Highcharts.ColorString|Highcharts.GradientColorObject|Highcharts.PatternObject}
|
|
128
|
+
* @apioption plotOptions.mapbubble.lineColor
|
|
129
|
+
*/
|
|
130
|
+
/**
|
|
131
|
+
* Pixel width of the line connecting bubbles.
|
|
132
|
+
*
|
|
133
|
+
* @sample {highmaps} maps/demo/spider-map/
|
|
134
|
+
* Spider map
|
|
135
|
+
*
|
|
136
|
+
* @product highmaps
|
|
137
|
+
* @apioption plotOptions.mapbubble.lineWidth
|
|
138
|
+
*/
|
|
139
|
+
lineWidth: 0,
|
|
140
|
+
/**
|
|
141
|
+
* Maximum bubble size. Bubbles will automatically size between the
|
|
142
|
+
* `minSize` and `maxSize` to reflect the `z` value of each bubble.
|
|
143
|
+
* Can be either pixels (when no unit is given), or a percentage of
|
|
144
|
+
* the smallest one of the plot width and height.
|
|
145
|
+
*
|
|
146
|
+
* @sample {highmaps} highcharts/plotoptions/bubble-size/
|
|
106
147
|
* Bubble size
|
|
148
|
+
* @sample {highmaps} maps/demo/spider-map/
|
|
149
|
+
* Spider map
|
|
107
150
|
*
|
|
151
|
+
* @product highmaps
|
|
108
152
|
* @apioption plotOptions.mapbubble.maxSize
|
|
153
|
+
|
|
109
154
|
*/
|
|
110
155
|
/**
|
|
156
|
+
* Minimum bubble size. Bubbles will automatically size between the
|
|
157
|
+
* `minSize` and `maxSize` to reflect the `z` value of each bubble.
|
|
158
|
+
* Can be either pixels (when no unit is given), or a percentage of
|
|
159
|
+
* the smallest one of the plot width and height.
|
|
160
|
+
*
|
|
111
161
|
* @sample {highmaps} maps/demo/map-bubble/
|
|
112
162
|
* Bubble size
|
|
163
|
+
* @sample {highmaps} maps/demo/spider-map/
|
|
164
|
+
* Spider map
|
|
113
165
|
*
|
|
166
|
+
* @product highmaps
|
|
114
167
|
* @apioption plotOptions.mapbubble.minSize
|
|
115
168
|
*/
|
|
116
169
|
/**
|
|
@@ -189,6 +242,7 @@ var MapBubbleSeries = /** @class */ (function (_super) {
|
|
|
189
242
|
* @apioption plotOptions.mapbubble.zThreshold
|
|
190
243
|
*/
|
|
191
244
|
animationLimit: 500,
|
|
245
|
+
joinBy: 'hc-key',
|
|
192
246
|
tooltip: {
|
|
193
247
|
pointFormat: '{point.name}: {point.z}'
|
|
194
248
|
}
|
|
@@ -203,8 +257,11 @@ extend(MapBubbleSeries.prototype, {
|
|
|
203
257
|
// If one single value is passed, it is interpreted as z
|
|
204
258
|
pointArrayMap: ['z'],
|
|
205
259
|
pointClass: MapBubblePoint,
|
|
260
|
+
processData: MapSeries.prototype.processData,
|
|
261
|
+
projectPoint: MapPointSeries.prototype.projectPoint,
|
|
206
262
|
setData: MapSeries.prototype.setData,
|
|
207
263
|
setOptions: MapSeries.prototype.setOptions,
|
|
264
|
+
updateData: MapSeries.prototype.updateData,
|
|
208
265
|
useMapGeometry: true,
|
|
209
266
|
xyFromShape: true
|
|
210
267
|
});
|
|
@@ -50,16 +50,10 @@ var MapPointPoint = /** @class */ (function (_super) {
|
|
|
50
50
|
*
|
|
51
51
|
* */
|
|
52
52
|
/* eslint-disable valid-jsdoc */
|
|
53
|
-
MapPointPoint.prototype.applyOptions = function (options, x) {
|
|
54
|
-
var mergedOptions = (typeof options.lat !== 'undefined' &&
|
|
55
|
-
typeof options.lon !== 'undefined' ?
|
|
56
|
-
merge(options, this.series.chart.fromLatLonToPoint(options)) :
|
|
57
|
-
options);
|
|
58
|
-
return _super.prototype.applyOptions.call(this, mergedOptions, x);
|
|
59
|
-
};
|
|
60
53
|
MapPointPoint.prototype.isValid = function () {
|
|
61
54
|
return Boolean(this.options.geometry ||
|
|
62
|
-
(isNumber(this.x) && isNumber(this.y))
|
|
55
|
+
(isNumber(this.x) && isNumber(this.y)) ||
|
|
56
|
+
(isNumber(this.options.lon) && isNumber(this.options.lat)));
|
|
63
57
|
};
|
|
64
58
|
return MapPointPoint;
|
|
65
59
|
}(ScatterSeries.prototype.pointClass));
|
|
@@ -56,6 +56,7 @@ var MapPointSeries = /** @class */ (function (_super) {
|
|
|
56
56
|
* Properties
|
|
57
57
|
*
|
|
58
58
|
* */
|
|
59
|
+
_this.chart = void 0;
|
|
59
60
|
_this.data = void 0;
|
|
60
61
|
_this.options = void 0;
|
|
61
62
|
_this.points = void 0;
|
|
@@ -74,6 +75,30 @@ var MapPointSeries = /** @class */ (function (_super) {
|
|
|
74
75
|
this.dataLabelsGroup.clip(this.chart.clipRect);
|
|
75
76
|
}
|
|
76
77
|
};
|
|
78
|
+
/**
|
|
79
|
+
* Resolve `lon`, `lat` or `geometry` options and project the resulted
|
|
80
|
+
* coordinates.
|
|
81
|
+
*
|
|
82
|
+
* @private
|
|
83
|
+
*/
|
|
84
|
+
MapPointSeries.prototype.projectPoint = function (pointOptions) {
|
|
85
|
+
var mapView = this.chart.mapView;
|
|
86
|
+
if (mapView) {
|
|
87
|
+
var geometry = pointOptions.geometry, lon = pointOptions.lon, lat = pointOptions.lat;
|
|
88
|
+
var coordinates = (geometry &&
|
|
89
|
+
geometry.type === 'Point' &&
|
|
90
|
+
geometry.coordinates);
|
|
91
|
+
if (isNumber(lon) && isNumber(lat)) {
|
|
92
|
+
coordinates = [lon, lat];
|
|
93
|
+
}
|
|
94
|
+
if (coordinates) {
|
|
95
|
+
return mapView.lonLatToProjectedUnits({
|
|
96
|
+
lon: coordinates[0],
|
|
97
|
+
lat: coordinates[1]
|
|
98
|
+
});
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
};
|
|
77
102
|
MapPointSeries.prototype.translate = function () {
|
|
78
103
|
var _this = this;
|
|
79
104
|
var mapView = this.chart.mapView;
|
|
@@ -81,18 +106,19 @@ var MapPointSeries = /** @class */ (function (_super) {
|
|
|
81
106
|
this.processData();
|
|
82
107
|
}
|
|
83
108
|
this.generatePoints();
|
|
109
|
+
if (this.getProjectedBounds && this.isDirtyData) {
|
|
110
|
+
delete this.bounds;
|
|
111
|
+
this.getProjectedBounds(); // Added point needs bounds(#16598)
|
|
112
|
+
}
|
|
84
113
|
// Create map based translation
|
|
85
114
|
if (mapView) {
|
|
86
|
-
var
|
|
115
|
+
var hasCoordinates_1 = mapView.projection.hasCoordinates;
|
|
87
116
|
this.points.forEach(function (p) {
|
|
88
117
|
var _a = p.x, x = _a === void 0 ? void 0 : _a, _b = p.y, y = _b === void 0 ? void 0 : _b;
|
|
89
|
-
var
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
var xy = forward_1(coordinates);
|
|
94
|
-
x = xy[0];
|
|
95
|
-
y = xy[1];
|
|
118
|
+
var xy = _this.projectPoint(p.options);
|
|
119
|
+
if (xy) {
|
|
120
|
+
x = xy.x;
|
|
121
|
+
y = xy.y;
|
|
96
122
|
// Map bubbles getting geometry from shape
|
|
97
123
|
}
|
|
98
124
|
else if (p.bounds) {
|
|
@@ -100,6 +126,7 @@ var MapPointSeries = /** @class */ (function (_super) {
|
|
|
100
126
|
y = p.bounds.midY;
|
|
101
127
|
}
|
|
102
128
|
if (isNumber(x) && isNumber(y)) {
|
|
129
|
+
// Establish plotX and plotY
|
|
103
130
|
var plotCoords = mapView.projectedUnitsToPixels({ x: x, y: y });
|
|
104
131
|
p.plotX = plotCoords.x;
|
|
105
132
|
p.plotY = hasCoordinates_1 ?
|
|
@@ -107,8 +134,7 @@ var MapPointSeries = /** @class */ (function (_super) {
|
|
|
107
134
|
_this.chart.plotHeight - plotCoords.y;
|
|
108
135
|
}
|
|
109
136
|
else {
|
|
110
|
-
p.plotX = void 0;
|
|
111
|
-
p.plotY = void 0;
|
|
137
|
+
p.y = p.plotX = p.plotY = void 0;
|
|
112
138
|
}
|
|
113
139
|
p.isInside = _this.isPointInside(p);
|
|
114
140
|
// Find point zone
|
|
@@ -287,9 +313,9 @@ export default MapPointSeries;
|
|
|
287
313
|
* @apioption series.mappoint.data.lon
|
|
288
314
|
*/
|
|
289
315
|
/**
|
|
290
|
-
* The x coordinate of the point in terms of
|
|
316
|
+
* The x coordinate of the point in terms of projected units.
|
|
291
317
|
*
|
|
292
|
-
* @sample {highmaps} maps/
|
|
318
|
+
* @sample {highmaps} maps/series/mapline-mappoint-path-xy/
|
|
293
319
|
* Map point demo
|
|
294
320
|
*
|
|
295
321
|
* @type {number}
|
|
@@ -297,9 +323,9 @@ export default MapPointSeries;
|
|
|
297
323
|
* @apioption series.mappoint.data.x
|
|
298
324
|
*/
|
|
299
325
|
/**
|
|
300
|
-
* The x coordinate of the point in terms of
|
|
326
|
+
* The x coordinate of the point in terms of projected units.
|
|
301
327
|
*
|
|
302
|
-
* @sample {highmaps} maps/
|
|
328
|
+
* @sample {highmaps} maps/series/mapline-mappoint-path-xy/
|
|
303
329
|
* Map point demo
|
|
304
330
|
*
|
|
305
331
|
* @type {number|null}
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
import Point from '../Core/Series/Point.js';
|
|
8
8
|
import Series from '../Core/Series/Series.js';
|
|
9
9
|
import U from '../Core/Utilities.js';
|
|
10
|
-
var defined = U.defined, extend = U.extend, find = U.find, pick = U.pick;
|
|
10
|
+
var defined = U.defined, extend = U.extend, find = U.find, merge = U.merge, pick = U.pick;
|
|
11
11
|
/* *
|
|
12
12
|
*
|
|
13
13
|
* Composition
|
|
@@ -41,6 +41,7 @@ var NodesComposition;
|
|
|
41
41
|
var pointProto = PointClass.prototype;
|
|
42
42
|
pointProto.setNodeState = setNodeState;
|
|
43
43
|
pointProto.setState = setNodeState;
|
|
44
|
+
pointProto.update = updateNode;
|
|
44
45
|
}
|
|
45
46
|
if (composedClasses.indexOf(SeriesClass) === -1) {
|
|
46
47
|
composedClasses.push(SeriesClass);
|
|
@@ -69,17 +70,6 @@ var NodesComposition;
|
|
|
69
70
|
}, options));
|
|
70
71
|
node.linksTo = [];
|
|
71
72
|
node.linksFrom = [];
|
|
72
|
-
node.formatPrefix = 'node';
|
|
73
|
-
// for use in formats
|
|
74
|
-
node.name = node.name || node.options.id || '';
|
|
75
|
-
// Mass is used in networkgraph:
|
|
76
|
-
node.mass = pick(
|
|
77
|
-
// Node:
|
|
78
|
-
node.options.mass, node.options.marker && node.options.marker.radius,
|
|
79
|
-
// Series:
|
|
80
|
-
this.options.marker && this.options.marker.radius,
|
|
81
|
-
// Default:
|
|
82
|
-
4);
|
|
83
73
|
/**
|
|
84
74
|
* Return the largest sum of either the incoming or outgoing links.
|
|
85
75
|
* @private
|
|
@@ -119,8 +109,19 @@ var NodesComposition;
|
|
|
119
109
|
return (!node.linksTo.length ||
|
|
120
110
|
outgoing !== node.linksTo.length);
|
|
121
111
|
};
|
|
122
|
-
this.nodes.push(node);
|
|
112
|
+
node.index = this.nodes.push(node) - 1;
|
|
123
113
|
}
|
|
114
|
+
node.formatPrefix = 'node';
|
|
115
|
+
// for use in formats
|
|
116
|
+
node.name = node.name || node.options.id || '';
|
|
117
|
+
// Mass is used in networkgraph:
|
|
118
|
+
node.mass = pick(
|
|
119
|
+
// Node:
|
|
120
|
+
node.options.mass, node.options.marker && node.options.marker.radius,
|
|
121
|
+
// Series:
|
|
122
|
+
this.options.marker && this.options.marker.radius,
|
|
123
|
+
// Default:
|
|
124
|
+
4);
|
|
124
125
|
return node;
|
|
125
126
|
}
|
|
126
127
|
NodesComposition.createNode = createNode;
|
|
@@ -220,6 +221,52 @@ var NodesComposition;
|
|
|
220
221
|
Point.prototype.setState.apply(this, args);
|
|
221
222
|
}
|
|
222
223
|
NodesComposition.setNodeState = setNodeState;
|
|
224
|
+
/**
|
|
225
|
+
* When updating a node, don't update `series.options.data`, but `series.options.nodes`
|
|
226
|
+
*/
|
|
227
|
+
function updateNode(options, redraw, animation, runEvent) {
|
|
228
|
+
var _this = this;
|
|
229
|
+
var nodes = this.series.options.nodes, data = this.series.options.data, dataLength = data && data.length || 0, linkConfig = data && data[this.index];
|
|
230
|
+
Point.prototype.update.call(this, options, this.isNode ? false : redraw, // Hold the redraw for nodes
|
|
231
|
+
animation, runEvent);
|
|
232
|
+
if (this.isNode) {
|
|
233
|
+
// this.index refers to `series.nodes`, not `options.nodes` array
|
|
234
|
+
var nodeIndex = (nodes || [])
|
|
235
|
+
.reduce(// Array.findIndex needs a polyfill
|
|
236
|
+
function (prevIndex, n, index) {
|
|
237
|
+
return (_this.id === n.id ? index : prevIndex);
|
|
238
|
+
}, -1),
|
|
239
|
+
// Merge old config with new config. New config is stored in
|
|
240
|
+
// options.data, because of default logic in point.update()
|
|
241
|
+
nodeConfig = merge(nodes && nodes[nodeIndex] || {}, data && data[this.index] || {});
|
|
242
|
+
// Restore link config
|
|
243
|
+
if (data) {
|
|
244
|
+
if (linkConfig) {
|
|
245
|
+
data[this.index] = linkConfig;
|
|
246
|
+
}
|
|
247
|
+
else {
|
|
248
|
+
// Remove node from config if there's more nodes than links
|
|
249
|
+
data.length = dataLength;
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
// Set node config
|
|
253
|
+
if (nodes) {
|
|
254
|
+
if (nodeIndex >= 0) {
|
|
255
|
+
nodes[nodeIndex] = nodeConfig;
|
|
256
|
+
}
|
|
257
|
+
else {
|
|
258
|
+
nodes.push(nodeConfig);
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
else {
|
|
262
|
+
this.series.options.nodes = [nodeConfig];
|
|
263
|
+
}
|
|
264
|
+
if (pick(redraw, true)) {
|
|
265
|
+
this.series.chart.redraw(animation);
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
NodesComposition.updateNode = updateNode;
|
|
223
270
|
})(NodesComposition || (NodesComposition = {}));
|
|
224
271
|
/* *
|
|
225
272
|
*
|
|
@@ -244,6 +244,13 @@ addEvent(Series, 'afterSetOptions', function (e) {
|
|
|
244
244
|
* @product highstock
|
|
245
245
|
* @apioption series.ohlc.data
|
|
246
246
|
*/
|
|
247
|
+
/**
|
|
248
|
+
* The closing value of each data point.
|
|
249
|
+
*
|
|
250
|
+
* @type {number}
|
|
251
|
+
* @product highstock
|
|
252
|
+
* @apioption series.ohlc.data.close
|
|
253
|
+
*/
|
|
247
254
|
/**
|
|
248
255
|
* The opening value of each data point.
|
|
249
256
|
*
|
|
@@ -24,7 +24,30 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
24
24
|
};
|
|
25
25
|
})();
|
|
26
26
|
import SeriesRegistry from '../../Core/Series/SeriesRegistry.js';
|
|
27
|
-
var
|
|
27
|
+
var SankeyPointClass = SeriesRegistry.seriesTypes.sankey.prototype.pointClass;
|
|
28
|
+
import U from '../../Core/Utilities.js';
|
|
29
|
+
var defined = U.defined, find = U.find, pick = U.pick;
|
|
30
|
+
/**
|
|
31
|
+
* Get columns offset including all sibiling and cousins etc.
|
|
32
|
+
*
|
|
33
|
+
* @private
|
|
34
|
+
* @param node Point
|
|
35
|
+
*/
|
|
36
|
+
function getOffset(node) {
|
|
37
|
+
var offset = node.linksFrom.length;
|
|
38
|
+
node.linksFrom.forEach(function (link) {
|
|
39
|
+
if (link.id === link.toNode.linksTo[0].id) {
|
|
40
|
+
// Node has children, that hangs directly from it:
|
|
41
|
+
offset += getOffset(link.toNode);
|
|
42
|
+
}
|
|
43
|
+
else {
|
|
44
|
+
// If the node hangs from multiple parents, and this is not
|
|
45
|
+
// the last one, ignore it:
|
|
46
|
+
offset--;
|
|
47
|
+
}
|
|
48
|
+
});
|
|
49
|
+
return offset;
|
|
50
|
+
}
|
|
28
51
|
/* *
|
|
29
52
|
*
|
|
30
53
|
* Class
|
|
@@ -61,8 +84,51 @@ var OrganizationPoint = /** @class */ (function (_super) {
|
|
|
61
84
|
OrganizationPoint.prototype.getSum = function () {
|
|
62
85
|
return 1;
|
|
63
86
|
};
|
|
87
|
+
/**
|
|
88
|
+
* Set node.column for hanging layout
|
|
89
|
+
* @private
|
|
90
|
+
*/
|
|
91
|
+
OrganizationPoint.prototype.setNodeColumn = function () {
|
|
92
|
+
_super.prototype.setNodeColumn.call(this);
|
|
93
|
+
var node = this, fromNode = node.getFromNode().fromNode;
|
|
94
|
+
// Hanging layout
|
|
95
|
+
if (
|
|
96
|
+
// Not defined by user
|
|
97
|
+
!defined(node.options.column) &&
|
|
98
|
+
// Has links to
|
|
99
|
+
node.linksTo.length !== 0 &&
|
|
100
|
+
// And parent uses hanging layout
|
|
101
|
+
fromNode &&
|
|
102
|
+
fromNode.options.layout === 'hanging') {
|
|
103
|
+
// Default all children of the hanging node
|
|
104
|
+
// to have hanging layout
|
|
105
|
+
node.options.layout = pick(node.options.layout, 'hanging');
|
|
106
|
+
node.hangsFrom = fromNode;
|
|
107
|
+
var i_1 = -1;
|
|
108
|
+
find(fromNode.linksFrom, function (link, index) {
|
|
109
|
+
var found = link.toNode === node;
|
|
110
|
+
if (found) {
|
|
111
|
+
i_1 = index;
|
|
112
|
+
}
|
|
113
|
+
return found;
|
|
114
|
+
});
|
|
115
|
+
// For all siblings' children (recursively)
|
|
116
|
+
// increase the column offset to prevent overlapping
|
|
117
|
+
for (var j = 0; j < fromNode.linksFrom.length; j++) {
|
|
118
|
+
var link = fromNode.linksFrom[j];
|
|
119
|
+
if (link.toNode.id === node.id) {
|
|
120
|
+
// Break
|
|
121
|
+
j = fromNode.linksFrom.length;
|
|
122
|
+
}
|
|
123
|
+
else {
|
|
124
|
+
i_1 += getOffset(link.toNode);
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
node.column = (node.column || 0) + i_1;
|
|
128
|
+
}
|
|
129
|
+
};
|
|
64
130
|
return OrganizationPoint;
|
|
65
|
-
}(
|
|
131
|
+
}(SankeyPointClass));
|
|
66
132
|
/* *
|
|
67
133
|
*
|
|
68
134
|
* Default Export
|
|
@@ -178,23 +178,6 @@ var OrganizationSeries = /** @class */ (function (_super) {
|
|
|
178
178
|
};
|
|
179
179
|
return node;
|
|
180
180
|
};
|
|
181
|
-
OrganizationSeries.prototype.createNodeColumn = function () {
|
|
182
|
-
var column = _super.prototype.createNodeColumn
|
|
183
|
-
.call(this);
|
|
184
|
-
// Wrap the offset function so that the hanging node's children are
|
|
185
|
-
// aligned to their parent
|
|
186
|
-
wrap(column, 'offset', function (proceed, node, factor) {
|
|
187
|
-
var offset = proceed.call(this, node, factor); // eslint-disable-line no-invalid-this
|
|
188
|
-
// Modify the default output if the parent's layout is 'hanging'
|
|
189
|
-
if (node.hangsFrom) {
|
|
190
|
-
return {
|
|
191
|
-
absoluteTop: node.hangsFrom.nodeY
|
|
192
|
-
};
|
|
193
|
-
}
|
|
194
|
-
return offset;
|
|
195
|
-
});
|
|
196
|
-
return column;
|
|
197
|
-
};
|
|
198
181
|
OrganizationSeries.prototype.pointAttribs = function (point, state) {
|
|
199
182
|
var series = this, attribs = SankeySeries.prototype.pointAttribs.call(series, point, state), level = point.isNode ? point.level : point.fromNode.level, levelOptions = series.mapOptionsToLevel[level || 0] || {}, options = point.options, stateOptions = (levelOptions.states &&
|
|
200
183
|
levelOptions.states[state]) || {}, values = ['borderRadius', 'linkColor', 'linkLineWidth']
|
|
@@ -265,16 +248,37 @@ var OrganizationSeries = /** @class */ (function (_super) {
|
|
|
265
248
|
};
|
|
266
249
|
OrganizationSeries.prototype.translateNode = function (node, column) {
|
|
267
250
|
SankeySeries.prototype.translateNode.call(this, node, column);
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
251
|
+
var parentNode = node.hangsFrom, indent = this.options.hangingIndent || 0, sign = this.chart.inverted ? -1 : 1, shapeArgs = node.shapeArgs, indentLogic = this.options.hangingIndentTranslation, minLength = this.options.minNodeLength || 10;
|
|
252
|
+
if (parentNode) {
|
|
253
|
+
if (indentLogic === 'cumulative') {
|
|
254
|
+
// Move to the right:
|
|
255
|
+
shapeArgs.height -= indent;
|
|
256
|
+
shapeArgs.y -= sign * indent;
|
|
257
|
+
while (parentNode) {
|
|
258
|
+
shapeArgs.y += sign * indent;
|
|
259
|
+
parentNode = parentNode.hangsFrom;
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
else if (indentLogic === 'shrink') {
|
|
263
|
+
// Resize the node:
|
|
264
|
+
while (parentNode &&
|
|
265
|
+
shapeArgs.height > indent + minLength) {
|
|
266
|
+
shapeArgs.height -= indent;
|
|
267
|
+
parentNode = parentNode.hangsFrom;
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
else {
|
|
271
|
+
// indentLogic === "inherit"
|
|
272
|
+
// Do nothing (v9.3.2 and prev versions):
|
|
273
|
+
shapeArgs.height -= indent;
|
|
274
|
+
if (!this.chart.inverted) {
|
|
275
|
+
shapeArgs.y += indent;
|
|
276
|
+
}
|
|
273
277
|
}
|
|
274
278
|
}
|
|
275
279
|
node.nodeHeight = this.chart.inverted ?
|
|
276
|
-
|
|
277
|
-
|
|
280
|
+
shapeArgs.width :
|
|
281
|
+
shapeArgs.height;
|
|
278
282
|
};
|
|
279
283
|
/**
|
|
280
284
|
* An organization chart is a diagram that shows the structure of an
|
|
@@ -428,6 +432,31 @@ var OrganizationSeries = /** @class */ (function (_super) {
|
|
|
428
432
|
* @private
|
|
429
433
|
*/
|
|
430
434
|
hangingIndent: 20,
|
|
435
|
+
/**
|
|
436
|
+
* Defines the indentation of a `hanging` layout parent's children.
|
|
437
|
+
* Possible options:
|
|
438
|
+
*
|
|
439
|
+
* - `inherit` (default): Only the first child adds the indentation,
|
|
440
|
+
* children of a child with indentation inherit the indentation.
|
|
441
|
+
* - `cumulative`: All children of a child with indentation add its
|
|
442
|
+
* own indent. The option may cause overlapping of nodes.
|
|
443
|
+
* Then use `shrink` option:
|
|
444
|
+
* - `shrink`: Nodes shrink by the
|
|
445
|
+
* [hangingIndent](#plotOptions.organization.hangingIndent)
|
|
446
|
+
* value until they reach the
|
|
447
|
+
* [minNodeLength](#plotOptions.organization.minNodeLength).
|
|
448
|
+
*
|
|
449
|
+
* @sample highcharts/series-organization/hanging-cumulative
|
|
450
|
+
* Every indent increases the indentation
|
|
451
|
+
*
|
|
452
|
+
* @sample highcharts/series-organization/hanging-shrink
|
|
453
|
+
* Every indent decreases the nodes' width
|
|
454
|
+
*
|
|
455
|
+
* @type {Highcharts.OrganizationHangingIndentTranslationValue}
|
|
456
|
+
* @since 10.0.0
|
|
457
|
+
* @default inherit
|
|
458
|
+
*/
|
|
459
|
+
hangingIndentTranslation: 'inherit',
|
|
431
460
|
/**
|
|
432
461
|
* The color of the links between nodes.
|
|
433
462
|
*
|
|
@@ -445,10 +474,25 @@ var OrganizationSeries = /** @class */ (function (_super) {
|
|
|
445
474
|
*/
|
|
446
475
|
linkLineWidth: 1,
|
|
447
476
|
/**
|
|
448
|
-
* In a horizontal chart, the width of the nodes
|
|
477
|
+
* In a horizontal chart, the minimum width of the **hanging** nodes
|
|
478
|
+
* only, in pixels. In a vertical chart, the minimum height of the
|
|
479
|
+
* **haning** nodes only, in pixels too.
|
|
480
|
+
*
|
|
481
|
+
* Note: Used only when
|
|
482
|
+
* [hangingIndentTranslation](#plotOptions.organization.hangingIndentTranslation)
|
|
483
|
+
* is set to `shrink`.
|
|
484
|
+
*
|
|
485
|
+
* @see [nodeWidth](#plotOptions.organization.nodeWidth)
|
|
486
|
+
* @private
|
|
487
|
+
*/
|
|
488
|
+
minNodeLength: 10,
|
|
489
|
+
/**
|
|
490
|
+
* In a horizontal chart, the width of the nodes in pixels. Note that
|
|
449
491
|
* most organization charts are vertical, so the name of this option
|
|
450
492
|
* is counterintuitive.
|
|
451
493
|
*
|
|
494
|
+
* @see [minNodeLength](#plotOptions.organization.minNodeLength)
|
|
495
|
+
*
|
|
452
496
|
* @private
|
|
453
497
|
*/
|
|
454
498
|
nodeWidth: 50,
|
|
@@ -480,6 +524,13 @@ export default OrganizationSeries;
|
|
|
480
524
|
*
|
|
481
525
|
* @typedef {"normal"|"hanging"} Highcharts.SeriesOrganizationNodesLayoutValue
|
|
482
526
|
*/
|
|
527
|
+
/**
|
|
528
|
+
* Indent translation value for the child nodes in an organization chart, when
|
|
529
|
+
* parent has `hanging` layout. Option can shrink nodes (for tight charts),
|
|
530
|
+
* translate children to the left, or render nodes directly under the parent.
|
|
531
|
+
*
|
|
532
|
+
* @typedef {"inherit"|"cumulative"|"shrink"} Highcharts.OrganizationHangingIndentTranslationValue
|
|
533
|
+
*/
|
|
483
534
|
''; // detach doclets above
|
|
484
535
|
/* *
|
|
485
536
|
*
|
|
@@ -546,6 +597,9 @@ export default OrganizationSeries;
|
|
|
546
597
|
* Layout for the node's children. If `hanging`, this node's children will hang
|
|
547
598
|
* below their parent, allowing a tighter packing of nodes in the diagram.
|
|
548
599
|
*
|
|
600
|
+
* Note: Since @next version, the `hanging` layout is set by default for
|
|
601
|
+
* children of a parent using `hanging` layout.
|
|
602
|
+
*
|
|
549
603
|
* @sample highcharts/demo/organization-chart
|
|
550
604
|
* Hanging layout
|
|
551
605
|
*
|
|
@@ -424,7 +424,9 @@ var ColumnDataLabel;
|
|
|
424
424
|
if (newSize < center[2]) {
|
|
425
425
|
center[2] = newSize;
|
|
426
426
|
center[3] = Math.min(// #3632
|
|
427
|
-
|
|
427
|
+
options.thickness ?
|
|
428
|
+
Math.max(0, newSize - options.thickness * 2) :
|
|
429
|
+
Math.max(0, relativeLength(options.innerSize || 0, newSize)), newSize); // #6647
|
|
428
430
|
this.translate(center);
|
|
429
431
|
if (this.drawDataLabels) {
|
|
430
432
|
this.drawDataLabels();
|
|
@@ -118,12 +118,19 @@ var PiePoint = /** @class */ (function (_super) {
|
|
|
118
118
|
return isNumber(this.y) && this.y >= 0;
|
|
119
119
|
};
|
|
120
120
|
/**
|
|
121
|
-
* Toggle the visibility of
|
|
122
|
-
*
|
|
121
|
+
* Toggle the visibility of a pie slice or other data point. Note that this
|
|
122
|
+
* method is available only for some series, like pie, treemap and sunburst.
|
|
123
|
+
*
|
|
124
|
+
* @function Highcharts.Point#setVisible
|
|
125
|
+
*
|
|
126
|
+
* @param {boolean} [vis]
|
|
127
|
+
* True to show the pie slice or other data point, false to hide. If
|
|
128
|
+
* undefined, the visibility is toggled.
|
|
129
|
+
*
|
|
130
|
+
* @param {boolean} [redraw] Whether to redraw the chart after the point is
|
|
131
|
+
* altered. If doing more operations on the chart, it is a good idea to set
|
|
132
|
+
* redraw to false and call {@link Chart#redraw|chart.redraw()} after.
|
|
123
133
|
*
|
|
124
|
-
* @param {boolean} vis
|
|
125
|
-
* Whether to show the slice or not. If undefined, the visibility is
|
|
126
|
-
* toggled.
|
|
127
134
|
*/
|
|
128
135
|
PiePoint.prototype.setVisible = function (vis, redraw) {
|
|
129
136
|
var _this = this;
|
|
@@ -745,6 +745,17 @@ var PieSeries = /** @class */ (function (_super) {
|
|
|
745
745
|
* @product highcharts
|
|
746
746
|
* @apioption plotOptions.pie.endAngle
|
|
747
747
|
*/
|
|
748
|
+
/**
|
|
749
|
+
* Thickness describing the ring size for a donut type chart,
|
|
750
|
+
* overriding [innerSize](#plotOptions.pie.innerSize).
|
|
751
|
+
*
|
|
752
|
+
* @type {number}
|
|
753
|
+
* @default undefined
|
|
754
|
+
* @product highcharts
|
|
755
|
+
* @since 10.1.0
|
|
756
|
+
* @apioption plotOptions.pie.thickness
|
|
757
|
+
* @private
|
|
758
|
+
*/
|
|
748
759
|
/**
|
|
749
760
|
* Equivalent to [chart.ignoreHiddenSeries](#chart.ignoreHiddenSeries),
|
|
750
761
|
* this option tells whether the series shall be redrawn as if the
|
|
@@ -772,7 +783,7 @@ var PieSeries = /** @class */ (function (_super) {
|
|
|
772
783
|
* The size of the inner diameter for the pie. A size greater than 0
|
|
773
784
|
* renders a donut chart. Can be a percentage or pixel value.
|
|
774
785
|
* Percentages are relative to the pie size. Pixel values are given as
|
|
775
|
-
* integers.
|
|
786
|
+
* integers. Setting overridden by thickness.
|
|
776
787
|
*
|
|
777
788
|
*
|
|
778
789
|
* Note: in Highcharts < 4.1.2, the percentage was relative to the plot
|
|
@@ -171,6 +171,25 @@ var Pie3DSeries = /** @class */ (function (_super) {
|
|
|
171
171
|
};
|
|
172
172
|
});
|
|
173
173
|
};
|
|
174
|
+
/**
|
|
175
|
+
* @private
|
|
176
|
+
*/
|
|
177
|
+
Pie3DSeries.prototype.drawTracker = function () {
|
|
178
|
+
_super.prototype.drawTracker.apply(this, arguments);
|
|
179
|
+
// Do not do this if the chart is not 3D
|
|
180
|
+
if (!this.chart.is3d()) {
|
|
181
|
+
return;
|
|
182
|
+
}
|
|
183
|
+
this.points.forEach(function (point) {
|
|
184
|
+
if (point.graphic) {
|
|
185
|
+
['out', 'inn', 'side1', 'side2'].forEach(function (face) {
|
|
186
|
+
if (point.graphic) {
|
|
187
|
+
point.graphic[face].element.point = point;
|
|
188
|
+
}
|
|
189
|
+
});
|
|
190
|
+
}
|
|
191
|
+
});
|
|
192
|
+
};
|
|
174
193
|
return Pie3DSeries;
|
|
175
194
|
}(PieSeries));
|
|
176
195
|
extend(Pie3DSeries.prototype, {
|