highcharts 9.1.1 → 9.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bower.json +1 -1
- package/css/annotations/popup.css +29 -28
- package/css/annotations/popup.scss +29 -27
- package/css/highcharts.css +15 -0
- package/css/highcharts.scss +12 -0
- package/css/stocktools/gui.css +1 -0
- package/css/stocktools/gui.scss +1 -0
- package/css/themes/dark-unica.css +15 -0
- package/css/themes/grid-light.css +15 -0
- package/css/themes/sand-signika.css +15 -0
- package/es-modules/Accessibility/Components/InfoRegionsComponent.js +8 -2
- package/es-modules/Accessibility/Components/LegendComponent.js +19 -8
- package/es-modules/Accessibility/Components/MenuComponent.js +19 -13
- package/es-modules/Accessibility/Components/SeriesComponent/SeriesDescriber.js +4 -8
- package/es-modules/Accessibility/FocusBorder.js +1 -3
- package/es-modules/Accessibility/Options/LangOptions.js +3 -3
- package/es-modules/Accessibility/Utils/Announcer.js +22 -5
- package/es-modules/Accessibility/Utils/ChartUtilities.js +6 -1
- package/es-modules/Core/Animation/AnimationUtilities.js +12 -4
- package/es-modules/Core/Animation/Fx.js +15 -12
- package/es-modules/Core/Axis/Axis.js +25 -13
- package/es-modules/Core/Axis/AxisDefaults.js +0 -1
- package/es-modules/Core/Axis/BrokenAxis.js +32 -15
- package/es-modules/Core/Axis/Color/ColorAxis.js +665 -0
- package/es-modules/Core/Axis/Color/ColorAxisComposition.js +237 -0
- package/es-modules/Core/Axis/Color/ColorAxisDefaults.js +434 -0
- package/es-modules/Core/Axis/DateTimeAxis.js +163 -133
- package/es-modules/Core/Axis/GridAxis.js +8 -3
- package/es-modules/Core/Axis/LogarithmicAxis.js +159 -117
- package/es-modules/Core/Axis/OrdinalAxis.js +666 -460
- package/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBand.js +874 -0
- package/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBandAxis.js +292 -0
- package/es-modules/Core/Axis/RadialAxis.js +858 -745
- package/es-modules/Core/Axis/ScrollbarAxis.js +7 -0
- package/es-modules/Core/Axis/StackingAxis.js +159 -140
- package/es-modules/Core/Axis/Tick.js +17 -27
- package/es-modules/Core/Chart/Chart.js +24 -38
- package/es-modules/Core/Chart/ChartDefaults.js +1 -1
- package/es-modules/Core/Chart/StockChart.js +12 -0
- package/es-modules/Core/Color/Color.js +96 -104
- package/es-modules/Core/DefaultOptions.js +269 -248
- package/es-modules/Core/Foundation.js +9 -8
- package/es-modules/Core/Geometry/CircleUtilities.js +385 -0
- package/es-modules/Core/Geometry/GeometryUtilities.js +83 -0
- package/es-modules/Core/Globals.js +23 -1
- package/es-modules/{Extensions/Ajax.js → Core/HttpUtilities.js} +86 -42
- package/es-modules/Core/{Legend.js → Legend/Legend.js} +142 -116
- package/es-modules/{Mixins → Core/Legend}/LegendSymbol.js +54 -38
- package/es-modules/Core/Navigator.js +3 -0
- package/es-modules/Core/Pointer.js +9 -0
- package/es-modules/Core/Renderer/HTML/AST.js +100 -82
- package/es-modules/Core/Renderer/HTML/HTMLElement.js +17 -7
- package/es-modules/Core/Renderer/HTML/HTMLRenderer.js +26 -9
- package/es-modules/Core/Renderer/RendererRegistry.js +9 -4
- package/es-modules/Core/Renderer/RendererUtilities.js +159 -0
- package/es-modules/Core/Renderer/SVG/SVGElement.js +13 -7
- package/es-modules/Core/Renderer/SVG/SVGLabel.js +9 -29
- package/es-modules/Core/Renderer/SVG/SVGRenderer.js +2 -2
- package/es-modules/Core/Renderer/SVG/TextBuilder.js +18 -16
- package/es-modules/Core/Responsive.js +166 -148
- package/es-modules/Core/Series/DataLabel.js +564 -0
- package/es-modules/Core/Series/Point.js +233 -209
- package/es-modules/Core/Series/Series.js +174 -2339
- package/es-modules/Core/Series/SeriesDefaults.js +2293 -0
- package/es-modules/Core/Series/SeriesRegistry.js +3 -9
- package/es-modules/Core/Time.js +78 -2
- package/es-modules/Core/Tooltip.js +178 -236
- package/es-modules/Core/Utilities.js +409 -394
- package/es-modules/Extensions/Annotations/Annotations.js +102 -49
- package/es-modules/Extensions/Annotations/Mixins/EventEmitterMixin.js +9 -1
- package/es-modules/Extensions/Annotations/NavigationBindings.js +30 -25
- package/es-modules/Extensions/Annotations/Popup.js +16 -7
- package/es-modules/Extensions/Boost/BoostOverrides.js +5 -1
- package/es-modules/Extensions/Boost/WGLRenderer.js +5 -4
- package/es-modules/Extensions/Boost/WGLVBuffer.js +3 -0
- package/es-modules/Extensions/BoostCanvas.js +1 -1
- package/es-modules/Extensions/CurrentDateIndication.js +1 -1
- package/es-modules/Extensions/Data.js +82 -76
- package/es-modules/Extensions/DataGrouping.js +225 -184
- package/es-modules/Extensions/Debugger/ErrorMessages.js +2 -2
- package/es-modules/Extensions/DraggablePoints.js +13 -5
- package/es-modules/Extensions/Drilldown.js +41 -14
- package/es-modules/Extensions/ExportData.js +7 -4
- package/es-modules/Extensions/Exporting/Exporting.js +1273 -0
- package/es-modules/Extensions/Exporting/ExportingDefaults.js +803 -0
- package/es-modules/Extensions/Exporting/ExportingSymbols.js +73 -0
- package/es-modules/Extensions/FullScreen.js +7 -5
- package/es-modules/Extensions/NoDataToDisplay.js +1 -1
- package/es-modules/Extensions/OfflineExporting/OfflineExporting.js +617 -0
- package/es-modules/Extensions/OfflineExporting/OfflineExportingDefaults.js +58 -0
- package/es-modules/Extensions/Oldie/Oldie.js +1 -1
- package/es-modules/Extensions/Pane.js +0 -1
- package/es-modules/Extensions/PatternFill.js +23 -10
- package/es-modules/Extensions/Polar.js +2 -1
- package/es-modules/Extensions/RangeSelector.js +1 -1
- package/es-modules/Extensions/Themes/Avocado.js +49 -20
- package/es-modules/Extensions/Themes/DarkBlue.js +226 -203
- package/es-modules/Extensions/Themes/DarkGreen.js +231 -203
- package/es-modules/Extensions/Themes/DarkUnica.js +201 -172
- package/es-modules/Extensions/Themes/Gray.js +228 -205
- package/es-modules/Extensions/Themes/Grid.js +109 -81
- package/es-modules/Extensions/Themes/GridLight.js +83 -55
- package/es-modules/Extensions/Themes/HighContrastDark.js +192 -164
- package/es-modules/Extensions/Themes/HighContrastLight.js +49 -21
- package/es-modules/Extensions/Themes/SandSignika.js +115 -86
- package/es-modules/Extensions/Themes/Skies.js +102 -74
- package/es-modules/Extensions/Themes/Sunset.js +47 -19
- package/es-modules/Mixins/ColorSeries.js +0 -1
- package/es-modules/Mixins/MultipleLines.js +6 -0
- package/es-modules/Mixins/TreeSeries.js +1 -1
- package/es-modules/Series/Area/AreaSeries.js +2 -2
- package/es-modules/Series/AreaSpline/AreaSplineSeries.js +2 -2
- package/es-modules/Series/Bubble/BubbleLegendComposition.js +279 -0
- package/es-modules/Series/Bubble/BubbleLegendDefaults.js +267 -0
- package/es-modules/Series/Bubble/BubbleLegendItem.js +472 -0
- package/es-modules/Series/Bubble/BubbleSeries.js +6 -2
- package/es-modules/Series/Column/ColumnDataLabel.js +109 -0
- package/es-modules/Series/Column/ColumnSeries.js +39 -26
- package/es-modules/Series/Column3D/Column3DComposition.js +5 -2
- package/es-modules/Series/Flags/FlagsSeries.js +8 -1
- package/es-modules/Series/Gantt/GanttSeries.js +3 -3
- package/es-modules/Series/Heatmap/HeatmapSeries.js +9 -5
- package/es-modules/Series/HeikinAshi/HeikinAshiPoint.js +60 -0
- package/es-modules/Series/HeikinAshi/HeikinAshiSeries.js +277 -0
- package/es-modules/Series/HollowCandlestick/HollowCandlestickPoint.js +83 -0
- package/es-modules/Series/HollowCandlestick/HollowCandlestickSeries.js +370 -0
- package/es-modules/Series/Line/LineSeries.js +12 -8
- package/es-modules/Series/Map/MapSeries.js +5 -3
- package/es-modules/Series/MapBubble/MapBubbleSeries.js +6 -5
- package/es-modules/Series/OHLC/OHLCPoint.js +11 -0
- package/es-modules/Series/PackedBubble/PackedBubbleSeries.js +3 -1
- package/es-modules/Series/Pie/PieDataLabel.js +448 -0
- package/es-modules/Series/Pie/PiePoint.js +35 -34
- package/es-modules/Series/Pie/PieSeries.js +19 -16
- package/es-modules/Series/Polygon/PolygonSeries.js +3 -3
- package/es-modules/Series/Sankey/SankeySeries.js +9 -7
- package/es-modules/Series/SolidGauge/SolidGaugeSeries.js +2 -2
- package/es-modules/Series/Sunburst/SunburstSeries.js +1 -14
- package/es-modules/Series/Timeline/TimelinePoint.js +6 -0
- package/es-modules/Series/Timeline/TimelineSeries.js +14 -17
- package/es-modules/Series/Treemap/TreemapSeries.js +3 -3
- package/es-modules/Series/Venn/VennSeries.js +4 -4
- package/es-modules/Series/Venn/VennUtils.js +10 -16
- package/es-modules/Series/Waterfall/WaterfallSeries.js +40 -35
- package/es-modules/Series/Wordcloud/WordcloudSeries.js +1 -0
- package/es-modules/Series/XRange/XRangeSeries.js +4 -2
- package/es-modules/Stock/Indicators/SMA/SMAIndicator.js +92 -75
- package/es-modules/Stock/Indicators/Supertrend/SupertrendIndicator.js +20 -8
- package/es-modules/Stock/Indicators/VBP/VBPIndicator.js +17 -4
- package/es-modules/Stock/StockToolsBindings.js +77 -38
- package/es-modules/Stock/StockToolsGui.js +28 -3
- 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 +11 -7
- package/es-modules/masters/highcharts.src.js +25 -9
- 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/ema.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/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 +6 -2
- 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 +8 -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 +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 +10 -2
- 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 -4
- package/es-modules/masters/modules/grid-axis.src.js +1 -1
- package/es-modules/masters/modules/heatmap.src.js +6 -2
- package/es-modules/masters/modules/heikinashi.src.js +14 -0
- package/es-modules/masters/modules/histogram-bellcurve.src.js +1 -1
- package/es-modules/masters/modules/hollowcandlestick.src.js +14 -0
- 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 +10 -6
- 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 +8 -2
- 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 +3 -2
- 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 +1 -1
- package/es-modules/masters/modules/variable-pie.src.js +1 -1
- package/es-modules/masters/modules/variwide.src.js +1 -1
- package/es-modules/masters/modules/vector.src.js +1 -1
- package/es-modules/masters/modules/venn.src.js +1 -1
- package/es-modules/masters/modules/windbarb.src.js +1 -1
- package/es-modules/masters/modules/wordcloud.src.js +1 -1
- package/es-modules/masters/modules/xrange.src.js +1 -1
- package/es-modules/masters/themes/avocado.src.js +5 -2
- package/es-modules/masters/themes/dark-blue.src.js +5 -2
- package/es-modules/masters/themes/dark-green.src.js +5 -2
- package/es-modules/masters/themes/dark-unica.src.js +5 -2
- package/es-modules/masters/themes/gray.src.js +5 -2
- package/es-modules/masters/themes/grid-light.src.js +5 -2
- package/es-modules/masters/themes/grid.src.js +5 -2
- package/es-modules/masters/themes/high-contrast-dark.src.js +5 -2
- package/es-modules/masters/themes/high-contrast-light.src.js +5 -2
- package/es-modules/masters/themes/sand-signika.src.js +5 -2
- package/es-modules/masters/themes/skies.src.js +5 -2
- package/es-modules/masters/themes/sunset.src.js +5 -2
- package/gfx/stock-icons/annotations-hidden.svg +1 -1
- package/gfx/stock-icons/annotations-visible.svg +2 -2
- package/gfx/stock-icons/arrow-bottom.svg +1 -1
- package/gfx/stock-icons/arrow-left.svg +1 -1
- package/gfx/stock-icons/arrow-line.svg +1 -1
- package/gfx/stock-icons/arrow-ray.svg +1 -1
- package/gfx/stock-icons/arrow-right.svg +1 -1
- package/gfx/stock-icons/arrow-segment.svg +1 -2
- package/gfx/stock-icons/circle.svg +1 -1
- package/gfx/stock-icons/close.svg +2 -2
- package/gfx/stock-icons/crooked-3.svg +1 -1
- package/gfx/stock-icons/crooked-5.svg +1 -1
- package/gfx/stock-icons/current-price-hide.svg +3 -3
- package/gfx/stock-icons/current-price-show.svg +2 -2
- package/gfx/stock-icons/destroy.svg +1 -1
- package/gfx/stock-icons/drawing.svg +18 -0
- package/gfx/stock-icons/edit.svg +1 -1
- package/gfx/stock-icons/elliott-3.svg +1 -1
- package/gfx/stock-icons/elliott-5.svg +1 -1
- package/gfx/stock-icons/ellipse.svg +11 -0
- package/gfx/stock-icons/fibonacci-timezone.svg +16 -0
- package/gfx/stock-icons/fibonacci.svg +1 -1
- package/gfx/stock-icons/flag-basic.svg +1 -1
- package/gfx/stock-icons/flag-diamond.svg +2 -2
- package/gfx/stock-icons/flag-elipse.svg +1 -1
- package/gfx/stock-icons/flag-trapeze.svg +2 -2
- package/gfx/stock-icons/fullscreen.svg +4 -4
- package/gfx/stock-icons/horizontal-line.svg +1 -1
- package/gfx/stock-icons/indicators.svg +3 -3
- package/gfx/stock-icons/label.svg +4 -4
- package/gfx/stock-icons/line.svg +1 -1
- package/gfx/stock-icons/linear.svg +11 -0
- package/gfx/stock-icons/logarithmic.svg +1 -0
- package/gfx/stock-icons/measure-x.svg +2 -2
- package/gfx/stock-icons/measure-xy.svg +1 -1
- package/gfx/stock-icons/measure-y.svg +1 -1
- package/gfx/stock-icons/panning.svg +17 -0
- package/gfx/stock-icons/parallel-channel.svg +1 -1
- package/gfx/stock-icons/pitchfork.svg +1 -1
- package/gfx/stock-icons/ray.svg +1 -1
- package/gfx/stock-icons/rectangle.svg +1 -1
- package/gfx/stock-icons/remove-annotations.svg +2 -2
- package/gfx/stock-icons/save-chart.svg +3 -3
- package/gfx/stock-icons/segment.svg +1 -1
- package/gfx/stock-icons/separator.svg +1 -1
- package/gfx/stock-icons/series-candlestick.svg +1 -1
- package/gfx/stock-icons/series-heikin-ashi.svg +1 -0
- package/gfx/stock-icons/series-hlc.svg +1 -0
- package/gfx/stock-icons/series-hollow-candlestick.svg +1 -0
- package/gfx/stock-icons/series-line.svg +1 -1
- package/gfx/stock-icons/series-ohlc.svg +4 -4
- package/gfx/stock-icons/time-cycles.svg +35 -0
- package/gfx/stock-icons/vertical-arrow.svg +1 -1
- package/gfx/stock-icons/vertical-counter.svg +1 -1
- package/gfx/stock-icons/vertical-double-arrow.svg +1 -1
- package/gfx/stock-icons/vertical-label.svg +3 -3
- package/gfx/stock-icons/vertical-line.svg +1 -1
- package/gfx/stock-icons/zoom-x.svg +2 -2
- package/gfx/stock-icons/zoom-xy.svg +2 -2
- package/gfx/stock-icons/zoom-y.svg +2 -2
- package/highcharts-3d.js +24 -24
- package/highcharts-3d.js.map +1 -1
- package/highcharts-3d.src.js +6 -3
- package/highcharts-gantt.js +800 -792
- package/highcharts-gantt.js.map +1 -1
- package/highcharts-gantt.src.js +16535 -15918
- package/highcharts-more.d.ts +73 -1
- package/highcharts-more.js +193 -192
- package/highcharts-more.js.map +1 -1
- package/highcharts-more.src.d.ts +73 -1
- package/highcharts-more.src.js +8044 -7839
- package/highcharts.d.ts +3850 -177
- package/highcharts.js +589 -581
- package/highcharts.js.map +1 -1
- package/highcharts.src.d.ts +3850 -177
- package/highcharts.src.js +16635 -16060
- package/highmaps.js +708 -698
- package/highmaps.js.map +1 -1
- package/highmaps.src.js +17419 -16521
- package/highstock.js +782 -769
- package/highstock.js.map +1 -1
- package/highstock.src.js +28867 -27975
- package/indicators/acceleration-bands.js +9 -9
- package/indicators/acceleration-bands.js.map +1 -1
- package/indicators/acceleration-bands.src.js +7 -1
- package/indicators/accumulation-distribution.js +1 -1
- package/indicators/accumulation-distribution.src.js +1 -1
- package/indicators/ao.js +1 -1
- package/indicators/ao.src.js +1 -1
- package/indicators/apo.js +1 -1
- package/indicators/apo.src.js +1 -1
- package/indicators/aroon-oscillator.js +9 -9
- package/indicators/aroon-oscillator.js.map +1 -1
- package/indicators/aroon-oscillator.src.js +7 -1
- package/indicators/aroon.js +9 -9
- package/indicators/aroon.js.map +1 -1
- package/indicators/aroon.src.js +7 -1
- package/indicators/atr.js +1 -1
- package/indicators/atr.src.js +1 -1
- package/indicators/bollinger-bands.js +9 -9
- package/indicators/bollinger-bands.js.map +1 -1
- package/indicators/bollinger-bands.src.js +7 -1
- 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.js +1 -1
- package/indicators/cmo.src.js +1 -1
- package/indicators/dema.js +1 -1
- package/indicators/dema.src.js +1 -1
- package/indicators/disparity-index.js +1 -1
- package/indicators/disparity-index.src.js +1 -1
- package/indicators/dmi.js +11 -11
- package/indicators/dmi.js.map +1 -1
- package/indicators/dmi.src.js +7 -1
- package/indicators/dpo.js +1 -1
- package/indicators/dpo.src.js +1 -1
- package/indicators/ema.js +1 -1
- package/indicators/ema.src.js +1 -1
- package/indicators/ichimoku-kinko-hyo.js +1 -1
- package/indicators/ichimoku-kinko-hyo.src.js +1 -1
- package/indicators/indicators-all.js +203 -200
- package/indicators/indicators-all.js.map +1 -1
- package/indicators/indicators-all.src.js +206 -104
- package/indicators/indicators.js +12 -11
- package/indicators/indicators.js.map +1 -1
- package/indicators/indicators.src.js +108 -90
- package/indicators/keltner-channels.js +9 -9
- package/indicators/keltner-channels.js.map +1 -1
- package/indicators/keltner-channels.src.js +7 -1
- package/indicators/klinger.js +13 -13
- package/indicators/klinger.js.map +1 -1
- package/indicators/klinger.src.js +7 -1
- package/indicators/macd.js +1 -1
- package/indicators/macd.src.js +1 -1
- 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.js +1 -1
- package/indicators/obv.src.js +1 -1
- package/indicators/pivot-points.js +1 -1
- package/indicators/pivot-points.src.js +1 -1
- package/indicators/ppo.js +1 -1
- package/indicators/ppo.src.js +1 -1
- package/indicators/price-channel.js +9 -9
- package/indicators/price-channel.js.map +1 -1
- package/indicators/price-channel.src.js +7 -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 +1 -1
- package/indicators/slow-stochastic.src.js +1 -1
- package/indicators/stochastic.js +10 -10
- package/indicators/stochastic.js.map +1 -1
- package/indicators/stochastic.src.js +7 -1
- package/indicators/supertrend.js +10 -10
- package/indicators/supertrend.js.map +1 -1
- package/indicators/supertrend.src.js +23 -10
- 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 -15
- package/indicators/volume-by-price.js.map +1 -1
- package/indicators/volume-by-price.src.js +71 -6
- 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 +203 -202
- package/modules/accessibility.js.map +1 -1
- package/modules/accessibility.src.js +89 -49
- package/modules/annotations-advanced.js +164 -163
- package/modules/annotations-advanced.js.map +1 -1
- package/modules/annotations-advanced.src.js +162 -87
- package/modules/annotations.js +111 -111
- package/modules/annotations.js.map +1 -1
- package/modules/annotations.src.js +162 -87
- package/modules/arrow-symbols.js +1 -1
- package/modules/arrow-symbols.src.js +1 -1
- package/modules/boost-canvas.js +2 -2
- package/modules/boost-canvas.js.map +1 -1
- package/modules/boost-canvas.src.js +2 -2
- package/modules/boost.js +52 -52
- package/modules/boost.js.map +1 -1
- package/modules/boost.src.js +15 -7
- package/modules/broken-axis.js +13 -13
- package/modules/broken-axis.js.map +1 -1
- package/modules/broken-axis.src.js +34 -15
- package/modules/bullet.js +1 -1
- package/modules/bullet.src.js +1 -1
- package/modules/coloraxis.js +24 -22
- package/modules/coloraxis.js.map +1 -1
- package/modules/coloraxis.src.js +954 -774
- package/modules/current-date-indicator.js +2 -2
- package/modules/current-date-indicator.js.map +1 -1
- package/modules/current-date-indicator.src.js +2 -2
- package/modules/cylinder.js +1 -1
- package/modules/cylinder.src.js +1 -1
- package/modules/data.js +33 -32
- package/modules/data.js.map +1 -1
- package/modules/data.src.js +182 -134
- package/modules/datagrouping.d.ts +5 -0
- package/modules/datagrouping.js +20 -20
- package/modules/datagrouping.js.map +1 -1
- package/modules/datagrouping.src.d.ts +5 -0
- package/modules/datagrouping.src.js +270 -228
- package/modules/debugger.js +3 -3
- package/modules/debugger.js.map +1 -1
- package/modules/debugger.src.js +3 -3
- package/modules/dependency-wheel.js +1 -1
- package/modules/dependency-wheel.src.js +1 -1
- package/modules/dotplot.js +1 -1
- package/modules/dotplot.src.js +1 -1
- package/modules/drag-panes.js +1 -1
- package/modules/drag-panes.src.js +1 -1
- package/modules/draggable-points.js +34 -34
- package/modules/draggable-points.js.map +1 -1
- package/modules/draggable-points.src.js +14 -5
- package/modules/drilldown.d.ts +27 -0
- package/modules/drilldown.js +18 -18
- package/modules/drilldown.js.map +1 -1
- package/modules/drilldown.src.d.ts +27 -0
- package/modules/drilldown.src.js +42 -16
- package/modules/dumbbell.js +1 -1
- package/modules/dumbbell.src.js +1 -1
- package/modules/export-data.js +20 -20
- package/modules/export-data.js.map +1 -1
- package/modules/export-data.src.js +8 -5
- package/modules/exporting.d.ts +29 -0
- package/modules/exporting.js +38 -35
- package/modules/exporting.js.map +1 -1
- package/modules/exporting.src.d.ts +29 -0
- package/modules/exporting.src.js +1937 -1614
- package/modules/full-screen.js +2 -2
- package/modules/full-screen.js.map +1 -1
- package/modules/full-screen.src.js +8 -6
- 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 +218 -217
- package/modules/gantt.js.map +1 -1
- package/modules/gantt.src.js +74 -32
- package/modules/grid-axis.js +23 -22
- package/modules/grid-axis.js.map +1 -1
- package/modules/grid-axis.src.js +9 -4
- package/modules/heatmap.js +39 -37
- package/modules/heatmap.js.map +1 -1
- package/modules/heatmap.src.js +963 -779
- package/modules/heikinashi.js +17 -0
- package/modules/heikinashi.js.map +1 -0
- package/modules/heikinashi.src.js +394 -0
- package/modules/histogram-bellcurve.js +1 -1
- package/modules/histogram-bellcurve.src.js +1 -1
- package/modules/hollowcandlestick.js +18 -0
- package/modules/hollowcandlestick.js.map +1 -0
- package/modules/hollowcandlestick.src.js +504 -0
- package/modules/item-series.js +1 -1
- package/modules/item-series.src.js +1 -1
- package/modules/lollipop.js +1 -1
- package/modules/lollipop.src.js +1 -1
- package/modules/map.d.ts +9 -0
- package/modules/map.js +122 -119
- package/modules/map.js.map +1 -1
- package/modules/map.src.d.ts +9 -0
- package/modules/map.src.js +1655 -1332
- package/modules/marker-clusters.js +1 -1
- package/modules/marker-clusters.src.js +1 -1
- package/modules/networkgraph.js +1 -1
- package/modules/networkgraph.src.js +1 -1
- package/modules/no-data-to-display.js +3 -3
- 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 +18 -16
- package/modules/offline-exporting.js.map +1 -1
- package/modules/offline-exporting.src.js +623 -562
- package/modules/oldie-polyfills.js +1 -1
- package/modules/oldie-polyfills.src.js +1 -1
- package/modules/oldie.js +2 -2
- package/modules/oldie.src.js +2 -2
- package/modules/organization.js +1 -1
- package/modules/organization.src.js +1 -1
- package/modules/overlapping-datalabels.js +1 -1
- package/modules/overlapping-datalabels.src.js +1 -1
- package/modules/parallel-coordinates.js +1 -1
- package/modules/parallel-coordinates.src.js +1 -1
- package/modules/pareto.js +1 -1
- package/modules/pareto.src.js +1 -1
- package/modules/pathfinder.js +1 -1
- package/modules/pathfinder.src.js +1 -1
- package/modules/pattern-fill.js +14 -14
- package/modules/pattern-fill.js.map +1 -1
- package/modules/pattern-fill.src.js +24 -12
- 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 +28 -28
- package/modules/sankey.js.map +1 -1
- package/modules/sankey.src.js +11 -11
- package/modules/series-label.js +1 -1
- package/modules/series-label.src.js +1 -1
- package/modules/solid-gauge.js +2 -2
- package/modules/solid-gauge.js.map +1 -1
- package/modules/solid-gauge.src.js +3 -3
- package/modules/sonification.js +1 -1
- package/modules/sonification.src.js +1 -1
- package/modules/static-scale.js +1 -1
- package/modules/static-scale.src.js +1 -1
- package/modules/stock-tools.js +159 -157
- package/modules/stock-tools.js.map +1 -1
- package/modules/stock-tools.src.js +253 -123
- package/modules/stock.d.ts +5 -0
- package/modules/stock.js +196 -191
- package/modules/stock.js.map +1 -1
- package/modules/stock.src.d.ts +5 -0
- package/modules/stock.src.js +7749 -7432
- package/modules/streamgraph.js +1 -1
- package/modules/streamgraph.src.js +1 -1
- package/modules/sunburst.js +5 -5
- package/modules/sunburst.js.map +1 -1
- package/modules/sunburst.src.js +6 -19
- package/modules/tilemap.js +1 -1
- package/modules/tilemap.src.js +1 -1
- package/modules/timeline.js +18 -17
- package/modules/timeline.js.map +1 -1
- package/modules/timeline.src.js +21 -24
- package/modules/treegrid.js +57 -57
- package/modules/treegrid.js.map +1 -1
- package/modules/treegrid.src.js +43 -19
- package/modules/treemap.js +5 -5
- package/modules/treemap.js.map +1 -1
- package/modules/treemap.src.js +5 -5
- package/modules/variable-pie.js +1 -1
- package/modules/variable-pie.src.js +1 -1
- package/modules/variwide.js +1 -1
- package/modules/variwide.src.js +1 -1
- package/modules/vector.js +1 -1
- package/modules/vector.src.js +1 -1
- package/modules/venn.js +31 -30
- package/modules/venn.js.map +1 -1
- package/modules/venn.src.js +508 -424
- package/modules/windbarb.js +1 -1
- package/modules/windbarb.src.js +1 -1
- package/modules/wordcloud.js +4 -4
- package/modules/wordcloud.js.map +1 -1
- package/modules/wordcloud.src.js +2 -1
- package/modules/xrange.js +17 -17
- package/modules/xrange.js.map +1 -1
- package/modules/xrange.src.js +7 -4
- package/package.json +1 -1
- package/themes/avocado.d.ts +6 -1
- package/themes/avocado.js +3 -3
- package/themes/avocado.js.map +1 -1
- package/themes/avocado.src.d.ts +6 -1
- package/themes/avocado.src.js +53 -22
- package/themes/dark-blue.d.ts +6 -1
- package/themes/dark-blue.js +3 -3
- package/themes/dark-blue.js.map +1 -1
- package/themes/dark-blue.src.d.ts +6 -1
- package/themes/dark-blue.src.js +231 -205
- package/themes/dark-green.d.ts +6 -1
- package/themes/dark-green.js +4 -4
- package/themes/dark-green.js.map +1 -1
- package/themes/dark-green.src.d.ts +6 -1
- package/themes/dark-green.src.js +236 -205
- package/themes/dark-unica.d.ts +6 -1
- package/themes/dark-unica.js +7 -7
- package/themes/dark-unica.js.map +1 -1
- package/themes/dark-unica.src.d.ts +6 -1
- package/themes/dark-unica.src.js +206 -174
- package/themes/gray.d.ts +6 -1
- package/themes/gray.js +3 -3
- package/themes/gray.js.map +1 -1
- package/themes/gray.src.d.ts +6 -1
- package/themes/gray.src.js +233 -207
- package/themes/grid-light.d.ts +6 -1
- package/themes/grid-light.js +4 -4
- package/themes/grid-light.js.map +1 -1
- package/themes/grid-light.src.d.ts +6 -1
- package/themes/grid-light.src.js +88 -57
- package/themes/grid.d.ts +6 -1
- package/themes/grid.js +3 -3
- package/themes/grid.js.map +1 -1
- package/themes/grid.src.d.ts +6 -1
- package/themes/grid.src.js +114 -83
- package/themes/high-contrast-dark.js +5 -4
- package/themes/high-contrast-dark.js.map +1 -1
- package/themes/high-contrast-dark.src.js +197 -166
- package/themes/high-contrast-light.js +3 -3
- package/themes/high-contrast-light.js.map +1 -1
- package/themes/high-contrast-light.src.js +54 -23
- package/themes/sand-signika.d.ts +6 -1
- package/themes/sand-signika.js +5 -5
- package/themes/sand-signika.js.map +1 -1
- package/themes/sand-signika.src.d.ts +6 -1
- package/themes/sand-signika.src.js +119 -88
- package/themes/skies.d.ts +6 -1
- package/themes/skies.js +5 -5
- package/themes/skies.js.map +1 -1
- package/themes/skies.src.d.ts +6 -1
- package/themes/skies.src.js +107 -76
- package/themes/sunset.d.ts +6 -1
- package/themes/sunset.js +3 -3
- package/themes/sunset.js.map +1 -1
- package/themes/sunset.src.d.ts +6 -1
- package/themes/sunset.src.js +52 -21
- package/es-modules/Core/Axis/ColorAxis.js +0 -1164
- package/es-modules/Core/Axis/HiddenAxis.js +0 -46
- package/es-modules/Core/Axis/PlotLineOrBand.js +0 -1051
- package/es-modules/Core/Series/DataLabels.js +0 -1173
- package/es-modules/Extensions/Exporting.js +0 -2024
- package/es-modules/Extensions/OfflineExporting.js +0 -621
- package/es-modules/Mixins/Geometry.js +0 -56
- package/es-modules/Mixins/GeometryCircles.js +0 -320
- package/es-modules/Series/Bubble/BubbleLegend.js +0 -893
|
@@ -19,6 +19,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
19
19
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
20
20
|
};
|
|
21
21
|
})();
|
|
22
|
+
import Chart from '../../../Core/Chart/Chart.js';
|
|
22
23
|
import RequiredIndicatorMixin from '../../../Mixins/IndicatorRequired.js';
|
|
23
24
|
import SeriesRegistry from '../../../Core/Series/SeriesRegistry.js';
|
|
24
25
|
var LineSeries = SeriesRegistry.seriesTypes.line;
|
|
@@ -132,90 +133,106 @@ var SMAIndicator = /** @class */ (function (_super) {
|
|
|
132
133
|
return error(generateMessage(indicator.type, requiredIndicators.needed));
|
|
133
134
|
}
|
|
134
135
|
_super.prototype.init.call(indicator, chart, options);
|
|
135
|
-
//
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
// x and y's, values. However, do it only for non-grouped
|
|
150
|
-
// data - grouping does it for us (#8572)
|
|
151
|
-
if (oldDataLength &&
|
|
152
|
-
!indicator.hasGroupedData &&
|
|
153
|
-
indicator.visible &&
|
|
154
|
-
indicator.points) {
|
|
155
|
-
// When data is cropped update only avaliable points (#9493)
|
|
156
|
-
if (indicator.cropped) {
|
|
157
|
-
if (indicator.xAxis) {
|
|
158
|
-
min = indicator.xAxis.min;
|
|
159
|
-
max = indicator.xAxis.max;
|
|
160
|
-
}
|
|
161
|
-
croppedData = indicator.cropData(processedData.xData, processedData.yData, min, max);
|
|
162
|
-
for (i = 0; i < croppedData.xData.length; i++) {
|
|
163
|
-
// (#10774)
|
|
164
|
-
croppedDataValues.push([
|
|
165
|
-
croppedData.xData[i]
|
|
166
|
-
].concat(splat(croppedData.yData[i])));
|
|
167
|
-
}
|
|
168
|
-
oldFirstPointIndex = processedData.xData.indexOf(indicator.xData[0]);
|
|
169
|
-
oldLastPointIndex = processedData.xData.indexOf(indicator.xData[indicator.xData.length - 1]);
|
|
170
|
-
// Check if indicator points should be shifted (#8572)
|
|
171
|
-
if (oldFirstPointIndex === -1 &&
|
|
172
|
-
oldLastPointIndex === processedData.xData.length - 2) {
|
|
173
|
-
if (croppedDataValues[0][0] === oldData[0].x) {
|
|
174
|
-
croppedDataValues.shift();
|
|
175
|
-
}
|
|
136
|
+
// Only after series are linked indicator can be processed.
|
|
137
|
+
var linkedSeriesUnbiner = addEvent(Chart, 'afterLinkSeries', function () {
|
|
138
|
+
var hasEvents = !!indicator.dataEventsToUnbind.length;
|
|
139
|
+
if (indicator.linkedParent) {
|
|
140
|
+
if (!hasEvents) {
|
|
141
|
+
indicator.dataEventsToUnbind.push(addEvent(indicator.bindTo.series ?
|
|
142
|
+
indicator.linkedParent :
|
|
143
|
+
indicator.linkedParent.xAxis, indicator.bindTo.eventName, function () {
|
|
144
|
+
indicator.recalculateValues();
|
|
145
|
+
}));
|
|
146
|
+
}
|
|
147
|
+
if (indicator.calculateOn === 'init') {
|
|
148
|
+
if (!indicator.processedYData) {
|
|
149
|
+
indicator.recalculateValues();
|
|
176
150
|
}
|
|
177
|
-
indicator.updateData(croppedDataValues);
|
|
178
|
-
// Omit addPoint() and removePoint() cases
|
|
179
151
|
}
|
|
180
|
-
else
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
152
|
+
else {
|
|
153
|
+
if (!hasEvents) {
|
|
154
|
+
var unbinder_1 = addEvent(indicator.chart, indicator.calculateOn, function () {
|
|
155
|
+
indicator.recalculateValues();
|
|
156
|
+
// Call this just once, on init
|
|
157
|
+
unbinder_1();
|
|
158
|
+
});
|
|
159
|
+
}
|
|
184
160
|
}
|
|
185
161
|
}
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
162
|
+
else {
|
|
163
|
+
return error('Series ' +
|
|
164
|
+
indicator.options.linkedTo +
|
|
165
|
+
' not found! Check `linkedTo`.', false, chart);
|
|
166
|
+
}
|
|
167
|
+
}, {
|
|
168
|
+
order: 0
|
|
169
|
+
});
|
|
170
|
+
// Make sure we find series which is a base for an indicator
|
|
171
|
+
// chart.linkSeries();
|
|
172
|
+
indicator.dataEventsToUnbind = [];
|
|
173
|
+
indicator.eventsToUnbind.push(linkedSeriesUnbiner);
|
|
174
|
+
};
|
|
175
|
+
/**
|
|
176
|
+
* @private
|
|
177
|
+
* @return {void}
|
|
178
|
+
*/
|
|
179
|
+
SMAIndicator.prototype.recalculateValues = function () {
|
|
180
|
+
var indicator = this, oldData = indicator.points || [], oldDataLength = (indicator.xData || []).length, processedData = (indicator.getValues(indicator.linkedParent, indicator.options.params) || {
|
|
181
|
+
values: [],
|
|
182
|
+
xData: [],
|
|
183
|
+
yData: []
|
|
184
|
+
}), croppedDataValues = [], overwriteData = true, oldFirstPointIndex, oldLastPointIndex, croppedData, min, max, i;
|
|
185
|
+
// We need to update points to reflect changes in all,
|
|
186
|
+
// x and y's, values. However, do it only for non-grouped
|
|
187
|
+
// data - grouping does it for us (#8572)
|
|
188
|
+
if (oldDataLength &&
|
|
189
|
+
!indicator.hasGroupedData &&
|
|
190
|
+
indicator.visible &&
|
|
191
|
+
indicator.points) {
|
|
192
|
+
// When data is cropped update only avaliable points (#9493)
|
|
193
|
+
if (indicator.cropped) {
|
|
194
|
+
if (indicator.xAxis) {
|
|
195
|
+
min = indicator.xAxis.min;
|
|
196
|
+
max = indicator.xAxis.max;
|
|
197
|
+
}
|
|
198
|
+
croppedData = indicator.cropData(processedData.xData, processedData.yData, min, max);
|
|
199
|
+
for (i = 0; i < croppedData.xData.length; i++) {
|
|
200
|
+
// (#10774)
|
|
201
|
+
croppedDataValues.push([
|
|
202
|
+
croppedData.xData[i]
|
|
203
|
+
].concat(splat(croppedData.yData[i])));
|
|
204
|
+
}
|
|
205
|
+
oldFirstPointIndex = processedData.xData.indexOf(indicator.xData[0]);
|
|
206
|
+
oldLastPointIndex = processedData.xData.indexOf(indicator.xData[indicator.xData.length - 1]);
|
|
207
|
+
// Check if indicator points should be shifted (#8572)
|
|
208
|
+
if (oldFirstPointIndex === -1 &&
|
|
209
|
+
oldLastPointIndex === processedData.xData.length - 2) {
|
|
210
|
+
if (croppedDataValues[0][0] === oldData[0].x) {
|
|
211
|
+
croppedDataValues.shift();
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
indicator.updateData(croppedDataValues);
|
|
215
|
+
// Omit addPoint() and removePoint() cases
|
|
190
216
|
}
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
indicator.isDirty = true;
|
|
196
|
-
indicator.redraw();
|
|
217
|
+
else if (processedData.xData.length !== oldDataLength - 1 &&
|
|
218
|
+
processedData.xData.length !== oldDataLength + 1) {
|
|
219
|
+
overwriteData = false;
|
|
220
|
+
indicator.updateData(processedData.values);
|
|
197
221
|
}
|
|
198
|
-
indicator.isDirtyData = false;
|
|
199
|
-
}
|
|
200
|
-
if (!indicator.linkedParent) {
|
|
201
|
-
return error('Series ' +
|
|
202
|
-
indicator.options.linkedTo +
|
|
203
|
-
' not found! Check `linkedTo`.', false, chart);
|
|
204
222
|
}
|
|
205
|
-
|
|
206
|
-
indicator.
|
|
207
|
-
indicator.
|
|
208
|
-
|
|
209
|
-
recalculateValues();
|
|
223
|
+
if (overwriteData) {
|
|
224
|
+
indicator.xData = processedData.xData;
|
|
225
|
+
indicator.yData = processedData.yData;
|
|
226
|
+
indicator.options.data = processedData.values;
|
|
210
227
|
}
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
228
|
+
// Removal of processedXData property is required because on
|
|
229
|
+
// first translate processedXData array is empty
|
|
230
|
+
if (indicator.bindTo.series === false) {
|
|
231
|
+
delete indicator.processedXData;
|
|
232
|
+
indicator.isDirty = true;
|
|
233
|
+
indicator.redraw();
|
|
217
234
|
}
|
|
218
|
-
|
|
235
|
+
indicator.isDirtyData = false;
|
|
219
236
|
};
|
|
220
237
|
/**
|
|
221
238
|
* @private
|
|
@@ -23,7 +23,8 @@ import palette from '../../../Core/Color/Palette.js';
|
|
|
23
23
|
import SeriesRegistry from '../../../Core/Series/SeriesRegistry.js';
|
|
24
24
|
var _a = SeriesRegistry.seriesTypes, ATRIndicator = _a.atr, SMAIndicator = _a.sma;
|
|
25
25
|
import U from '../../../Core/Utilities.js';
|
|
26
|
-
|
|
26
|
+
import StockChart from '../../../Core/Chart/StockChart.js';
|
|
27
|
+
var addEvent = U.addEvent, correctFloat = U.correctFloat, isArray = U.isArray, extend = U.extend, merge = U.merge, objectEach = U.objectEach;
|
|
27
28
|
/* eslint-disable require-jsdoc */
|
|
28
29
|
// Utils:
|
|
29
30
|
function createPointObj(mainSeries, index, close) {
|
|
@@ -71,13 +72,24 @@ var SupertrendIndicator = /** @class */ (function (_super) {
|
|
|
71
72
|
SupertrendIndicator.prototype.init = function () {
|
|
72
73
|
var options, parentOptions;
|
|
73
74
|
SMAIndicator.prototype.init.apply(this, arguments);
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
75
|
+
var indicator = this;
|
|
76
|
+
// Only after series are linked add some additional logic/properties.
|
|
77
|
+
var unbinder = addEvent(StockChart, 'afterLinkSeries', function () {
|
|
78
|
+
// Protection for a case where the indicator is being updated,
|
|
79
|
+
// for a brief moment the indicator is deleted.
|
|
80
|
+
if (indicator.options) {
|
|
81
|
+
var options_1 = indicator.options;
|
|
82
|
+
parentOptions = indicator.linkedParent.options;
|
|
83
|
+
// Indicator cropThreshold has to be equal linked series one
|
|
84
|
+
// reduced by period due to points comparison in drawGraph
|
|
85
|
+
// (#9787)
|
|
86
|
+
options_1.cropThreshold = (parentOptions.cropThreshold -
|
|
87
|
+
(options_1.params.period - 1));
|
|
88
|
+
}
|
|
89
|
+
unbinder();
|
|
90
|
+
}, {
|
|
91
|
+
order: 1
|
|
92
|
+
});
|
|
81
93
|
};
|
|
82
94
|
SupertrendIndicator.prototype.drawGraph = function () {
|
|
83
95
|
var indicator = this, indicOptions = indicator.options,
|
|
@@ -23,6 +23,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
23
23
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
24
24
|
};
|
|
25
25
|
})();
|
|
26
|
+
import VBPPoint from './VBPPoint.js';
|
|
26
27
|
import A from '../../../Core/Animation/AnimationUtilities.js';
|
|
27
28
|
var animObject = A.animObject;
|
|
28
29
|
import H from '../../../Core/Globals.js';
|
|
@@ -30,6 +31,7 @@ var noop = H.noop;
|
|
|
30
31
|
import SeriesRegistry from '../../../Core/Series/SeriesRegistry.js';
|
|
31
32
|
var SMAIndicator = SeriesRegistry.seriesTypes.sma;
|
|
32
33
|
import U from '../../../Core/Utilities.js';
|
|
34
|
+
import StockChart from '../../../Core/Chart/StockChart.js';
|
|
33
35
|
var addEvent = U.addEvent, arrayMax = U.arrayMax, arrayMin = U.arrayMin, correctFloat = U.correctFloat, error = U.error, extend = U.extend, isArray = U.isArray, merge = U.merge;
|
|
34
36
|
/* eslint-disable require-jsdoc */
|
|
35
37
|
// Utils
|
|
@@ -79,10 +81,20 @@ var VBPIndicator = /** @class */ (function (_super) {
|
|
|
79
81
|
VBPIndicator.prototype.init = function (chart) {
|
|
80
82
|
var indicator = this, params, baseSeries, volumeSeries;
|
|
81
83
|
H.seriesTypes.sma.prototype.init.apply(indicator, arguments);
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
84
|
+
// Only after series are linked add some additional logic/properties.
|
|
85
|
+
var unbinder = addEvent(StockChart, 'afterLinkSeries', function () {
|
|
86
|
+
// Protection for a case where the indicator is being updated,
|
|
87
|
+
// for a brief moment the indicator is deleted.
|
|
88
|
+
if (indicator.options) {
|
|
89
|
+
params = indicator.options.params;
|
|
90
|
+
baseSeries = indicator.linkedParent;
|
|
91
|
+
volumeSeries = chart.get(params.volumeSeriesID);
|
|
92
|
+
indicator.addCustomEvents(baseSeries, volumeSeries);
|
|
93
|
+
}
|
|
94
|
+
unbinder();
|
|
95
|
+
}, {
|
|
96
|
+
order: 1
|
|
97
|
+
});
|
|
86
98
|
return indicator;
|
|
87
99
|
};
|
|
88
100
|
// Adds events related with removing series
|
|
@@ -500,6 +512,7 @@ extend(VBPIndicator.prototype, {
|
|
|
500
512
|
eventName: 'afterSetExtremes'
|
|
501
513
|
},
|
|
502
514
|
calculateOn: 'render',
|
|
515
|
+
pointClass: VBPPoint,
|
|
503
516
|
markerAttribs: noop,
|
|
504
517
|
drawGraph: noop,
|
|
505
518
|
getColumnMetrics: columnPrototype.getColumnMetrics,
|
|
@@ -106,6 +106,36 @@ bindingsUtils.addFlagFromForm = function (type) {
|
|
|
106
106
|
});
|
|
107
107
|
};
|
|
108
108
|
};
|
|
109
|
+
bindingsUtils.indicatorsWithAxes = [
|
|
110
|
+
'ad',
|
|
111
|
+
'atr',
|
|
112
|
+
'cci',
|
|
113
|
+
'cmf',
|
|
114
|
+
'disparityindex',
|
|
115
|
+
'cmo',
|
|
116
|
+
'dmi',
|
|
117
|
+
'macd',
|
|
118
|
+
'mfi',
|
|
119
|
+
'roc',
|
|
120
|
+
'rsi',
|
|
121
|
+
'ao',
|
|
122
|
+
'aroon',
|
|
123
|
+
'aroonoscillator',
|
|
124
|
+
'trix',
|
|
125
|
+
'apo',
|
|
126
|
+
'dpo',
|
|
127
|
+
'ppo',
|
|
128
|
+
'natr',
|
|
129
|
+
'obv',
|
|
130
|
+
'williamsr',
|
|
131
|
+
'stochastic',
|
|
132
|
+
'slowstochastic',
|
|
133
|
+
'linearRegression',
|
|
134
|
+
'linearRegressionSlope',
|
|
135
|
+
'linearRegressionIntercept',
|
|
136
|
+
'linearRegressionAngle',
|
|
137
|
+
'klinger'
|
|
138
|
+
];
|
|
109
139
|
bindingsUtils.manageIndicators = function (data) {
|
|
110
140
|
var navigation = this, chart = navigation.chart, seriesConfig = {
|
|
111
141
|
linkedTo: data.linkedTo,
|
|
@@ -118,36 +148,7 @@ bindingsUtils.manageIndicators = function (data) {
|
|
|
118
148
|
'obv',
|
|
119
149
|
'vbp',
|
|
120
150
|
'vwap'
|
|
121
|
-
], indicatorsWithAxes =
|
|
122
|
-
'ad',
|
|
123
|
-
'atr',
|
|
124
|
-
'cci',
|
|
125
|
-
'cmf',
|
|
126
|
-
'disparityindex',
|
|
127
|
-
'cmo',
|
|
128
|
-
'dmi',
|
|
129
|
-
'macd',
|
|
130
|
-
'mfi',
|
|
131
|
-
'roc',
|
|
132
|
-
'rsi',
|
|
133
|
-
'ao',
|
|
134
|
-
'aroon',
|
|
135
|
-
'aroonoscillator',
|
|
136
|
-
'trix',
|
|
137
|
-
'apo',
|
|
138
|
-
'dpo',
|
|
139
|
-
'ppo',
|
|
140
|
-
'natr',
|
|
141
|
-
'obv',
|
|
142
|
-
'williamsr',
|
|
143
|
-
'stochastic',
|
|
144
|
-
'slowstochastic',
|
|
145
|
-
'linearRegression',
|
|
146
|
-
'linearRegressionSlope',
|
|
147
|
-
'linearRegressionIntercept',
|
|
148
|
-
'linearRegressionAngle',
|
|
149
|
-
'klinger'
|
|
150
|
-
], yAxis, parentSeries, defaultOptions, series;
|
|
151
|
+
], indicatorsWithAxes = bindingsUtils.indicatorsWithAxes, yAxis, parentSeries, defaultOptions, series;
|
|
151
152
|
if (data.actionType === 'edit') {
|
|
152
153
|
navigation.fieldsToOptions(data.fields, seriesConfig);
|
|
153
154
|
series = chart.get(data.seriesId);
|
|
@@ -240,12 +241,12 @@ bindingsUtils.manageIndicators = function (data) {
|
|
|
240
241
|
* @return {void}
|
|
241
242
|
*/
|
|
242
243
|
bindingsUtils.updateHeight = function (e, annotation) {
|
|
243
|
-
var
|
|
244
|
-
if (
|
|
244
|
+
var options = annotation.options.typeOptions, yAxis = isNumber(options.yAxis) && this.chart.yAxis[options.yAxis];
|
|
245
|
+
if (yAxis && options.points) {
|
|
245
246
|
annotation.update({
|
|
246
247
|
typeOptions: {
|
|
247
|
-
height:
|
|
248
|
-
|
|
248
|
+
height: yAxis.toValue(e[yAxis.horiz ? 'chartX' : 'chartY']) -
|
|
249
|
+
(options.points[1].y || 0)
|
|
249
250
|
}
|
|
250
251
|
});
|
|
251
252
|
}
|
|
@@ -334,12 +335,12 @@ bindingsUtils.isPriceIndicatorEnabled = function (series) {
|
|
|
334
335
|
*/
|
|
335
336
|
bindingsUtils.updateNthPoint = function (startIndex) {
|
|
336
337
|
return function (e, annotation) {
|
|
337
|
-
var options = annotation.options.typeOptions,
|
|
338
|
-
if (
|
|
338
|
+
var options = annotation.options.typeOptions, xAxis = isNumber(options.xAxis) && this.chart.xAxis[options.xAxis], yAxis = isNumber(options.yAxis) && this.chart.yAxis[options.yAxis];
|
|
339
|
+
if (xAxis && yAxis) {
|
|
339
340
|
options.points.forEach(function (point, index) {
|
|
340
341
|
if (index >= startIndex) {
|
|
341
|
-
point.x =
|
|
342
|
-
point.y =
|
|
342
|
+
point.x = xAxis.toValue(e[xAxis.horiz ? 'chartX' : 'chartY']);
|
|
343
|
+
point.y = yAxis.toValue(e[yAxis.horiz ? 'chartX' : 'chartY']);
|
|
343
344
|
}
|
|
344
345
|
});
|
|
345
346
|
annotation.update({
|
|
@@ -1698,6 +1699,44 @@ var stockToolsBindings = {
|
|
|
1698
1699
|
fireEvent(this, 'deselectButton', { button: button });
|
|
1699
1700
|
}
|
|
1700
1701
|
},
|
|
1702
|
+
/**
|
|
1703
|
+
* Changes main series to `'heikinashi'` type.
|
|
1704
|
+
*
|
|
1705
|
+
* @type {Highcharts.NavigationBindingsOptionsObject}
|
|
1706
|
+
* @product highstock
|
|
1707
|
+
* @default {"className": "highcharts-series-type-heikinashi", "init": function() {}}
|
|
1708
|
+
*/
|
|
1709
|
+
seriesTypeHeikinAshi: {
|
|
1710
|
+
/** @ignore-option */
|
|
1711
|
+
className: 'highcharts-series-type-heikinashi',
|
|
1712
|
+
// eslint-disable-next-line valid-jsdoc
|
|
1713
|
+
/** @ignore-option */
|
|
1714
|
+
init: function (button) {
|
|
1715
|
+
this.chart.series[0].update({
|
|
1716
|
+
type: 'heikinashi'
|
|
1717
|
+
});
|
|
1718
|
+
fireEvent(this, 'deselectButton', { button: button });
|
|
1719
|
+
}
|
|
1720
|
+
},
|
|
1721
|
+
/**
|
|
1722
|
+
* Changes main series to `'hollowcandlestick'` type.
|
|
1723
|
+
*
|
|
1724
|
+
* @type {Highcharts.NavigationBindingsOptionsObject}
|
|
1725
|
+
* @product highstock
|
|
1726
|
+
* @default {"className": "highcharts-series-type-hollowcandlestick", "init": function() {}}
|
|
1727
|
+
*/
|
|
1728
|
+
seriesTypeHollowCandlestick: {
|
|
1729
|
+
/** @ignore-option */
|
|
1730
|
+
className: 'highcharts-series-type-hollowcandlestick',
|
|
1731
|
+
// eslint-disable-next-line valid-jsdoc
|
|
1732
|
+
/** @ignore-option */
|
|
1733
|
+
init: function (button) {
|
|
1734
|
+
this.chart.series[0].update({
|
|
1735
|
+
type: 'hollowcandlestick'
|
|
1736
|
+
});
|
|
1737
|
+
fireEvent(this, 'deselectButton', { button: button });
|
|
1738
|
+
}
|
|
1739
|
+
},
|
|
1701
1740
|
/**
|
|
1702
1741
|
* Displays chart in fullscreen.
|
|
1703
1742
|
*
|
|
@@ -53,6 +53,8 @@ setOptions({
|
|
|
53
53
|
typeOHLC: 'OHLC',
|
|
54
54
|
typeLine: 'Line',
|
|
55
55
|
typeCandlestick: 'Candlestick',
|
|
56
|
+
typeHollowCandlestick: 'Hollow Candlestick',
|
|
57
|
+
typeHeikinAshi: 'Heikin Ashi',
|
|
56
58
|
// Basic shapes:
|
|
57
59
|
circle: 'Circle',
|
|
58
60
|
label: 'Label',
|
|
@@ -140,6 +142,7 @@ setOptions({
|
|
|
140
142
|
// Indicators' params (#15170):
|
|
141
143
|
index: 'Index',
|
|
142
144
|
period: 'Period',
|
|
145
|
+
periods: 'Periods',
|
|
143
146
|
standardDeviation: 'Standard deviation',
|
|
144
147
|
periodTenkan: 'Tenkan period',
|
|
145
148
|
periodSenkouSpanB: 'Senkou Span B period',
|
|
@@ -718,12 +721,15 @@ setOptions({
|
|
|
718
721
|
* 'typeOHLC',
|
|
719
722
|
* 'typeLine',
|
|
720
723
|
* 'typeCandlestick'
|
|
724
|
+
* 'typeHollowCandlestick'
|
|
721
725
|
* ]
|
|
722
726
|
*/
|
|
723
727
|
items: [
|
|
724
728
|
'typeOHLC',
|
|
725
729
|
'typeLine',
|
|
726
|
-
'typeCandlestick'
|
|
730
|
+
'typeCandlestick',
|
|
731
|
+
'typeHollowCandlestick',
|
|
732
|
+
'typeHeikinAshi'
|
|
727
733
|
],
|
|
728
734
|
typeOHLC: {
|
|
729
735
|
/**
|
|
@@ -748,6 +754,22 @@ setOptions({
|
|
|
748
754
|
* @type {string}
|
|
749
755
|
*/
|
|
750
756
|
symbol: 'series-candlestick.svg'
|
|
757
|
+
},
|
|
758
|
+
typeHeikinAshi: {
|
|
759
|
+
/**
|
|
760
|
+
* A predefined background symbol for the button.
|
|
761
|
+
*
|
|
762
|
+
* @type {string}
|
|
763
|
+
*/
|
|
764
|
+
symbol: 'series-heikin-ashi.svg'
|
|
765
|
+
},
|
|
766
|
+
typeHollowCandlestick: {
|
|
767
|
+
/**
|
|
768
|
+
* A predefined background symbol for the button.
|
|
769
|
+
*
|
|
770
|
+
* @type {string}
|
|
771
|
+
*/
|
|
772
|
+
symbol: 'series-hollow-candlestick.svg'
|
|
751
773
|
}
|
|
752
774
|
},
|
|
753
775
|
fullScreen: {
|
|
@@ -1090,6 +1112,7 @@ var Toolbar = /** @class */ (function () {
|
|
|
1090
1112
|
container.appendChild(wrapper);
|
|
1091
1113
|
// Mimic event behaviour of being outside chart.container
|
|
1092
1114
|
[
|
|
1115
|
+
'mousedown',
|
|
1093
1116
|
'mousemove',
|
|
1094
1117
|
'click',
|
|
1095
1118
|
'touchstart'
|
|
@@ -1184,7 +1207,7 @@ var Toolbar = /** @class */ (function () {
|
|
|
1184
1207
|
*
|
|
1185
1208
|
*/
|
|
1186
1209
|
Toolbar.prototype.switchSymbol = function (button, redraw) {
|
|
1187
|
-
var buttonWrapper = button.parentNode, buttonWrapperClass = buttonWrapper.
|
|
1210
|
+
var buttonWrapper = button.parentNode, buttonWrapperClass = buttonWrapper.className,
|
|
1188
1211
|
// main button in first level og GUI
|
|
1189
1212
|
mainNavButton = buttonWrapper.parentNode.parentNode;
|
|
1190
1213
|
// if the button is disabled, don't do anything
|
|
@@ -1277,7 +1300,7 @@ var Toolbar = /** @class */ (function () {
|
|
|
1277
1300
|
Toolbar.prototype.getIconsURL = function () {
|
|
1278
1301
|
return this.chart.options.navigation.iconsURL ||
|
|
1279
1302
|
this.options.iconsURL ||
|
|
1280
|
-
'https://code.highcharts.com/9.
|
|
1303
|
+
'https://code.highcharts.com/9.2.2/gfx/stock-icons/';
|
|
1281
1304
|
};
|
|
1282
1305
|
return Toolbar;
|
|
1283
1306
|
}());
|
|
@@ -1322,6 +1345,8 @@ Toolbar.prototype.classMapping = {
|
|
|
1322
1345
|
typeLine: PREFIX + 'series-type-line',
|
|
1323
1346
|
typeOHLC: PREFIX + 'series-type-ohlc',
|
|
1324
1347
|
typeCandlestick: PREFIX + 'series-type-candlestick',
|
|
1348
|
+
typeHollowCandlestick: PREFIX + 'series-type-hollowcandlestick',
|
|
1349
|
+
typeHeikinAshi: PREFIX + 'series-type-heikinashi',
|
|
1325
1350
|
fullScreen: PREFIX + 'full-screen',
|
|
1326
1351
|
toggleAnnotations: PREFIX + 'toggle-annotations',
|
|
1327
1352
|
saveChart: PREFIX + 'save-chart',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Highcharts JS v9.
|
|
2
|
+
* @license Highcharts JS v9.2.2 (2021-08-24)
|
|
3
3
|
* @module highcharts/highcharts-more
|
|
4
4
|
* @requires highcharts
|
|
5
5
|
*
|
|
@@ -8,17 +8,21 @@
|
|
|
8
8
|
* License: www.highcharts.com/license
|
|
9
9
|
*/
|
|
10
10
|
'use strict';
|
|
11
|
+
import Highcharts from '../Core/Globals.js';
|
|
12
|
+
var G = Highcharts;
|
|
11
13
|
import '../Extensions/Pane.js';
|
|
12
|
-
import '../Core/Axis/RadialAxis.js';
|
|
14
|
+
import RadialAxis from '../Core/Axis/RadialAxis.js';
|
|
15
|
+
RadialAxis.compose(G.Axis, G.Tick);
|
|
13
16
|
import '../Series/AreaRange/AreaRangeSeries.js';
|
|
14
17
|
import '../Series/AreaSplineRange/AreaSplineRangeSeries.js';
|
|
18
|
+
import '../Series/BoxPlot/BoxPlotSeries.js';
|
|
19
|
+
import BubbleSeries from '../Series/Bubble/BubbleSeries.js';
|
|
20
|
+
BubbleSeries.compose(G.Chart, G.Legend, G.Series);
|
|
15
21
|
import '../Series/ColumnRange/ColumnRangeSeries.js';
|
|
16
22
|
import '../Series/ColumnPyramid/ColumnPyramidSeries.js';
|
|
17
|
-
import '../Series/Gauge/GaugeSeries.js';
|
|
18
|
-
import '../Series/BoxPlot/BoxPlotSeries.js';
|
|
19
23
|
import '../Series/ErrorBar/ErrorBarSeries.js';
|
|
20
|
-
import '../Series/
|
|
21
|
-
import '../Series/Polygon/PolygonSeries.js';
|
|
22
|
-
import '../Series/Bubble/BubbleSeries.js';
|
|
24
|
+
import '../Series/Gauge/GaugeSeries.js';
|
|
23
25
|
import '../Series/PackedBubble/PackedBubbleSeries.js';
|
|
26
|
+
import '../Series/Polygon/PolygonSeries.js';
|
|
27
|
+
import '../Series/Waterfall/WaterfallSeries.js';
|
|
24
28
|
import '../Extensions/Polar.js';
|