highcharts 9.3.1 → 9.3.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 +1 -1
- package/css/highcharts.css +2 -2
- package/css/highcharts.scss +1 -1
- package/css/stocktools/gui.css +1 -1
- package/css/themes/dark-unica.css +2 -2
- package/css/themes/grid-light.css +2 -2
- package/css/themes/sand-signika.css +2 -2
- package/es-modules/Accessibility/A11yI18n.js +1 -5
- package/es-modules/Accessibility/Accessibility.js +11 -5
- package/es-modules/Accessibility/AccessibilityComponent.js +1 -1
- package/es-modules/Accessibility/Components/AnnotationsA11y.js +9 -5
- package/es-modules/Accessibility/Components/ContainerComponent.js +1 -1
- package/es-modules/Accessibility/Components/InfoRegionsComponent.js +8 -19
- package/es-modules/Accessibility/Components/LegendComponent.js +176 -86
- package/es-modules/Accessibility/Components/MenuComponent.js +1 -10
- package/es-modules/Accessibility/Components/RangeSelectorComponent.js +10 -13
- package/es-modules/Accessibility/Components/SeriesComponent/ForcedMarkers.js +15 -6
- package/es-modules/Accessibility/Components/SeriesComponent/NewDataAnnouncer.js +8 -4
- package/es-modules/Accessibility/Components/SeriesComponent/SeriesComponent.js +3 -1
- package/es-modules/Accessibility/Components/SeriesComponent/SeriesDescriber.js +16 -41
- package/es-modules/Accessibility/Components/SeriesComponent/SeriesKeyboardNavigation.js +20 -31
- package/es-modules/Accessibility/Components/ZoomComponent.js +135 -57
- package/es-modules/Accessibility/FocusBorder.js +0 -5
- package/es-modules/Accessibility/HighContrastMode.js +2 -1
- package/es-modules/Accessibility/KeyboardNavigation.js +5 -4
- package/es-modules/Accessibility/Options/DeprecatedOptions.js +12 -5
- package/es-modules/Accessibility/Options/LangOptions.js +3 -3
- package/es-modules/Accessibility/ProxyElement.js +12 -6
- package/es-modules/Accessibility/ProxyProvider.js +0 -3
- package/es-modules/Accessibility/Utils/Announcer.js +2 -2
- package/es-modules/Accessibility/Utils/ChartUtilities.js +17 -32
- package/es-modules/Accessibility/Utils/HTMLUtilities.js +0 -12
- package/es-modules/Core/Animation/Fx.js +5 -14
- package/es-modules/Core/Axis/Axis.js +42 -68
- package/es-modules/Core/Axis/Axis3D.js +10 -4
- package/es-modules/Core/Axis/BrokenAxis.js +17 -11
- package/es-modules/Core/Axis/Color/ColorAxis.js +7 -4
- package/es-modules/Core/Axis/Color/ColorAxisComposition.js +3 -3
- package/es-modules/Core/Axis/DateTimeAxis.js +3 -14
- package/es-modules/Core/Axis/GridAxis.js +26 -16
- package/es-modules/Core/Axis/NavigatorAxis.js +0 -5
- package/es-modules/Core/Axis/OrdinalAxis.js +83 -79
- package/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBandAxis.js +0 -5
- package/es-modules/Core/Axis/RadialAxis.js +7 -28
- package/es-modules/Core/Axis/ScrollbarAxis.js +18 -10
- package/es-modules/Core/Axis/StackingAxis.js +2 -1
- package/es-modules/Core/Axis/Tick.js +2 -4
- package/es-modules/Core/Axis/TreeGridAxis.js +26 -17
- package/es-modules/Core/Axis/TreeGridTick.js +4 -1
- package/es-modules/Core/Axis/WaterfallAxis.js +1 -1
- package/es-modules/Core/Axis/ZAxis.js +1 -1
- package/es-modules/Core/Chart/Chart.js +42 -44
- package/es-modules/Core/Chart/Chart3D.js +23 -10
- package/es-modules/Core/Chart/GanttChart.js +4 -4
- package/es-modules/Core/Chart/MapChart.js +3 -3
- package/es-modules/Core/Chart/StockChart.js +10 -23
- package/es-modules/Core/DefaultOptions.js +3 -2
- package/es-modules/Core/Geometry/CircleUtilities.js +2 -1
- package/es-modules/Core/Globals.js +1 -1
- package/es-modules/Core/HttpUtilities.js +5 -4
- package/es-modules/Core/Legend/Legend.js +12 -13
- package/es-modules/Core/Navigator.js +34 -22
- package/es-modules/Core/Pointer.js +13 -9
- package/es-modules/Core/Renderer/HTML/AST.js +27 -14
- package/es-modules/Core/Renderer/HTML/HTMLElement.js +4 -2
- package/es-modules/Core/Renderer/HTML/HTMLRenderer.js +8 -6
- package/es-modules/Core/Renderer/RendererUtilities.js +2 -2
- package/es-modules/Core/Renderer/SVG/SVGElement.js +8 -16
- package/es-modules/Core/Renderer/SVG/SVGLabel.js +17 -8
- package/es-modules/Core/Renderer/SVG/SVGRenderer.js +5 -12
- package/es-modules/Core/Renderer/SVG/SVGRenderer3D.js +12 -5
- package/es-modules/Core/Renderer/SVG/TextBuilder.js +16 -10
- package/es-modules/Core/Responsive.js +2 -3
- package/es-modules/Core/Scrollbar.js +14 -12
- package/es-modules/Core/Series/DataLabel.js +17 -12
- package/es-modules/Core/Series/Point.js +17 -16
- package/es-modules/Core/Series/Series.js +44 -73
- package/es-modules/Core/Series/SeriesDefaults.js +5 -4
- package/es-modules/Core/Time.js +14 -11
- package/es-modules/Core/Tooltip.js +19 -36
- package/es-modules/Core/Utilities.js +5 -17
- package/es-modules/Data/DataConverter.js +0 -6
- package/es-modules/Data/DataSeriesConverter.js +9 -5
- package/es-modules/Data/DataTable.js +2 -1
- package/es-modules/Data/Modifiers/DataModifier.js +1 -1
- package/es-modules/Data/Parsers/CSVParser.js +3 -2
- package/es-modules/Data/Parsers/GoogleSheetsParser.js +5 -2
- package/es-modules/Data/Stores/CSVStore.js +2 -2
- package/es-modules/Data/Stores/DataStore.js +1 -1
- package/es-modules/Data/Stores/GoogleSheetsStore.js +3 -1
- package/es-modules/Data/Stores/HTMLTableStore.js +3 -1
- package/es-modules/Extensions/Annotations/Annotations.js +11 -10
- package/es-modules/Extensions/Annotations/ControlPoint.js +0 -2
- package/es-modules/Extensions/Annotations/Controllables/ControllableCircle.js +1 -1
- package/es-modules/Extensions/Annotations/Controllables/ControllableEllipse.js +1 -1
- package/es-modules/Extensions/Annotations/Controllables/ControllableImage.js +1 -1
- package/es-modules/Extensions/Annotations/Controllables/ControllableLabel.js +3 -6
- package/es-modules/Extensions/Annotations/Controllables/ControllablePath.js +3 -2
- package/es-modules/Extensions/Annotations/Controllables/ControllableRect.js +1 -1
- package/es-modules/Extensions/Annotations/Mixins/ControllableMixin.js +6 -3
- package/es-modules/Extensions/Annotations/Mixins/EventEmitterMixin.js +0 -1
- package/es-modules/Extensions/Annotations/Mixins/MarkerMixin.js +5 -4
- package/es-modules/Extensions/Annotations/NavigationBindings.js +34 -29
- package/es-modules/Extensions/Annotations/Popup.js +40 -32
- package/es-modules/Extensions/Annotations/Types/CrookedLine.js +4 -2
- package/es-modules/Extensions/Annotations/Types/ElliottWave.js +1 -1
- package/es-modules/Extensions/Annotations/Types/Measure.js +15 -11
- package/es-modules/Extensions/Annotations/Types/Pitchfork.js +2 -1
- package/es-modules/Extensions/Annotations/Types/TimeCycles.js +8 -4
- package/es-modules/Extensions/Annotations/Types/Tunnel.js +10 -5
- package/es-modules/Extensions/Boost/BoostOverrides.js +3 -9
- package/es-modules/Extensions/Boost/BoostUtils.js +0 -6
- package/es-modules/Extensions/Boost/WGLRenderer.js +16 -12
- package/es-modules/Extensions/Boost/WGLShader.js +9 -8
- package/es-modules/Extensions/Boost/WGLVBuffer.js +4 -7
- package/es-modules/Extensions/Data.js +4 -48
- package/es-modules/Extensions/DataGrouping.js +22 -15
- package/es-modules/Extensions/DraggablePoints.js +7 -8
- package/es-modules/Extensions/Drilldown.js +9 -4
- package/es-modules/Extensions/ExportData.js +6 -5
- package/es-modules/Extensions/Exporting/Exporting.js +23 -37
- package/es-modules/Extensions/FullScreen.js +4 -3
- package/es-modules/Extensions/GeoJSON.js +3 -3
- package/es-modules/Extensions/MarkerClusters.js +3 -1
- package/es-modules/Extensions/Math3D.js +4 -4
- package/es-modules/Extensions/OfflineExporting/OfflineExporting.js +23 -24
- package/es-modules/Extensions/OfflineExporting/OfflineExportingDefaults.js +1 -1
- package/es-modules/Extensions/Oldie/Oldie.js +13 -77
- package/es-modules/Extensions/Oldie/VMLAxis3D.js +5 -1
- package/es-modules/Extensions/OverlappingDataLabels.js +10 -6
- package/es-modules/Extensions/Pane.js +6 -6
- package/es-modules/Extensions/ParallelCoordinates.js +5 -3
- package/es-modules/Extensions/PatternFill.js +17 -11
- package/es-modules/Extensions/Polar.js +6 -3
- package/es-modules/Extensions/PriceIndication.js +2 -1
- package/es-modules/Extensions/RangeSelector.js +19 -55
- package/es-modules/Extensions/ScrollablePlotArea.js +2 -2
- package/es-modules/Extensions/SeriesLabel.js +1 -1
- package/es-modules/Extensions/Sonification/ChartSonify.js +32 -26
- package/es-modules/Extensions/Sonification/Instrument.js +12 -15
- package/es-modules/Extensions/Sonification/PointSonify.js +12 -8
- package/es-modules/Extensions/Sonification/SeriesSonify.js +33 -18
- package/es-modules/Extensions/Sonification/SignalHandler.js +4 -6
- package/es-modules/Extensions/Sonification/Sonification.js +1 -1
- package/es-modules/Extensions/Sonification/SonificationUtilities.js +11 -7
- package/es-modules/Extensions/Sonification/Timeline.js +2 -7
- package/es-modules/Extensions/Sonification/TimelineEvent.js +0 -1
- package/es-modules/Extensions/Sonification/TimelinePath.js +8 -8
- package/es-modules/Extensions/Stacking.js +5 -23
- package/es-modules/Extensions/Themes/BrandDark.js +293 -0
- package/es-modules/Extensions/Themes/BrandLight.js +259 -0
- package/es-modules/Extensions/Themes/DarkUnica.js +4 -2
- package/es-modules/Extensions/Themes/Grid.js +4 -2
- package/es-modules/Extensions/Themes/GridLight.js +4 -2
- package/es-modules/Gantt/Connection.js +2 -2
- package/es-modules/Gantt/Pathfinder.js +6 -5
- package/es-modules/Gantt/PathfinderAlgorithms.js +12 -12
- package/es-modules/Maps/MapNavigation.js +6 -7
- package/es-modules/Maps/MapPointer.js +2 -1
- package/es-modules/Maps/MapSymbols.js +23 -3
- package/es-modules/Maps/MapViewOptionsDefault.js +1 -1
- package/es-modules/Series/Area/AreaSeries.js +13 -13
- package/es-modules/Series/Area3DSeries.js +4 -2
- package/es-modules/Series/AreaRange/AreaRangeSeries.js +24 -12
- package/es-modules/Series/Bellcurve/BellcurveSeries.js +2 -1
- package/es-modules/Series/Bubble/BubbleLegendItem.js +2 -12
- package/es-modules/Series/Candlestick/CandlestickSeries.js +0 -1
- package/es-modules/Series/ColorMapMixin.js +84 -0
- package/es-modules/Series/Column/ColumnSeries.js +16 -14
- package/es-modules/Series/Column3D/Column3DComposition.js +1 -2
- package/es-modules/Series/ColumnPyramid/ColumnPyramidSeries.js +5 -2
- package/es-modules/Series/ColumnRange/ColumnRangeSeries.js +2 -1
- package/es-modules/Series/Cylinder/CylinderComposition.js +36 -4
- package/es-modules/Series/DependencyWheel/DependencyWheelSeries.js +1 -1
- package/es-modules/Series/Dumbbell/DumbbellPoint.js +0 -1
- package/es-modules/Series/Dumbbell/DumbbellSeries.js +0 -3
- package/es-modules/Series/Flags/FlagsSymbols.js +2 -2
- package/es-modules/Series/Funnel3D/Funnel3DComposition.js +14 -8
- package/es-modules/Series/Funnel3D/Funnel3DSeries.js +2 -1
- package/es-modules/Series/Gantt/GanttPoint.js +1 -1
- package/es-modules/Series/Gantt/GanttSeries.js +3 -1
- package/es-modules/Series/HLC/HLCSeries.js +1 -6
- package/es-modules/Series/Heatmap/HeatmapPoint.js +10 -10
- package/es-modules/Series/Heatmap/HeatmapSeries.js +9 -10
- package/es-modules/Series/HeikinAshi/HeikinAshiSeries.js +8 -6
- package/es-modules/Series/Histogram/HistogramSeries.js +4 -4
- package/es-modules/Series/HollowCandlestick/HollowCandlestickPoint.js +1 -4
- package/es-modules/Series/HollowCandlestick/HollowCandlestickSeries.js +19 -20
- package/es-modules/Series/Item/ItemSeries.js +4 -5
- package/es-modules/Series/Map/MapPoint.js +6 -0
- package/es-modules/Series/Map/MapSeries.js +24 -25
- package/es-modules/Series/MapLine/MapLineSeries.js +0 -4
- package/es-modules/Series/Networkgraph/DraggableNodes.js +0 -4
- package/es-modules/Series/Networkgraph/Integrations.js +8 -22
- package/es-modules/Series/Networkgraph/Networkgraph.js +1 -5
- package/es-modules/Series/Networkgraph/QuadTree.js +1 -3
- package/es-modules/Series/NodesComposition.js +2 -1
- package/es-modules/Series/OHLC/OHLCPoint.js +0 -1
- package/es-modules/Series/OHLC/OHLCSeries.js +1 -1
- package/es-modules/Series/Organization/OrganizationSeries.js +4 -2
- package/es-modules/Series/PackedBubble/PackedBubbleComposition.js +1 -0
- package/es-modules/Series/PackedBubble/PackedBubblePoint.js +1 -1
- package/es-modules/Series/PackedBubble/PackedBubbleSeries.js +2 -4
- package/es-modules/Series/Pie/PiePoint.js +2 -2
- package/es-modules/Series/Pie/PieSeries.js +1 -1
- package/es-modules/Series/Pie3D/Pie3DComposition.js +2 -1
- package/es-modules/Series/Pie3D/Pie3DPoint.js +2 -1
- package/es-modules/Series/Pie3D/Pie3DSeries.js +1 -1
- package/es-modules/Series/Pyramid3D/Pyramid3DSeries.js +2 -1
- package/es-modules/Series/Sankey/SankeySeries.js +3 -2
- package/es-modules/Series/SolidGauge/SolidGaugeComposition.js +3 -1
- package/es-modules/Series/Spline/SplineSeries.js +0 -8
- package/es-modules/Series/Sunburst/SunburstSeries.js +2 -2
- package/es-modules/Series/Sunburst/SunburstUtilities.js +3 -2
- package/es-modules/Series/Tilemap/TilemapPoint.js +0 -2
- package/es-modules/Series/Tilemap/TilemapShapes.js +0 -7
- package/es-modules/Series/TreeUtilities.js +2 -2
- package/es-modules/Series/Treemap/TreemapSeries.js +18 -21
- package/es-modules/Series/Variwide/VariwideSeries.js +5 -1
- package/es-modules/Series/Venn/VennSeries.js +6 -9
- package/es-modules/Series/Venn/VennUtils.js +8 -7
- package/es-modules/Series/Waterfall/WaterfallSeries.js +6 -3
- package/es-modules/Series/Wordcloud/WordcloudSeries.js +2 -2
- package/es-modules/Series/Wordcloud/WordcloudUtils.js +6 -10
- package/es-modules/Series/XRange/XRangePoint.js +6 -12
- package/es-modules/Series/XRange/XRangeSeries.js +4 -20
- package/es-modules/Stock/Indicators/ABands/ABandsIndicator.js +12 -0
- package/es-modules/Stock/Indicators/Aroon/AroonIndicator.js +1 -0
- package/es-modules/Stock/Indicators/BB/BBIndicator.js +12 -0
- package/es-modules/Stock/Indicators/CMF/CMFIndicator.js +35 -15
- package/es-modules/Stock/Indicators/DMI/DMIIndicator.js +9 -5
- package/es-modules/Stock/Indicators/DisparityIndex/DisparityIndexIndicator.js +2 -1
- package/es-modules/Stock/Indicators/IKH/IKHIndicator.js +6 -6
- package/es-modules/Stock/Indicators/KeltnerChannels/KeltnerChannelsIndicator.js +12 -0
- package/es-modules/Stock/Indicators/Klinger/KlingerIndicator.js +8 -3
- package/es-modules/Stock/Indicators/LinearRegression/LinearRegression.js +30 -12
- package/es-modules/Stock/Indicators/MACD/MACDIndicator.js +1 -1
- package/es-modules/Stock/Indicators/MultipleLinesComposition.js +70 -6
- package/es-modules/Stock/Indicators/PC/PCIndicator.js +11 -0
- package/es-modules/Stock/Indicators/PivotPoints/PivotPointsIndicator.js +2 -1
- package/es-modules/Stock/Indicators/RSI/RSIIndicator.js +2 -1
- package/es-modules/Stock/Indicators/SMA/SMAIndicator.js +2 -3
- package/es-modules/Stock/Indicators/Stochastic/StochasticIndicator.js +3 -1
- package/es-modules/Stock/Indicators/VBP/VBPIndicator.js +3 -3
- package/es-modules/Stock/Indicators/VWAP/VWAPIndicator.js +19 -7
- package/es-modules/Stock/StockToolsBindings.js +13 -6
- package/es-modules/Stock/StockToolsGui.js +34 -23
- 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 +2 -2
- 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 +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 +1 -1
- package/es-modules/masters/modules/dumbbell.src.js +1 -1
- package/es-modules/masters/modules/export-data.src.js +1 -1
- package/es-modules/masters/modules/exporting.src.js +1 -1
- package/es-modules/masters/modules/full-screen.src.js +1 -1
- package/es-modules/masters/modules/funnel.src.js +1 -1
- package/es-modules/masters/modules/funnel3d.src.js +1 -1
- package/es-modules/masters/modules/gantt.src.js +1 -1
- package/es-modules/masters/modules/grid-axis.src.js +1 -1
- package/es-modules/masters/modules/heatmap.src.js +1 -1
- package/es-modules/masters/modules/heikinashi.src.js +1 -1
- package/es-modules/masters/modules/histogram-bellcurve.src.js +1 -1
- package/es-modules/masters/modules/hollowcandlestick.src.js +1 -1
- package/es-modules/masters/modules/item-series.src.js +1 -1
- package/es-modules/masters/modules/lollipop.src.js +1 -1
- package/es-modules/masters/modules/map.src.js +1 -1
- package/es-modules/masters/modules/marker-clusters.src.js +1 -1
- package/es-modules/masters/modules/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 +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 +1 -1
- package/es-modules/masters/themes/brand-dark.src.js +14 -0
- package/es-modules/masters/themes/brand-light.src.js +14 -0
- 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 +1 -1
- package/highcharts-3d.js.map +1 -1
- package/highcharts-3d.src.js +65 -35
- package/highcharts-gantt.js +799 -799
- package/highcharts-gantt.js.map +1 -1
- package/highcharts-gantt.src.js +589 -698
- package/highcharts-more.js +1 -1
- package/highcharts-more.js.map +1 -1
- package/highcharts-more.src.js +73 -103
- package/highcharts.d.ts +5586 -1709
- package/highcharts.js +577 -577
- package/highcharts.js.map +1 -1
- package/highcharts.src.d.ts +5586 -1709
- package/highcharts.src.js +391 -486
- package/highmaps.js +723 -723
- package/highmaps.js.map +1 -1
- package/highmaps.src.js +552 -656
- package/highstock.js +782 -782
- package/highstock.js.map +1 -1
- package/highstock.src.js +612 -731
- package/indicators/acceleration-bands.d.ts +17 -1
- package/indicators/acceleration-bands.js +11 -10
- package/indicators/acceleration-bands.js.map +1 -1
- package/indicators/acceleration-bands.src.d.ts +17 -1
- package/indicators/acceleration-bands.src.js +88 -6
- 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.d.ts +17 -1
- package/indicators/aroon-oscillator.js +10 -9
- package/indicators/aroon-oscillator.js.map +1 -1
- package/indicators/aroon-oscillator.src.d.ts +17 -1
- package/indicators/aroon-oscillator.src.js +76 -6
- package/indicators/aroon.d.ts +17 -1
- package/indicators/aroon.js +11 -9
- package/indicators/aroon.js.map +1 -1
- package/indicators/aroon.src.d.ts +17 -1
- package/indicators/aroon.src.js +77 -6
- package/indicators/atr.js +1 -1
- package/indicators/atr.src.js +1 -1
- package/indicators/bollinger-bands.d.ts +17 -1
- package/indicators/bollinger-bands.js +12 -10
- package/indicators/bollinger-bands.js.map +1 -1
- package/indicators/bollinger-bands.src.d.ts +17 -1
- package/indicators/bollinger-bands.src.js +88 -6
- 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.js.map +1 -1
- package/indicators/cmf.src.js +36 -16
- 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.js.map +1 -1
- package/indicators/disparity-index.src.js +3 -2
- package/indicators/dmi.js +12 -11
- package/indicators/dmi.js.map +1 -1
- package/indicators/dmi.src.js +85 -11
- package/indicators/dpo.js +1 -1
- package/indicators/dpo.src.js +1 -1
- package/indicators/ichimoku-kinko-hyo.js +1 -1
- package/indicators/ichimoku-kinko-hyo.js.map +1 -1
- package/indicators/ichimoku-kinko-hyo.src.js +7 -7
- package/indicators/indicators-all.d.ts +17 -1
- package/indicators/indicators-all.js +198 -197
- package/indicators/indicators-all.js.map +1 -1
- package/indicators/indicators-all.src.d.ts +17 -1
- package/indicators/indicators-all.src.js +246 -65
- package/indicators/indicators.js +1 -1
- package/indicators/indicators.js.map +1 -1
- package/indicators/indicators.src.js +3 -4
- package/indicators/keltner-channels.d.ts +17 -1
- package/indicators/keltner-channels.js +11 -10
- package/indicators/keltner-channels.js.map +1 -1
- package/indicators/keltner-channels.src.d.ts +17 -1
- package/indicators/keltner-channels.src.js +88 -6
- package/indicators/klinger.js +14 -12
- package/indicators/klinger.js.map +1 -1
- package/indicators/klinger.src.js +84 -9
- package/indicators/macd.js +1 -1
- package/indicators/macd.js.map +1 -1
- package/indicators/macd.src.js +2 -2
- 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.js.map +1 -1
- package/indicators/pivot-points.src.js +3 -2
- package/indicators/ppo.js +1 -1
- package/indicators/ppo.src.js +1 -1
- package/indicators/price-channel.d.ts +17 -1
- package/indicators/price-channel.js +11 -9
- package/indicators/price-channel.js.map +1 -1
- package/indicators/price-channel.src.d.ts +17 -1
- package/indicators/price-channel.src.js +87 -6
- 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.js.map +1 -1
- package/indicators/regressions.src.js +31 -13
- package/indicators/roc.js +1 -1
- package/indicators/roc.src.js +1 -1
- package/indicators/rsi.js +1 -1
- package/indicators/rsi.js.map +1 -1
- package/indicators/rsi.src.js +3 -2
- package/indicators/slow-stochastic.js +1 -1
- package/indicators/slow-stochastic.src.js +1 -1
- package/indicators/stochastic.d.ts +17 -1
- package/indicators/stochastic.js +12 -10
- package/indicators/stochastic.js.map +1 -1
- package/indicators/stochastic.src.d.ts +17 -1
- package/indicators/stochastic.src.js +79 -7
- package/indicators/supertrend.js +1 -1
- package/indicators/supertrend.src.js +1 -1
- 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 +1 -1
- package/indicators/volume-by-price.src.js +4 -4
- package/indicators/vwap.js +1 -1
- package/indicators/vwap.js.map +1 -1
- package/indicators/vwap.src.js +20 -8
- 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.d.ts +0 -35
- package/modules/accessibility.js +225 -222
- package/modules/accessibility.js.map +1 -1
- package/modules/accessibility.src.d.ts +0 -35
- package/modules/accessibility.src.js +503 -418
- package/modules/annotations-advanced.js +128 -128
- package/modules/annotations-advanced.js.map +1 -1
- package/modules/annotations-advanced.src.js +152 -124
- package/modules/annotations.js +122 -122
- package/modules/annotations.js.map +1 -1
- package/modules/annotations.src.js +112 -100
- package/modules/arrow-symbols.js +1 -1
- package/modules/arrow-symbols.src.js +1 -1
- package/modules/boost-canvas.js +1 -1
- package/modules/boost-canvas.src.js +1 -1
- package/modules/boost.js +1 -1
- package/modules/boost.js.map +1 -1
- package/modules/boost.src.js +33 -43
- package/modules/broken-axis.js +1 -1
- package/modules/broken-axis.js.map +1 -1
- package/modules/broken-axis.src.js +18 -12
- package/modules/bullet.js +1 -1
- package/modules/bullet.src.js +1 -1
- package/modules/coloraxis.js +1 -1
- package/modules/coloraxis.js.map +1 -1
- package/modules/coloraxis.src.js +11 -8
- package/modules/current-date-indicator.js +1 -1
- package/modules/current-date-indicator.src.js +1 -1
- package/modules/cylinder.js +1 -1
- package/modules/cylinder.js.map +1 -1
- package/modules/cylinder.src.js +37 -5
- package/modules/data.d.ts +6 -6
- package/modules/data.js +31 -31
- package/modules/data.js.map +1 -1
- package/modules/data.src.d.ts +6 -6
- package/modules/data.src.js +10 -53
- package/modules/datagrouping.js +2 -2
- package/modules/datagrouping.js.map +1 -1
- package/modules/datagrouping.src.js +23 -16
- package/modules/debugger.js +1 -1
- package/modules/debugger.src.js +1 -1
- package/modules/dependency-wheel.js +3 -3
- package/modules/dependency-wheel.js.map +1 -1
- package/modules/dependency-wheel.src.js +2 -2
- 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 +1 -1
- package/modules/draggable-points.js.map +1 -1
- package/modules/draggable-points.src.js +8 -9
- package/modules/drilldown.js +1 -1
- package/modules/drilldown.js.map +1 -1
- package/modules/drilldown.src.js +10 -5
- package/modules/dumbbell.js +1 -1
- package/modules/dumbbell.js.map +1 -1
- package/modules/dumbbell.src.js +1 -5
- package/modules/export-data.js +19 -19
- package/modules/export-data.js.map +1 -1
- package/modules/export-data.src.js +7 -6
- package/modules/exporting.js +1 -1
- package/modules/exporting.js.map +1 -1
- package/modules/exporting.src.js +33 -45
- package/modules/full-screen.js +1 -1
- package/modules/full-screen.js.map +1 -1
- package/modules/full-screen.src.js +5 -4
- package/modules/funnel.js +1 -1
- package/modules/funnel.src.js +1 -1
- package/modules/funnel3d.js +1 -1
- package/modules/funnel3d.js.map +1 -1
- package/modules/funnel3d.src.js +17 -10
- package/modules/gantt.js +1 -1
- package/modules/gantt.js.map +1 -1
- package/modules/gantt.src.js +199 -213
- package/modules/grid-axis.js +1 -1
- package/modules/grid-axis.js.map +1 -1
- package/modules/grid-axis.src.js +27 -19
- package/modules/heatmap.js +39 -39
- package/modules/heatmap.js.map +1 -1
- package/modules/heatmap.src.js +88 -112
- package/modules/heikinashi.js +1 -1
- package/modules/heikinashi.js.map +1 -1
- package/modules/heikinashi.src.js +9 -7
- package/modules/histogram-bellcurve.js +1 -1
- package/modules/histogram-bellcurve.js.map +1 -1
- package/modules/histogram-bellcurve.src.js +7 -6
- package/modules/hollowcandlestick.js +1 -1
- package/modules/hollowcandlestick.js.map +1 -1
- package/modules/hollowcandlestick.src.js +21 -25
- package/modules/item-series.js +6 -6
- package/modules/item-series.js.map +1 -1
- package/modules/item-series.src.js +6 -6
- package/modules/lollipop.js +1 -1
- package/modules/lollipop.src.js +1 -1
- package/modules/map.d.ts +2 -0
- package/modules/map.js +144 -144
- package/modules/map.js.map +1 -1
- package/modules/map.src.d.ts +2 -0
- package/modules/map.src.js +162 -171
- package/modules/marker-clusters.js +1 -1
- package/modules/marker-clusters.js.map +1 -1
- package/modules/marker-clusters.src.js +4 -2
- package/modules/networkgraph.js +1 -1
- package/modules/networkgraph.js.map +1 -1
- package/modules/networkgraph.src.js +13 -36
- package/modules/no-data-to-display.js +1 -1
- package/modules/no-data-to-display.src.js +1 -1
- package/modules/offline-exporting.js +18 -18
- package/modules/offline-exporting.js.map +1 -1
- package/modules/offline-exporting.src.js +27 -32
- package/modules/oldie-polyfills.js +1 -1
- package/modules/oldie-polyfills.src.js +1 -1
- package/modules/oldie.js +2 -2
- package/modules/oldie.js.map +1 -1
- package/modules/oldie.src.js +19 -79
- package/modules/organization.js +1 -1
- package/modules/organization.js.map +1 -1
- package/modules/organization.src.js +5 -3
- 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.js.map +1 -1
- package/modules/parallel-coordinates.src.js +6 -4
- package/modules/pareto.js +1 -1
- package/modules/pareto.src.js +1 -1
- package/modules/pathfinder.js +1 -1
- package/modules/pathfinder.js.map +1 -1
- package/modules/pathfinder.src.js +21 -20
- package/modules/pattern-fill.js +1 -1
- package/modules/pattern-fill.js.map +1 -1
- package/modules/pattern-fill.src.js +18 -12
- package/modules/price-indicator.js +1 -1
- package/modules/price-indicator.js.map +1 -1
- package/modules/price-indicator.src.js +3 -2
- package/modules/pyramid3d.js +1 -1
- package/modules/pyramid3d.js.map +1 -1
- package/modules/pyramid3d.src.js +3 -2
- package/modules/sankey.js +1 -1
- package/modules/sankey.js.map +1 -1
- package/modules/sankey.src.js +8 -6
- package/modules/series-label.js +1 -1
- package/modules/series-label.js.map +1 -1
- package/modules/series-label.src.js +2 -2
- package/modules/solid-gauge.js +1 -1
- package/modules/solid-gauge.js.map +1 -1
- package/modules/solid-gauge.src.js +17 -2
- package/modules/sonification.js +53 -53
- package/modules/sonification.js.map +1 -1
- package/modules/sonification.src.js +121 -103
- package/modules/static-scale.js +1 -1
- package/modules/static-scale.src.js +1 -1
- package/modules/stock-tools.js +66 -66
- package/modules/stock-tools.js.map +1 -1
- package/modules/stock-tools.src.js +119 -96
- package/modules/stock.js +3 -3
- package/modules/stock.js.map +1 -1
- package/modules/stock.src.js +222 -246
- package/modules/streamgraph.js +1 -1
- package/modules/streamgraph.src.js +1 -1
- package/modules/sunburst.js +60 -61
- package/modules/sunburst.js.map +1 -1
- package/modules/sunburst.src.js +83 -113
- package/modules/tilemap.js +1 -1
- package/modules/tilemap.js.map +1 -1
- package/modules/tilemap.src.js +1 -10
- package/modules/timeline.js +1 -1
- package/modules/timeline.src.js +1 -1
- package/modules/treegrid.js +1 -1
- package/modules/treegrid.js.map +1 -1
- package/modules/treegrid.src.js +76 -50
- package/modules/treemap.js +41 -41
- package/modules/treemap.js.map +1 -1
- package/modules/treemap.src.js +78 -109
- package/modules/variable-pie.js +1 -1
- package/modules/variable-pie.src.js +1 -1
- package/modules/variwide.js +1 -1
- package/modules/variwide.js.map +1 -1
- package/modules/variwide.src.js +7 -3
- package/modules/vector.js +1 -1
- package/modules/vector.src.js +1 -1
- package/modules/venn.js +1 -1
- package/modules/venn.js.map +1 -1
- package/modules/venn.src.js +17 -18
- package/modules/windbarb.js +1 -1
- package/modules/windbarb.src.js +1 -1
- package/modules/wordcloud.js +1 -1
- package/modules/wordcloud.js.map +1 -1
- package/modules/wordcloud.src.js +9 -13
- package/modules/xrange.js +1 -1
- package/modules/xrange.js.map +1 -1
- package/modules/xrange.src.js +11 -33
- package/package.json +1 -1
- package/themes/avocado.js +1 -1
- package/themes/avocado.src.js +1 -1
- package/themes/brand-dark.js +15 -0
- package/themes/brand-dark.js.map +1 -0
- package/themes/brand-dark.src.js +328 -0
- package/themes/brand-light.js +15 -0
- package/themes/brand-light.js.map +1 -0
- package/themes/brand-light.src.js +294 -0
- package/themes/dark-blue.js +1 -1
- package/themes/dark-blue.src.js +1 -1
- package/themes/dark-green.js +1 -1
- package/themes/dark-green.src.js +1 -1
- package/themes/dark-unica.js +1 -1
- package/themes/dark-unica.js.map +1 -1
- package/themes/dark-unica.src.js +5 -3
- package/themes/gray.js +1 -1
- package/themes/gray.src.js +1 -1
- package/themes/grid-light.js +1 -1
- package/themes/grid-light.js.map +1 -1
- package/themes/grid-light.src.js +5 -3
- package/themes/grid.js +1 -1
- package/themes/grid.js.map +1 -1
- package/themes/grid.src.js +5 -3
- package/themes/high-contrast-dark.js +1 -1
- package/themes/high-contrast-dark.src.js +1 -1
- package/themes/high-contrast-light.js +1 -1
- package/themes/high-contrast-light.src.js +1 -1
- package/themes/sand-signika.js +1 -1
- package/themes/sand-signika.src.js +1 -1
- package/themes/skies.js +1 -1
- package/themes/skies.src.js +1 -1
- package/themes/sunset.js +1 -1
- package/themes/sunset.src.js +1 -1
- package/es-modules/Series/ColorMapComposition.js +0 -109
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Highcharts JS v9.3.
|
|
2
|
+
* @license Highcharts JS v9.3.2 (2021-11-29)
|
|
3
3
|
*
|
|
4
4
|
* Sonification module
|
|
5
5
|
*
|
|
@@ -216,7 +216,6 @@
|
|
|
216
216
|
* @param {Highcharts.Dictionary<(Function|undefined)>} signals
|
|
217
217
|
* An object that contains a mapping from the signal name to the callbacks.
|
|
218
218
|
* Only supported events are considered.
|
|
219
|
-
* @return {void}
|
|
220
219
|
*/
|
|
221
220
|
SignalHandler.prototype.registerSignalCallbacks = function (signals) {
|
|
222
221
|
var signalHandler = this;
|
|
@@ -231,9 +230,9 @@
|
|
|
231
230
|
/**
|
|
232
231
|
* Clear signal callbacks, optionally by name.
|
|
233
232
|
* @private
|
|
234
|
-
* @param {Array<string>} [signalNames]
|
|
235
|
-
* not supplied, all signal callbacks
|
|
236
|
-
*
|
|
233
|
+
* @param {Array<string>} [signalNames]
|
|
234
|
+
* A list of signal names to clear. If not supplied, all signal callbacks
|
|
235
|
+
* are removed.
|
|
237
236
|
*/
|
|
238
237
|
SignalHandler.prototype.clearSignalCallbacks = function (signalNames) {
|
|
239
238
|
var signalHandler = this;
|
|
@@ -252,11 +251,10 @@
|
|
|
252
251
|
* Emit a signal. Does nothing if the signal does not exist, or has no
|
|
253
252
|
* registered callbacks.
|
|
254
253
|
* @private
|
|
255
|
-
* @param {string}
|
|
254
|
+
* @param {string} signalName
|
|
256
255
|
* Name of signal to emit.
|
|
257
256
|
* @param {*} [data]
|
|
258
257
|
* Data to pass to the callback.
|
|
259
|
-
* @return {*}
|
|
260
258
|
*/
|
|
261
259
|
SignalHandler.prototype.emitSignal = function (signalName, data) {
|
|
262
260
|
var retval;
|
|
@@ -327,9 +325,12 @@
|
|
|
327
325
|
/**
|
|
328
326
|
* Calculate the extreme values in a chart for a data prop.
|
|
329
327
|
* @private
|
|
330
|
-
* @param {Highcharts.Chart} chart
|
|
331
|
-
*
|
|
332
|
-
* @
|
|
328
|
+
* @param {Highcharts.Chart} chart
|
|
329
|
+
* The chart
|
|
330
|
+
* @param {string} prop
|
|
331
|
+
* The data prop to find extremes for
|
|
332
|
+
* @return {Highcharts.RangeObject}
|
|
333
|
+
* Object with min and max properties
|
|
333
334
|
*/
|
|
334
335
|
calculateDataExtremes: function (chart, prop) {
|
|
335
336
|
return chart.series.reduce(function (extremes, series) {
|
|
@@ -355,7 +356,7 @@
|
|
|
355
356
|
* The relative data value to translate.
|
|
356
357
|
* @param {Highcharts.RangeObject} DataExtremesObject
|
|
357
358
|
* The possible extremes for this value.
|
|
358
|
-
* @param {
|
|
359
|
+
* @param {Object} limits
|
|
359
360
|
* Limits for the virtual axis.
|
|
360
361
|
* @param {boolean} [invert]
|
|
361
362
|
* Invert the virtual axis.
|
|
@@ -414,9 +415,10 @@
|
|
|
414
415
|
Object.keys(instrumentDefinition.instrumentMapping || {}).forEach(function (instrumentParameter) {
|
|
415
416
|
var value = instrumentDefinition.instrumentMapping[instrumentParameter];
|
|
416
417
|
if (typeof value === 'string' && !newExtremes[value]) {
|
|
417
|
-
// This instrument parameter is mapped to a data prop.
|
|
418
|
-
//
|
|
419
|
-
newExtremes[value] = SonificationUtilities
|
|
418
|
+
// This instrument parameter is mapped to a data prop. If we
|
|
419
|
+
// don't have predefined data extremes, find them.
|
|
420
|
+
newExtremes[value] = SonificationUtilities
|
|
421
|
+
.calculateDataExtremes(chart, value);
|
|
420
422
|
}
|
|
421
423
|
});
|
|
422
424
|
return newExtremes;
|
|
@@ -537,7 +539,7 @@
|
|
|
537
539
|
* Utility functions.
|
|
538
540
|
* @name Highcharts.SonificationObject#utilities
|
|
539
541
|
* @private
|
|
540
|
-
* @type {
|
|
542
|
+
* @type {Object}
|
|
541
543
|
*/ /**
|
|
542
544
|
* The Instrument class.
|
|
543
545
|
* @name Highcharts.SonificationObject#Instrument
|
|
@@ -710,7 +712,6 @@
|
|
|
710
712
|
* @private
|
|
711
713
|
* @param {Highcharts.OscillatorOptionsObject} oscillatorOptions
|
|
712
714
|
* The oscillator options passed to Highcharts.Instrument#init.
|
|
713
|
-
* @return {void}
|
|
714
715
|
*/
|
|
715
716
|
Instrument.prototype.initOscillator = function (options) {
|
|
716
717
|
var ctx = Instrument.audioContext;
|
|
@@ -724,7 +725,6 @@
|
|
|
724
725
|
* @private
|
|
725
726
|
* @param {number} panValue
|
|
726
727
|
* The pan position to set for the instrument.
|
|
727
|
-
* @return {void}
|
|
728
728
|
*/
|
|
729
729
|
Instrument.prototype.setPan = function (panValue) {
|
|
730
730
|
if (this.panNode) {
|
|
@@ -740,7 +740,6 @@
|
|
|
740
740
|
* The gain level to set for the instrument.
|
|
741
741
|
* @param {number} [rampTime=0]
|
|
742
742
|
* Gradually change the gain level, time given in milliseconds.
|
|
743
|
-
* @return {void}
|
|
744
743
|
*/
|
|
745
744
|
Instrument.prototype.setGain = function (gainValue, rampTime) {
|
|
746
745
|
var gainNode = this.gainNode;
|
|
@@ -764,7 +763,6 @@
|
|
|
764
763
|
/**
|
|
765
764
|
* Cancel ongoing gain ramps.
|
|
766
765
|
* @private
|
|
767
|
-
* @return {void}
|
|
768
766
|
*/
|
|
769
767
|
Instrument.prototype.cancelGainRamp = function () {
|
|
770
768
|
if (this.gainNode) {
|
|
@@ -775,7 +773,6 @@
|
|
|
775
773
|
* Set the master volume multiplier of the instrument after creation.
|
|
776
774
|
* @param {number} volumeMultiplier
|
|
777
775
|
* The gain level to set for the instrument.
|
|
778
|
-
* @return {void}
|
|
779
776
|
*/
|
|
780
777
|
Instrument.prototype.setMasterVolume = function (volumeMultiplier) {
|
|
781
778
|
this.masterVolume = volumeMultiplier || 0;
|
|
@@ -783,10 +780,14 @@
|
|
|
783
780
|
/**
|
|
784
781
|
* Get the closest valid frequency for this instrument.
|
|
785
782
|
* @private
|
|
786
|
-
* @param {number} frequency
|
|
787
|
-
*
|
|
788
|
-
* @param {number} [
|
|
789
|
-
*
|
|
783
|
+
* @param {number} frequency
|
|
784
|
+
* The target frequency.
|
|
785
|
+
* @param {number} [min]
|
|
786
|
+
* Minimum frequency to return.
|
|
787
|
+
* @param {number} [max]
|
|
788
|
+
* Maximum frequency to return.
|
|
789
|
+
* @return {number}
|
|
790
|
+
* The closest valid frequency to the input frequency.
|
|
790
791
|
*/
|
|
791
792
|
Instrument.prototype.getValidFrequency = function (frequency, min, max) {
|
|
792
793
|
var validFrequencies = this.options.allowedFrequencies,
|
|
@@ -807,7 +808,6 @@
|
|
|
807
808
|
/**
|
|
808
809
|
* Clear existing play callback timers.
|
|
809
810
|
* @private
|
|
810
|
-
* @return {void}
|
|
811
811
|
*/
|
|
812
812
|
Instrument.prototype.clearPlayCallbackTimers = function () {
|
|
813
813
|
this.playCallbackTimers.forEach(function (timer) {
|
|
@@ -822,7 +822,6 @@
|
|
|
822
822
|
* The frequency to set.
|
|
823
823
|
* @param {Highcharts.Dictionary<number>} [frequencyLimits]
|
|
824
824
|
* Object with maxFrequency and minFrequency
|
|
825
|
-
* @return {void}
|
|
826
825
|
*/
|
|
827
826
|
Instrument.prototype.setFrequency = function (frequency, frequencyLimits) {
|
|
828
827
|
var limits = frequencyLimits || {},
|
|
@@ -836,7 +835,8 @@
|
|
|
836
835
|
/**
|
|
837
836
|
* Play oscillator instrument.
|
|
838
837
|
* @private
|
|
839
|
-
* @param {number} frequency
|
|
838
|
+
* @param {number} frequency
|
|
839
|
+
* The frequency to play.
|
|
840
840
|
*/
|
|
841
841
|
Instrument.prototype.oscillatorPlay = function (frequency) {
|
|
842
842
|
if (!this.oscillatorStarted) {
|
|
@@ -873,7 +873,6 @@
|
|
|
873
873
|
* @param {Highcharts.InstrumentPlayOptionsObject} options
|
|
874
874
|
* Options for the playback of the instrument.
|
|
875
875
|
*
|
|
876
|
-
* @return {void}
|
|
877
876
|
*/
|
|
878
877
|
Instrument.prototype.play = function (options) {
|
|
879
878
|
var instrument = this,
|
|
@@ -890,7 +889,8 @@
|
|
|
890
889
|
if (typeof value === 'function') {
|
|
891
890
|
var timer_1 = setInterval(function () {
|
|
892
891
|
currentDurationIx++;
|
|
893
|
-
var curTime = (currentDurationIx *
|
|
892
|
+
var curTime = (currentDurationIx *
|
|
893
|
+
callbackInterval / target);
|
|
894
894
|
if (curTime >= 1) {
|
|
895
895
|
instrument[setter](value(1), setterData);
|
|
896
896
|
clearInterval(timer_1);
|
|
@@ -995,7 +995,6 @@
|
|
|
995
995
|
* @param {*} [callbackData]
|
|
996
996
|
* Data to send to the onEnd callback functions.
|
|
997
997
|
*
|
|
998
|
-
* @return {void}
|
|
999
998
|
*/
|
|
1000
999
|
Instrument.prototype.stop = function (immediately, onStopped, callbackData) {
|
|
1001
1000
|
var instr = this,
|
|
@@ -1477,7 +1476,6 @@
|
|
|
1477
1476
|
* @param {Function} [onEnd]
|
|
1478
1477
|
* Callback to call when play finished. Does not override other onEnd
|
|
1479
1478
|
* callbacks.
|
|
1480
|
-
* @return {void}
|
|
1481
1479
|
*/
|
|
1482
1480
|
Timeline.prototype.play = function (onEnd) {
|
|
1483
1481
|
this.pause();
|
|
@@ -1491,7 +1489,6 @@
|
|
|
1491
1489
|
* @param {Function} onEnd
|
|
1492
1490
|
* Callback to call when play finished. Does not override other onEnd
|
|
1493
1491
|
* callbacks.
|
|
1494
|
-
* @return {void}
|
|
1495
1492
|
*/
|
|
1496
1493
|
Timeline.prototype.rewind = function (onEnd) {
|
|
1497
1494
|
this.pause();
|
|
@@ -1504,7 +1501,6 @@
|
|
|
1504
1501
|
* @private
|
|
1505
1502
|
* @param {number} direction
|
|
1506
1503
|
* Direction to play in. 1 for forwards, -1 for backwards.
|
|
1507
|
-
* @return {void}
|
|
1508
1504
|
*/
|
|
1509
1505
|
Timeline.prototype.playPaths = function (direction) {
|
|
1510
1506
|
var timeline = this,
|
|
@@ -1547,7 +1543,8 @@
|
|
|
1547
1543
|
timeline.cursor += direction;
|
|
1548
1544
|
// Reset upcoming path cursors before playing
|
|
1549
1545
|
splat(nextPaths).forEach(function (nextPath) {
|
|
1550
|
-
nextPath[direction > 0 ?
|
|
1546
|
+
nextPath[direction > 0 ?
|
|
1547
|
+
'resetCursor' : 'resetCursorEnd']();
|
|
1551
1548
|
});
|
|
1552
1549
|
// Play next
|
|
1553
1550
|
timeline.playPaths(direction);
|
|
@@ -1580,7 +1577,6 @@
|
|
|
1580
1577
|
* @param {boolean} [fadeOut=false]
|
|
1581
1578
|
* Whether or not to fade out as we stop. If false, the timeline is
|
|
1582
1579
|
* cancelled synchronously.
|
|
1583
|
-
* @return {void}
|
|
1584
1580
|
*/
|
|
1585
1581
|
Timeline.prototype.pause = function (fadeOut) {
|
|
1586
1582
|
var timeline = this;
|
|
@@ -1595,7 +1591,6 @@
|
|
|
1595
1591
|
/**
|
|
1596
1592
|
* Reset the cursor to the beginning of the timeline.
|
|
1597
1593
|
* @private
|
|
1598
|
-
* @return {void}
|
|
1599
1594
|
*/
|
|
1600
1595
|
Timeline.prototype.resetCursor = function () {
|
|
1601
1596
|
this.paths.forEach(function (paths) {
|
|
@@ -1608,7 +1603,6 @@
|
|
|
1608
1603
|
/**
|
|
1609
1604
|
* Reset the cursor to the end of the timeline.
|
|
1610
1605
|
* @private
|
|
1611
|
-
* @return {void}
|
|
1612
1606
|
*/
|
|
1613
1607
|
Timeline.prototype.resetCursorEnd = function () {
|
|
1614
1608
|
this.paths.forEach(function (paths) {
|
|
@@ -1787,7 +1781,6 @@
|
|
|
1787
1781
|
* @param {Highcharts.TimelineEventOptionsObject} [options]
|
|
1788
1782
|
* Options to pass in to the eventObject when playing it.
|
|
1789
1783
|
*
|
|
1790
|
-
* @return {void}
|
|
1791
1784
|
*/
|
|
1792
1785
|
TimelineEvent.prototype.play = function (options) {
|
|
1793
1786
|
var eventObject = this.options.eventObject,
|
|
@@ -1963,7 +1956,9 @@
|
|
|
1963
1956
|
// Get map from event ID to index
|
|
1964
1957
|
this.updateEventIdMap();
|
|
1965
1958
|
// Signal events to fire
|
|
1966
|
-
this.signalHandler = new SU.SignalHandler([
|
|
1959
|
+
this.signalHandler = new SU.SignalHandler([
|
|
1960
|
+
'playOnEnd', 'masterOnEnd', 'onStart', 'onEventStart', 'onEventEnd'
|
|
1961
|
+
]);
|
|
1967
1962
|
this.signalHandler.registerSignalCallbacks(merge(options, { masterOnEnd: options.onEnd }));
|
|
1968
1963
|
};
|
|
1969
1964
|
/**
|
|
@@ -1989,8 +1984,8 @@
|
|
|
1989
1984
|
* Add events to the path. Should not be done while the path is playing.
|
|
1990
1985
|
* The new events are inserted according to their time property.
|
|
1991
1986
|
* @private
|
|
1992
|
-
* @param {Array<Highcharts.TimelineEvent>} newEvents
|
|
1993
|
-
* to add.
|
|
1987
|
+
* @param {Array<Highcharts.TimelineEvent>} newEvents
|
|
1988
|
+
* The new timeline events to add.
|
|
1994
1989
|
*/
|
|
1995
1990
|
TimelinePath.prototype.addTimelineEvents = function (newEvents) {
|
|
1996
1991
|
this.events = this.events.concat(newEvents);
|
|
@@ -2027,7 +2022,6 @@
|
|
|
2027
2022
|
* @param {Function} onEnd
|
|
2028
2023
|
* Callback to call when play finished. Does not override other onEnd
|
|
2029
2024
|
* callbacks.
|
|
2030
|
-
* @return {void}
|
|
2031
2025
|
*/
|
|
2032
2026
|
TimelinePath.prototype.play = function (onEnd) {
|
|
2033
2027
|
this.pause();
|
|
@@ -2042,7 +2036,6 @@
|
|
|
2042
2036
|
* @param {Function} onEnd
|
|
2043
2037
|
* Callback to call when play finished. Does not override other onEnd
|
|
2044
2038
|
* callbacks.
|
|
2045
|
-
* @return {void}
|
|
2046
2039
|
*/
|
|
2047
2040
|
TimelinePath.prototype.rewind = function (onEnd) {
|
|
2048
2041
|
this.pause();
|
|
@@ -2068,8 +2061,9 @@
|
|
|
2068
2061
|
/**
|
|
2069
2062
|
* Cancel current playing. Leaves the cursor intact.
|
|
2070
2063
|
* @private
|
|
2071
|
-
* @param {boolean} [fadeOut=false]
|
|
2072
|
-
* false, the path is cancelled
|
|
2064
|
+
* @param {boolean} [fadeOut=false]
|
|
2065
|
+
* Whether or not to fade out as we stop. If false, the path is cancelled
|
|
2066
|
+
* synchronously.
|
|
2073
2067
|
*/
|
|
2074
2068
|
TimelinePath.prototype.pause = function (fadeOut) {
|
|
2075
2069
|
var timelinePath = this;
|
|
@@ -2089,7 +2083,6 @@
|
|
|
2089
2083
|
* @private
|
|
2090
2084
|
* @param {number} direction
|
|
2091
2085
|
* The direction to play, 1 for forwards and -1 for backwards.
|
|
2092
|
-
* @return {void}
|
|
2093
2086
|
*/
|
|
2094
2087
|
TimelinePath.prototype.playEvents = function (direction) {
|
|
2095
2088
|
var timelinePath = this,
|
|
@@ -2293,10 +2286,11 @@
|
|
|
2293
2286
|
*/
|
|
2294
2287
|
function buildChartSonifySeriesOptions(series, dataExtremes, chartSonifyOptions) {
|
|
2295
2288
|
var additionalSeriesOptions = chartSonifyOptions.seriesOptions || {},
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2289
|
+
sonification = series.chart.options.sonification,
|
|
2290
|
+
pointPlayTime = (sonification &&
|
|
2291
|
+
sonification.defaultInstrumentOptions &&
|
|
2292
|
+
sonification.defaultInstrumentOptions.mapping &&
|
|
2293
|
+
sonification.defaultInstrumentOptions.mapping.pointPlayTime ||
|
|
2300
2294
|
'x'),
|
|
2301
2295
|
configOptions = chartOptionsToSonifySeriesOptions(series);
|
|
2302
2296
|
return merge(
|
|
@@ -2311,8 +2305,8 @@
|
|
|
2311
2305
|
// calculating twice.
|
|
2312
2306
|
timeExtremes: getTimeExtremes(series, pointPlayTime),
|
|
2313
2307
|
// Some options we just pass on
|
|
2314
|
-
instruments: chartSonifyOptions.instruments || configOptions.instruments,
|
|
2315
|
-
onStart: chartSonifyOptions.onSeriesStart || configOptions.onStart,
|
|
2308
|
+
instruments: (chartSonifyOptions.instruments || configOptions.instruments),
|
|
2309
|
+
onStart: (chartSonifyOptions.onSeriesStart || configOptions.onStart),
|
|
2316
2310
|
onEnd: chartSonifyOptions.onSeriesEnd || configOptions.onEnd,
|
|
2317
2311
|
earcons: chartSonifyOptions.earcons || configOptions.earcons,
|
|
2318
2312
|
masterVolume: pick(chartSonifyOptions.masterVolume, configOptions.masterVolume)
|
|
@@ -2356,9 +2350,11 @@
|
|
|
2356
2350
|
pointToTime = function (point) {
|
|
2357
2351
|
return virtualAxisTranslate(getPointTimeValue(point,
|
|
2358
2352
|
options.pointPlayTime),
|
|
2359
|
-
timeExtremes, {
|
|
2360
|
-
|
|
2361
|
-
|
|
2353
|
+
timeExtremes, {
|
|
2354
|
+
min: 0,
|
|
2355
|
+
max: Math.max(options.duration - finalNoteDuration,
|
|
2356
|
+
minimumSeriesDurationMs)
|
|
2357
|
+
});
|
|
2362
2358
|
}, masterVolume = pick(options.masterVolume, 1),
|
|
2363
2359
|
// Make copies of the instruments used for this series, to allow
|
|
2364
2360
|
// multiple series with the same instrument to play together
|
|
@@ -2419,8 +2415,9 @@
|
|
|
2419
2415
|
}
|
|
2420
2416
|
},
|
|
2421
2417
|
onEventEnd: function (eventData) {
|
|
2422
|
-
var eventObject = eventData.event &&
|
|
2423
|
-
eventData.event.options
|
|
2418
|
+
var eventObject = (eventData.event &&
|
|
2419
|
+
eventData.event.options &&
|
|
2420
|
+
eventData.event.options.eventObject);
|
|
2424
2421
|
if (eventObject instanceof Point && options.onPointEnd) {
|
|
2425
2422
|
options.onPointEnd(eventData.event, eventObject);
|
|
2426
2423
|
}
|
|
@@ -2438,14 +2435,20 @@
|
|
|
2438
2435
|
* Utility function to translate between options set in chart configuration
|
|
2439
2436
|
* and a SonifySeriesOptionsObject.
|
|
2440
2437
|
* @private
|
|
2441
|
-
* @param {Highcharts.Series} series
|
|
2442
|
-
*
|
|
2438
|
+
* @param {Highcharts.Series} series
|
|
2439
|
+
* The series to get options for.
|
|
2440
|
+
* @return {Highcharts.SonifySeriesOptionsObject}
|
|
2441
|
+
* Options for chart/series.sonify()
|
|
2443
2442
|
*/
|
|
2444
2443
|
function chartOptionsToSonifySeriesOptions(series) {
|
|
2445
|
-
var seriesOpts = series.options.sonification ||
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2444
|
+
var seriesOpts = series.options.sonification ||
|
|
2445
|
+
{},
|
|
2446
|
+
chartOpts = series.chart.options.sonification ||
|
|
2447
|
+
{},
|
|
2448
|
+
chartEvents = chartOpts.events ||
|
|
2449
|
+
{},
|
|
2450
|
+
seriesEvents = seriesOpts.events ||
|
|
2451
|
+
{};
|
|
2449
2452
|
return {
|
|
2450
2453
|
onEnd: seriesEvents.onSeriesEnd || chartEvents.onSeriesEnd,
|
|
2451
2454
|
onStart: seriesEvents.onSeriesStart || chartEvents.onSeriesStart,
|
|
@@ -2455,6 +2458,7 @@
|
|
|
2455
2458
|
chartOpts.defaultInstrumentOptions.mapping &&
|
|
2456
2459
|
chartOpts.defaultInstrumentOptions.mapping.pointPlayTime),
|
|
2457
2460
|
masterVolume: chartOpts.masterVolume,
|
|
2461
|
+
// Deals with chart-level defaults
|
|
2458
2462
|
instruments: getSeriesInstrumentOptions(series),
|
|
2459
2463
|
earcons: seriesOpts.earcons || chartOpts.earcons
|
|
2460
2464
|
};
|
|
@@ -2535,10 +2539,12 @@
|
|
|
2535
2539
|
}
|
|
2536
2540
|
/**
|
|
2537
2541
|
* @private
|
|
2538
|
-
* @param {Highcharts.Series} series
|
|
2542
|
+
* @param {Highcharts.Series} series
|
|
2543
|
+
* The series to get options for.
|
|
2539
2544
|
* @param {Highcharts.SonifySeriesOptionsObject} options
|
|
2540
|
-
*
|
|
2541
|
-
* @
|
|
2545
|
+
* Options to merge with user options on series/chart and default options.
|
|
2546
|
+
* @return {Array<Highcharts.PointInstrumentObject>}
|
|
2547
|
+
* The merged options.
|
|
2542
2548
|
*/
|
|
2543
2549
|
function getSeriesInstrumentOptions(series, options) {
|
|
2544
2550
|
if (options && options.instruments) {
|
|
@@ -2580,10 +2586,12 @@
|
|
|
2580
2586
|
}
|
|
2581
2587
|
/**
|
|
2582
2588
|
* @private
|
|
2583
|
-
* @param {Highcharts.Series} series
|
|
2589
|
+
* @param {Highcharts.Series} series
|
|
2590
|
+
* The series to get options for.
|
|
2584
2591
|
* @param {Highcharts.SonifySeriesOptionsObject} options
|
|
2585
|
-
*
|
|
2586
|
-
* @
|
|
2592
|
+
* Options to merge with user options on series/chart and default options.
|
|
2593
|
+
* @return {Highcharts.SonifySeriesOptionsObject}
|
|
2594
|
+
* The merged options.
|
|
2587
2595
|
*/
|
|
2588
2596
|
function getSeriesSonifyOptions(series, options) {
|
|
2589
2597
|
var chartOpts = series.chart.options.sonification,
|
|
@@ -2715,17 +2723,18 @@
|
|
|
2715
2723
|
* Utility function to normalize the ordering of timeline paths when sonifying
|
|
2716
2724
|
* a chart.
|
|
2717
2725
|
* @private
|
|
2718
|
-
* @param {string|Array<string|Highcharts.Earcon|Array<string|Highcharts.Earcon>>} orderOptions
|
|
2726
|
+
* @param {string|Array<string|Highcharts.Earcon|Array<string|Highcharts.Earcon>>} orderOptions
|
|
2719
2727
|
* Order options for the sonification.
|
|
2720
|
-
* @param {Highcharts.Chart} chart
|
|
2728
|
+
* @param {Highcharts.Chart} chart
|
|
2729
|
+
* The chart we are sonifying.
|
|
2721
2730
|
* @param {Function} seriesOptionsCallback
|
|
2722
2731
|
* A function that takes a series as argument, and returns the series options
|
|
2723
2732
|
* for that series to be used with buildTimelinePathFromSeries.
|
|
2724
|
-
* @return {Array<object|Array<object|Highcharts.TimelinePath>>}
|
|
2725
|
-
* sequential, we return an array of objects to create series paths
|
|
2726
|
-
* order is simultaneous we return an array of an array with the same.
|
|
2727
|
-
* is a custom order, we return an array of arrays of either objects
|
|
2728
|
-
* series) or TimelinePaths (for earcons and delays).
|
|
2733
|
+
* @return {Array<object|Array<object|Highcharts.TimelinePath>>}
|
|
2734
|
+
* If order is sequential, we return an array of objects to create series paths
|
|
2735
|
+
* from. If order is simultaneous we return an array of an array with the same.
|
|
2736
|
+
* If there is a custom order, we return an array of arrays of either objects
|
|
2737
|
+
* (for series) or TimelinePaths (for earcons and delays).
|
|
2729
2738
|
*/
|
|
2730
2739
|
function buildPathOrder(orderOptions, chart, seriesOptionsCallback) {
|
|
2731
2740
|
var order;
|
|
@@ -2829,9 +2838,10 @@
|
|
|
2829
2838
|
/**
|
|
2830
2839
|
* Utility function to find the total amout of wait time in the TimelinePaths.
|
|
2831
2840
|
* @private
|
|
2832
|
-
* @param {Array<object|Array<object|TimelinePath>>} order
|
|
2833
|
-
* TimelinePaths/items.
|
|
2834
|
-
* @return {number}
|
|
2841
|
+
* @param {Array<object|Array<object|TimelinePath>>} order
|
|
2842
|
+
* The order of TimelinePaths/items.
|
|
2843
|
+
* @return {number}
|
|
2844
|
+
* The total time in ms spent on wait paths between playing.
|
|
2835
2845
|
*/
|
|
2836
2846
|
function getWaitTime(order) {
|
|
2837
2847
|
return order.reduce(function (waitTime, orderDef) {
|
|
@@ -2845,7 +2855,8 @@
|
|
|
2845
2855
|
* Utility function to ensure simultaneous paths have start/end events at the
|
|
2846
2856
|
* same time, to sync them.
|
|
2847
2857
|
* @private
|
|
2848
|
-
* @param {Array<Highcharts.TimelinePath>} paths
|
|
2858
|
+
* @param {Array<Highcharts.TimelinePath>} paths
|
|
2859
|
+
* The paths to sync.
|
|
2849
2860
|
*/
|
|
2850
2861
|
function syncSimultaneousPaths(paths) {
|
|
2851
2862
|
// Find the extremes for these paths
|
|
@@ -2885,9 +2896,10 @@
|
|
|
2885
2896
|
* Utility function to find the total duration span for all simul path sets
|
|
2886
2897
|
* that include series.
|
|
2887
2898
|
* @private
|
|
2888
|
-
* @param {Array<object|Array<object|Highcharts.TimelinePath>>} order
|
|
2889
|
-
* order of TimelinePaths/items.
|
|
2890
|
-
* @return {number}
|
|
2899
|
+
* @param {Array<object|Array<object|Highcharts.TimelinePath>>} order
|
|
2900
|
+
* The order of TimelinePaths/items.
|
|
2901
|
+
* @return {number}
|
|
2902
|
+
* The total time value span difference for all series.
|
|
2891
2903
|
*/
|
|
2892
2904
|
function getSimulPathDurationTotal(order) {
|
|
2893
2905
|
return order.reduce(function (durationTotal, orderDef) {
|
|
@@ -2903,13 +2915,14 @@
|
|
|
2903
2915
|
/**
|
|
2904
2916
|
* Function to calculate the duration in ms for a series.
|
|
2905
2917
|
* @private
|
|
2906
|
-
* @param {number} seriesValueDuration
|
|
2907
|
-
* difference.
|
|
2908
|
-
* @param {number} totalValueDuration
|
|
2909
|
-
* simultaneous) series in value difference.
|
|
2910
|
-
* @param {number} totalDurationMs
|
|
2911
|
-
* in milliseconds.
|
|
2912
|
-
* @return {number}
|
|
2918
|
+
* @param {number} seriesValueDuration
|
|
2919
|
+
* The duration of the series in value difference.
|
|
2920
|
+
* @param {number} totalValueDuration
|
|
2921
|
+
* The total duration of all (non simultaneous) series in value difference.
|
|
2922
|
+
* @param {number} totalDurationMs
|
|
2923
|
+
* The desired total duration for all series in milliseconds.
|
|
2924
|
+
* @return {number}
|
|
2925
|
+
* The duration for the series in milliseconds.
|
|
2913
2926
|
*/
|
|
2914
2927
|
function getSeriesDurationMs(seriesValueDuration, totalValueDuration, totalDurationMs) {
|
|
2915
2928
|
// A series spanning the whole chart would get the full duration.
|
|
@@ -2919,11 +2932,12 @@
|
|
|
2919
2932
|
* Convert series building objects into paths and return a new list of
|
|
2920
2933
|
* TimelinePaths.
|
|
2921
2934
|
* @private
|
|
2922
|
-
* @param {Array<object|Array<object|Highcharts.TimelinePath>>} order
|
|
2923
|
-
* order list.
|
|
2924
|
-
* @param {number} duration
|
|
2925
|
-
*
|
|
2926
|
-
*
|
|
2935
|
+
* @param {Array<object|Array<object|Highcharts.TimelinePath>>} order
|
|
2936
|
+
* The order list.
|
|
2937
|
+
* @param {number} duration
|
|
2938
|
+
* Total duration to aim for in milliseconds.
|
|
2939
|
+
* @return {Array<Array<Highcharts.TimelinePath>>}
|
|
2940
|
+
* Array of TimelinePath objects to play.
|
|
2927
2941
|
*/
|
|
2928
2942
|
function buildPathsFromOrder(order, duration) {
|
|
2929
2943
|
// Find time used for waits (custom or after series), and subtract it from
|
|
@@ -3527,11 +3541,12 @@
|
|
|
3527
3541
|
} :
|
|
3528
3542
|
value(point, dataExtremes);
|
|
3529
3543
|
}
|
|
3530
|
-
// String, this is a data prop. Potentially with
|
|
3531
|
-
//
|
|
3544
|
+
// String, this is a data prop. Potentially with negative
|
|
3545
|
+
// polarity.
|
|
3532
3546
|
if (typeof value === 'string') {
|
|
3533
3547
|
var hasInvertedPolarity = value.charAt(0) === '-';
|
|
3534
|
-
var dataProp = hasInvertedPolarity ?
|
|
3548
|
+
var dataProp = hasInvertedPolarity ?
|
|
3549
|
+
value.slice(1) : value;
|
|
3535
3550
|
var pointValue = pick(point[dataProp],
|
|
3536
3551
|
point.options[dataProp]);
|
|
3537
3552
|
// Find data extremes if we don't have them
|
|
@@ -3562,7 +3577,7 @@
|
|
|
3562
3577
|
}
|
|
3563
3578
|
// Go through instruments and play them
|
|
3564
3579
|
options.instruments.forEach(function (instrumentDefinition) {
|
|
3565
|
-
var instrument = typeof instrumentDefinition.instrument === 'string' ?
|
|
3580
|
+
var instrument = (typeof instrumentDefinition.instrument === 'string') ?
|
|
3566
3581
|
Instrument.definitions[instrumentDefinition.instrument] :
|
|
3567
3582
|
instrumentDefinition.instrument,
|
|
3568
3583
|
mapping = instrumentDefinition.instrumentMapping || {},
|
|
@@ -3581,7 +3596,8 @@
|
|
|
3581
3596
|
delete chart.sonification.currentlyPlayingPoint;
|
|
3582
3597
|
}
|
|
3583
3598
|
// Remove reference from instruments playing
|
|
3584
|
-
if (point.sonification &&
|
|
3599
|
+
if (point.sonification &&
|
|
3600
|
+
point.sonification.instrumentsPlaying) {
|
|
3585
3601
|
delete point.sonification.instrumentsPlaying[id];
|
|
3586
3602
|
// This was the last instrument?
|
|
3587
3603
|
if (!Object.keys(point.sonification.instrumentsPlaying).length) {
|
|
@@ -3597,7 +3613,10 @@
|
|
|
3597
3613
|
point.sonification.instrumentsPlaying[instrument.id] =
|
|
3598
3614
|
instrument;
|
|
3599
3615
|
instrument.play({
|
|
3600
|
-
frequency: getMappingValue(mapping.frequency, true, {
|
|
3616
|
+
frequency: getMappingValue(mapping.frequency, true, {
|
|
3617
|
+
min: extremes.minFrequency,
|
|
3618
|
+
max: extremes.maxFrequency
|
|
3619
|
+
}),
|
|
3601
3620
|
duration: getMappingValue(mapping.duration, false, { min: extremes.minDuration, max: extremes.maxDuration }),
|
|
3602
3621
|
pan: getMappingValue(mapping.pan, true, { min: extremes.minPan, max: extremes.maxPan }),
|
|
3603
3622
|
volume: getMappingValue(mapping.volume, true, { min: extremes.minVolume, max: extremes.maxVolume }),
|
|
@@ -3622,10 +3641,9 @@
|
|
|
3622
3641
|
* Whether or not to fade out as we stop. If false, the points are
|
|
3623
3642
|
* cancelled synchronously.
|
|
3624
3643
|
*
|
|
3625
|
-
* @return {void}
|
|
3626
3644
|
*/
|
|
3627
3645
|
function pointCancelSonify(fadeOut) {
|
|
3628
|
-
var playing = this.sonification && this.sonification.instrumentsPlaying,
|
|
3646
|
+
var playing = (this.sonification && this.sonification.instrumentsPlaying),
|
|
3629
3647
|
instrIds = playing && Object.keys(playing);
|
|
3630
3648
|
if (instrIds && instrIds.length) {
|
|
3631
3649
|
instrIds.forEach(function (instr) {
|
package/modules/static-scale.js
CHANGED