highcharts 12.2.0 → 12.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bower.json +1 -1
- package/css/annotations/popup.css +86 -45
- package/css/highcharts.css +40 -35
- package/css/stocktools/gui.css +28 -11
- package/es-modules/Accessibility/Components/InfoRegionsComponent.js +3 -3
- package/es-modules/Accessibility/Components/LegendComponent.js +10 -1
- package/es-modules/Accessibility/Components/MenuComponent.js +26 -23
- package/es-modules/Accessibility/Components/NavigatorComponent.js +5 -1
- package/es-modules/Accessibility/Components/SeriesComponent/ForcedMarkers.js +3 -1
- package/es-modules/Accessibility/FocusBorder.js +4 -0
- package/es-modules/Accessibility/HighContrastMode.js +0 -5
- package/es-modules/Accessibility/Options/A11yDefaults.js +12 -0
- package/es-modules/Core/Axis/Axis.js +4 -3
- package/es-modules/Core/Axis/Axis3DComposition.js +0 -3
- package/es-modules/Core/Axis/AxisDefaults.js +5 -8
- package/es-modules/Core/Axis/BrokenAxis.js +114 -90
- package/es-modules/Core/Axis/Color/ColorAxis.js +3 -3
- package/es-modules/Core/Axis/Color/ColorAxisDefaults.js +2 -3
- package/es-modules/Core/Axis/OrdinalAxis.js +19 -12
- package/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBand.js +15 -2
- package/es-modules/Core/Axis/RadialAxis.js +18 -7
- package/es-modules/Core/Axis/ScrollbarAxis.js +19 -17
- package/es-modules/Core/Axis/Stacking/StackingAxis.js +0 -1
- package/es-modules/Core/Axis/Tick.js +1 -1
- package/es-modules/Core/Axis/TreeGrid/TreeGridAxis.js +36 -51
- package/es-modules/Core/Axis/TreeGrid/TreeGridTick.js +39 -17
- package/es-modules/Core/Axis/WaterfallAxis.js +4 -4
- package/es-modules/Core/Chart/Chart.js +41 -34
- package/es-modules/Core/Chart/ChartDefaults.js +16 -2
- package/es-modules/Core/Chart/GanttChart.js +4 -2
- package/es-modules/Core/Chart/StockChart.js +42 -49
- package/es-modules/Core/Color/Color.js +4 -8
- package/es-modules/Core/Defaults.js +16 -7
- package/es-modules/Core/Geometry/CircleUtilities.js +3 -1
- package/es-modules/Core/Globals.js +1 -1
- package/es-modules/Core/HttpUtilities.js +45 -38
- package/es-modules/Core/Legend/Legend.js +8 -7
- package/es-modules/Core/Pointer.js +17 -9
- package/es-modules/Core/Renderer/HTML/AST.js +15 -15
- package/es-modules/Core/Renderer/HTML/HTMLElement.js +8 -3
- package/es-modules/Core/Renderer/SVG/SVGElement.js +2 -2
- package/es-modules/Core/Renderer/SVG/SVGLabel.js +10 -1
- package/es-modules/Core/Renderer/SVG/SVGRenderer.js +10 -7
- package/es-modules/Core/Renderer/SVG/TextBuilder.js +2 -2
- package/es-modules/Core/Series/DataLabel.js +4 -2
- package/es-modules/Core/Series/Point.js +9 -0
- package/es-modules/Core/Series/Series.js +17 -7
- package/es-modules/Core/Series/SeriesDefaults.js +1 -3
- package/es-modules/Core/Series/SeriesRegistry.js +8 -1
- package/es-modules/Core/Templating.js +6 -5
- package/es-modules/Core/Tooltip.js +3 -1
- package/es-modules/Data/Connectors/CSVConnector.js +32 -15
- package/es-modules/Data/Connectors/DataConnector.js +107 -12
- package/es-modules/Data/Connectors/GoogleSheetsConnector.js +29 -17
- package/es-modules/Data/Connectors/HTMLTableConnector.js +3 -3
- package/es-modules/Data/Connectors/JSONConnector.js +37 -17
- package/es-modules/Data/Converters/HTMLTableConverter.js +2 -2
- package/es-modules/Data/Converters/JSONConverter.js +0 -1
- package/es-modules/Data/DataPool.js +15 -4
- package/es-modules/Data/DataTable.js +1 -2
- package/es-modules/Data/Formula/FormulaParser.js +33 -1
- package/es-modules/Data/Formula/FormulaProcessor.js +97 -45
- package/es-modules/Data/Modifiers/DataModifier.js +1 -1
- package/es-modules/Data/Modifiers/FilterModifier.js +168 -0
- package/es-modules/Data/Modifiers/FilterModifierOptions.js +14 -0
- package/es-modules/Data/Modifiers/SortModifier.js +12 -3
- package/es-modules/Extensions/Annotations/Annotation.js +10 -7
- package/es-modules/Extensions/Annotations/AnnotationChart.js +7 -3
- package/es-modules/Extensions/Annotations/AnnotationDefaults.js +38 -12
- package/es-modules/Extensions/Annotations/Controllables/ControllableLabel.js +10 -3
- package/es-modules/Extensions/Annotations/MockPoint.js +6 -3
- package/es-modules/Extensions/Annotations/NavigationBindingsDefaults.js +1 -1
- package/es-modules/Extensions/Annotations/Popup/PopupAnnotations.js +10 -4
- package/es-modules/Extensions/Annotations/Popup/PopupComposition.js +1 -1
- package/es-modules/Extensions/Annotations/Types/BasicAnnotation.js +0 -3
- package/es-modules/Extensions/Annotations/Types/CrookedLine.js +97 -94
- package/es-modules/Extensions/Annotations/Types/ElliottWave.js +43 -36
- package/es-modules/Extensions/Annotations/Types/Fibonacci.js +86 -82
- package/es-modules/Extensions/Annotations/Types/FibonacciTimeZones.js +74 -71
- package/es-modules/Extensions/Annotations/Types/InfinityLine.js +17 -3
- package/es-modules/Extensions/Annotations/Types/Measure.js +229 -226
- package/es-modules/Extensions/Annotations/Types/Pitchfork.js +39 -40
- package/es-modules/Extensions/Annotations/Types/TimeCycles.js +56 -52
- package/es-modules/Extensions/Annotations/Types/Tunnel.js +80 -76
- package/es-modules/Extensions/Annotations/Types/VerticalLine.js +57 -53
- package/es-modules/Extensions/Boost/Boost.js +5 -1
- package/es-modules/Extensions/Boost/BoostSeries.js +53 -21
- package/es-modules/Extensions/Boost/WGLRenderer.js +30 -21
- package/es-modules/Extensions/Boost/WGLShader.js +18 -5
- package/es-modules/Extensions/BoostCanvas.js +0 -5
- package/es-modules/Extensions/BorderRadius.js +6 -2
- package/es-modules/Extensions/Breadcrumbs/Breadcrumbs.js +1 -1
- package/es-modules/Extensions/DownloadURL.js +43 -8
- package/es-modules/Extensions/ExportData/ExportData.js +875 -781
- package/es-modules/Extensions/ExportData/ExportDataDefaults.js +67 -13
- package/es-modules/Extensions/Exporting/Exporting.js +1177 -546
- package/es-modules/Extensions/Exporting/ExportingDefaults.js +52 -36
- package/es-modules/Extensions/Exporting/Fullscreen.js +2 -2
- package/es-modules/Extensions/NonCartesianSeriesZoom/NonCartesianSeriesZoom.js +311 -0
- package/es-modules/Extensions/OfflineExporting/OfflineExporting.js +254 -575
- package/es-modules/Extensions/OfflineExporting/OfflineExportingDefaults.js +9 -38
- package/es-modules/Extensions/Pane/Pane.js +1 -1
- package/es-modules/Extensions/Pane/PaneComposition.js +19 -12
- package/es-modules/Extensions/Pane/PaneDefaults.js +9 -1
- package/es-modules/Extensions/ScrollablePlotArea.js +29 -21
- package/es-modules/Extensions/Sonification/Sonification.js +1 -1
- package/es-modules/Extensions/StaticScale.js +13 -11
- package/es-modules/Extensions/TextPath.js +2 -2
- package/es-modules/Extensions/Themes/Adaptive.js +1009 -0
- package/es-modules/Maps/MapNavigation.js +1 -1
- package/es-modules/Series/Bellcurve/BellcurveSeries.js +16 -9
- package/es-modules/Series/Bubble/BubblePoint.js +2 -2
- package/es-modules/Series/Column/ColumnSeriesDefaults.js +1 -2
- package/es-modules/Series/DataModifyComposition.js +0 -2
- package/es-modules/Series/DragNodesComposition.js +4 -0
- package/es-modules/Series/DrawPointUtilities.js +1 -1
- package/es-modules/Series/Flags/FlagsSeriesDefaults.js +2 -0
- package/es-modules/Series/GraphLayoutComposition.js +2 -1
- package/es-modules/Series/Heatmap/HeatmapSeriesDefaults.js +1 -2
- package/es-modules/Series/Histogram/HistogramSeries.js +19 -17
- package/es-modules/Series/Item/ItemSeries.js +1 -1
- package/es-modules/Series/PackedBubble/PackedBubblePoint.js +5 -0
- package/es-modules/Series/Pie/PieDataLabel.js +2 -2
- package/es-modules/Series/Pie/PieSeries.js +2 -2
- package/es-modules/Series/Pie/PieSeriesDefaults.js +1 -2
- package/es-modules/Series/PolarComposition.js +37 -2
- package/es-modules/Series/SeriesOnPointComposition.js +0 -1
- package/es-modules/Series/SimulationSeriesUtilities.js +7 -0
- package/es-modules/Series/SolidGauge/SolidGaugeSeries.js +7 -2
- package/es-modules/Series/SolidGauge/SolidGaugeSeriesDefaults.js +13 -0
- package/es-modules/Series/Treegraph/TreegraphLayout.js +10 -4
- package/es-modules/Series/Treegraph/TreegraphSeries.js +3 -1
- package/es-modules/Series/Treemap/TreemapSeries.js +4 -4
- package/es-modules/Series/Variwide/VariwideComposition.js +9 -11
- package/es-modules/Series/Variwide/VariwideSeries.js +8 -1
- package/es-modules/Series/Waterfall/WaterfallSeries.js +12 -17
- package/es-modules/Series/Wordcloud/WordcloudSeries.js +87 -10
- package/es-modules/Series/XRange/XRangePoint.js +2 -1
- package/es-modules/Shared/BaseForm.js +6 -3
- package/es-modules/Shared/TimeBase.js +5 -1
- package/es-modules/Stock/Indicators/MACD/MACDIndicator.js +1 -1
- package/es-modules/Stock/Navigator/NavigatorComposition.js +2 -2
- package/es-modules/Stock/Scrollbar/Scrollbar.js +5 -7
- package/es-modules/Stock/StockTools/StockToolbar.js +1 -1
- package/es-modules/Stock/StockTools/StockToolsBindings.js +34 -113
- package/es-modules/masters/highcharts-3d.src.js +3 -1
- package/es-modules/masters/highcharts-gantt.src.js +8 -2
- package/es-modules/masters/highcharts-more.src.js +2 -2
- package/es-modules/masters/highcharts.src.js +2 -2
- package/es-modules/masters/highmaps.src.js +2 -2
- package/es-modules/masters/highstock.src.js +2 -2
- package/es-modules/masters/i18n/fr-FR.src.d.ts +1 -1
- package/es-modules/masters/i18n/fr-FR.src.js +1 -1
- package/es-modules/masters/i18n/nb-NO.src.d.ts +1 -1
- package/es-modules/masters/i18n/nb-NO.src.js +1 -1
- package/es-modules/masters/i18n/zh-CN.src.d.ts +1 -1
- package/es-modules/masters/i18n/zh-CN.src.js +1 -1
- package/es-modules/masters/indicators/acceleration-bands.src.js +1 -1
- package/es-modules/masters/indicators/accumulation-distribution.src.js +1 -1
- package/es-modules/masters/indicators/ao.src.js +1 -1
- package/es-modules/masters/indicators/apo.src.js +1 -1
- package/es-modules/masters/indicators/aroon-oscillator.src.js +1 -1
- package/es-modules/masters/indicators/aroon.src.js +1 -1
- package/es-modules/masters/indicators/atr.src.js +1 -1
- package/es-modules/masters/indicators/bollinger-bands.src.js +1 -1
- package/es-modules/masters/indicators/cci.src.js +1 -1
- package/es-modules/masters/indicators/chaikin.src.js +1 -1
- package/es-modules/masters/indicators/cmf.src.js +1 -1
- package/es-modules/masters/indicators/cmo.src.js +1 -1
- package/es-modules/masters/indicators/dema.src.js +1 -1
- package/es-modules/masters/indicators/disparity-index.src.js +1 -1
- package/es-modules/masters/indicators/dmi.src.js +1 -1
- package/es-modules/masters/indicators/dpo.src.js +1 -1
- package/es-modules/masters/indicators/ema.src.js +0 -3
- package/es-modules/masters/indicators/ichimoku-kinko-hyo.src.js +1 -1
- package/es-modules/masters/indicators/indicators-all.src.js +1 -1
- package/es-modules/masters/indicators/indicators.src.js +1 -1
- package/es-modules/masters/indicators/keltner-channels.src.js +1 -1
- package/es-modules/masters/indicators/klinger.src.js +1 -1
- package/es-modules/masters/indicators/macd.src.js +1 -1
- package/es-modules/masters/indicators/mfi.src.js +1 -1
- package/es-modules/masters/indicators/momentum.src.js +1 -1
- package/es-modules/masters/indicators/natr.src.js +1 -1
- package/es-modules/masters/indicators/obv.src.js +1 -1
- package/es-modules/masters/indicators/pivot-points.src.js +1 -1
- package/es-modules/masters/indicators/ppo.src.js +1 -1
- package/es-modules/masters/indicators/price-channel.src.js +1 -1
- package/es-modules/masters/indicators/price-envelopes.src.js +1 -1
- package/es-modules/masters/indicators/psar.src.js +1 -1
- package/es-modules/masters/indicators/regressions.src.js +1 -1
- package/es-modules/masters/indicators/roc.src.js +1 -1
- package/es-modules/masters/indicators/rsi.src.js +1 -1
- package/es-modules/masters/indicators/slow-stochastic.src.js +1 -1
- package/es-modules/masters/indicators/stochastic.src.js +1 -1
- package/es-modules/masters/indicators/supertrend.src.js +1 -1
- package/es-modules/masters/indicators/tema.src.js +1 -1
- package/es-modules/masters/indicators/trendline.src.js +1 -1
- package/es-modules/masters/indicators/trix.src.js +1 -1
- package/es-modules/masters/indicators/volume-by-price.src.js +1 -1
- package/es-modules/masters/indicators/vwap.src.js +1 -1
- package/es-modules/masters/indicators/williams-r.src.js +1 -1
- package/es-modules/masters/indicators/wma.src.js +1 -1
- package/es-modules/masters/indicators/zigzag.src.js +1 -1
- package/es-modules/masters/modules/accessibility.src.js +1 -1
- package/es-modules/masters/modules/annotations-advanced.src.js +1 -1
- package/es-modules/masters/modules/annotations.src.js +1 -1
- package/es-modules/masters/modules/arc-diagram.src.js +1 -1
- package/es-modules/masters/modules/arrow-symbols.src.js +1 -1
- package/es-modules/masters/modules/boost-canvas.src.js +1 -1
- package/es-modules/masters/modules/boost.src.js +1 -1
- package/es-modules/masters/modules/broken-axis.src.js +1 -1
- package/es-modules/masters/modules/bullet.src.js +1 -1
- package/es-modules/masters/modules/coloraxis.src.js +1 -1
- package/es-modules/masters/modules/current-date-indicator.src.js +1 -1
- package/es-modules/masters/modules/cylinder.src.js +1 -1
- package/es-modules/masters/modules/data-tools.src.d.ts +1 -0
- package/es-modules/masters/modules/data-tools.src.js +2 -1
- package/es-modules/masters/modules/data.src.js +1 -1
- package/es-modules/masters/modules/datagrouping.src.js +1 -1
- package/es-modules/masters/modules/debugger.src.js +1 -1
- package/es-modules/masters/modules/dependency-wheel.src.js +1 -1
- package/es-modules/masters/modules/dotplot.src.js +1 -1
- package/es-modules/masters/modules/drag-panes.src.js +1 -1
- package/es-modules/masters/modules/draggable-points.src.js +1 -1
- package/es-modules/masters/modules/drilldown.src.js +3 -1
- package/es-modules/masters/modules/dumbbell.src.js +1 -1
- package/es-modules/masters/modules/export-data.src.js +3 -3
- package/es-modules/masters/modules/exporting.src.js +5 -1
- package/es-modules/masters/modules/flowmap.src.js +1 -1
- package/es-modules/masters/modules/full-screen.src.js +1 -1
- package/es-modules/masters/modules/funnel.src.js +1 -1
- package/es-modules/masters/modules/funnel3d.src.js +1 -1
- package/es-modules/masters/modules/gantt.src.js +1 -1
- package/es-modules/masters/modules/geoheatmap.src.js +1 -1
- package/es-modules/masters/modules/grid-axis.src.js +1 -1
- package/es-modules/masters/modules/heatmap.src.js +1 -1
- package/es-modules/masters/modules/heikinashi.src.js +1 -1
- package/es-modules/masters/modules/histogram-bellcurve.src.js +1 -1
- package/es-modules/masters/modules/hollowcandlestick.src.js +1 -1
- package/es-modules/masters/modules/item-series.src.js +1 -1
- package/es-modules/masters/modules/lollipop.src.js +1 -1
- package/es-modules/masters/modules/map.src.js +1 -1
- package/es-modules/masters/modules/marker-clusters.src.js +1 -1
- package/es-modules/masters/modules/mouse-wheel-zoom.src.js +1 -1
- package/es-modules/masters/modules/navigator.src.js +1 -1
- package/es-modules/masters/modules/networkgraph.src.js +1 -1
- package/es-modules/masters/modules/no-data-to-display.src.js +1 -1
- package/es-modules/masters/modules/non-cartesian-zoom.src.d.ts +2 -0
- package/es-modules/masters/modules/non-cartesian-zoom.src.js +18 -0
- package/es-modules/masters/modules/offline-exporting.src.js +2 -2
- package/es-modules/masters/modules/organization.src.js +1 -1
- package/es-modules/masters/modules/parallel-coordinates.src.js +1 -1
- package/es-modules/masters/modules/pareto.src.js +1 -1
- package/es-modules/masters/modules/pathfinder.src.js +1 -1
- package/es-modules/masters/modules/pattern-fill.src.js +1 -1
- package/es-modules/masters/modules/pictorial.src.js +1 -1
- package/es-modules/masters/modules/pointandfigure.src.js +1 -1
- package/es-modules/masters/modules/price-indicator.src.js +1 -1
- package/es-modules/masters/modules/pyramid3d.src.js +1 -1
- package/es-modules/masters/modules/renko.src.js +1 -1
- package/es-modules/masters/modules/sankey.src.js +1 -1
- package/es-modules/masters/modules/series-label.src.js +1 -1
- package/es-modules/masters/modules/series-on-point.src.js +1 -1
- package/es-modules/masters/modules/solid-gauge.src.js +1 -1
- package/es-modules/masters/modules/sonification.src.js +1 -1
- package/es-modules/masters/modules/static-scale.src.js +1 -1
- package/es-modules/masters/modules/stock-tools.src.js +1 -1
- package/es-modules/masters/modules/stock.src.js +1 -1
- package/es-modules/masters/modules/streamgraph.src.js +1 -1
- package/es-modules/masters/modules/sunburst.src.js +1 -1
- package/es-modules/masters/modules/textpath.src.js +1 -1
- package/es-modules/masters/modules/tiledwebmap.src.js +1 -1
- package/es-modules/masters/modules/tilemap.src.js +1 -1
- package/es-modules/masters/modules/timeline.src.js +1 -1
- package/es-modules/masters/modules/treegraph.src.js +1 -1
- package/es-modules/masters/modules/treegrid.src.js +1 -1
- package/es-modules/masters/modules/treemap.src.js +1 -1
- package/es-modules/masters/modules/variable-pie.src.js +1 -1
- package/es-modules/masters/modules/variwide.src.js +1 -1
- package/es-modules/masters/modules/vector.src.js +1 -1
- package/es-modules/masters/modules/venn.src.js +1 -1
- package/es-modules/masters/modules/windbarb.src.js +1 -1
- package/es-modules/masters/modules/wordcloud.src.js +1 -1
- package/es-modules/masters/modules/xrange.src.js +1 -1
- package/es-modules/masters/standalone-navigator.src.js +7 -6
- package/es-modules/masters/themes/adaptive.src.d.ts +2 -0
- package/es-modules/masters/themes/adaptive.src.js +15 -0
- package/es-modules/masters/themes/avocado.src.js +1 -1
- package/es-modules/masters/themes/brand-dark.src.js +1 -1
- package/es-modules/masters/themes/brand-light.src.js +1 -1
- package/es-modules/masters/themes/dark-blue.src.js +1 -1
- package/es-modules/masters/themes/dark-green.src.js +1 -1
- package/es-modules/masters/themes/dark-unica.src.js +1 -1
- package/es-modules/masters/themes/gray.src.js +1 -1
- package/es-modules/masters/themes/grid-light.src.js +1 -1
- package/es-modules/masters/themes/grid.src.js +1 -1
- package/es-modules/masters/themes/high-contrast-dark.src.js +1 -1
- package/es-modules/masters/themes/high-contrast-light.src.js +1 -1
- package/es-modules/masters/themes/sand-signika.src.js +1 -1
- package/es-modules/masters/themes/skies.src.js +1 -1
- package/es-modules/masters/themes/sunset.src.js +1 -1
- package/es-modules/tsconfig.tsbuildinfo +1 -1
- package/esm/highcharts-3d.js +11 -1
- package/esm/highcharts-3d.src.js +3 -4
- package/esm/highcharts-gantt.js +14 -1
- package/esm/highcharts-gantt.src.js +8 -2
- package/esm/highcharts-more.js +9 -1
- package/esm/highcharts-more.src.js +516 -57
- package/esm/highcharts.js +9 -2
- package/esm/highcharts.src.js +273 -168
- package/esm/highmaps.js +8 -1
- package/esm/highmaps.src.js +2 -2
- package/esm/highstock.js +8 -1
- package/esm/highstock.src.js +2 -2
- package/esm/i18n/fr-FR.js +13 -1
- package/esm/i18n/fr-FR.src.js +1 -1
- package/esm/i18n/nb-NO.js +13 -1
- package/esm/i18n/nb-NO.src.js +1 -1
- package/esm/i18n/zh-CN.js +13 -1
- package/esm/i18n/zh-CN.src.js +1 -1
- package/esm/indicators/acceleration-bands.js +12 -1
- package/esm/indicators/acceleration-bands.src.js +1 -1
- package/esm/indicators/accumulation-distribution.js +12 -1
- package/esm/indicators/accumulation-distribution.src.js +1 -1
- package/esm/indicators/ao.js +12 -1
- package/esm/indicators/ao.src.js +1 -1
- package/esm/indicators/apo.js +12 -1
- package/esm/indicators/apo.src.js +1 -1
- package/esm/indicators/aroon-oscillator.js +12 -1
- package/esm/indicators/aroon-oscillator.src.js +1 -1
- package/esm/indicators/aroon.js +12 -1
- package/esm/indicators/aroon.src.js +1 -1
- package/esm/indicators/atr.js +12 -1
- package/esm/indicators/atr.src.js +1 -1
- package/esm/indicators/bollinger-bands.js +12 -1
- package/esm/indicators/bollinger-bands.src.js +1 -1
- package/esm/indicators/cci.js +12 -1
- package/esm/indicators/cci.src.js +1 -1
- package/esm/indicators/chaikin.js +12 -1
- package/esm/indicators/chaikin.src.js +1 -1
- package/esm/indicators/cmf.js +11 -1
- package/esm/indicators/cmf.src.js +1 -1
- package/esm/indicators/cmo.js +12 -1
- package/esm/indicators/cmo.src.js +1 -1
- package/esm/indicators/dema.js +12 -1
- package/esm/indicators/dema.src.js +1 -1
- package/esm/indicators/disparity-index.js +12 -1
- package/esm/indicators/disparity-index.src.js +1 -1
- package/esm/indicators/dmi.js +12 -1
- package/esm/indicators/dmi.src.js +1 -1
- package/esm/indicators/dpo.js +12 -1
- package/esm/indicators/dpo.src.js +1 -1
- package/esm/indicators/ema.src.js +0 -3
- package/esm/indicators/ichimoku-kinko-hyo.js +12 -1
- package/esm/indicators/ichimoku-kinko-hyo.src.js +1 -1
- package/esm/indicators/indicators-all.js +12 -1
- package/esm/indicators/indicators-all.src.js +2 -2
- package/esm/indicators/indicators.js +12 -1
- package/esm/indicators/indicators.src.js +1 -1
- package/esm/indicators/keltner-channels.js +12 -1
- package/esm/indicators/keltner-channels.src.js +1 -1
- package/esm/indicators/klinger.js +12 -1
- package/esm/indicators/klinger.src.js +1 -1
- package/esm/indicators/macd.js +12 -1
- package/esm/indicators/macd.src.js +2 -2
- package/esm/indicators/mfi.js +12 -1
- package/esm/indicators/mfi.src.js +1 -1
- package/esm/indicators/momentum.js +12 -1
- package/esm/indicators/momentum.src.js +1 -1
- package/esm/indicators/natr.js +12 -1
- package/esm/indicators/natr.src.js +1 -1
- package/esm/indicators/obv.js +12 -1
- package/esm/indicators/obv.src.js +1 -1
- package/esm/indicators/pivot-points.js +12 -1
- package/esm/indicators/pivot-points.src.js +1 -1
- package/esm/indicators/ppo.js +12 -1
- package/esm/indicators/ppo.src.js +1 -1
- package/esm/indicators/price-channel.js +12 -1
- package/esm/indicators/price-channel.src.js +1 -1
- package/esm/indicators/price-envelopes.js +12 -1
- package/esm/indicators/price-envelopes.src.js +1 -1
- package/esm/indicators/psar.js +12 -1
- package/esm/indicators/psar.src.js +1 -1
- package/esm/indicators/regressions.js +12 -1
- package/esm/indicators/regressions.src.js +1 -1
- package/esm/indicators/roc.js +12 -1
- package/esm/indicators/roc.src.js +1 -1
- package/esm/indicators/rsi.js +12 -1
- package/esm/indicators/rsi.src.js +1 -1
- package/esm/indicators/slow-stochastic.js +12 -1
- package/esm/indicators/slow-stochastic.src.js +1 -1
- package/esm/indicators/stochastic.js +12 -1
- package/esm/indicators/stochastic.src.js +1 -1
- package/esm/indicators/supertrend.js +12 -1
- package/esm/indicators/supertrend.src.js +1 -1
- package/esm/indicators/tema.js +12 -1
- package/esm/indicators/tema.src.js +1 -1
- package/esm/indicators/trendline.js +12 -1
- package/esm/indicators/trendline.src.js +1 -1
- package/esm/indicators/trix.js +12 -1
- package/esm/indicators/trix.src.js +1 -1
- package/esm/indicators/volume-by-price.js +12 -1
- package/esm/indicators/volume-by-price.src.js +1 -1
- package/esm/indicators/vwap.js +12 -1
- package/esm/indicators/vwap.src.js +1 -1
- package/esm/indicators/williams-r.js +12 -1
- package/esm/indicators/williams-r.src.js +1 -1
- package/esm/indicators/wma.js +12 -1
- package/esm/indicators/wma.src.js +1 -1
- package/esm/indicators/zigzag.js +12 -1
- package/esm/indicators/zigzag.src.js +1 -1
- package/esm/modules/accessibility.js +12 -1
- package/esm/modules/accessibility.src.js +92 -63
- package/esm/modules/annotations-advanced.js +11 -1
- package/esm/modules/annotations-advanced.src.js +872 -778
- package/esm/modules/annotations.js +11 -1
- package/esm/modules/annotations.src.js +95 -43
- package/esm/modules/arc-diagram.js +11 -1
- package/esm/modules/arc-diagram.src.js +3 -3
- package/esm/modules/arrow-symbols.js +11 -1
- package/esm/modules/arrow-symbols.src.js +1 -1
- package/esm/modules/boost-canvas.js +12 -1
- package/esm/modules/boost-canvas.src.js +102 -53
- package/esm/modules/boost.js +13 -1
- package/esm/modules/boost.src.js +107 -49
- package/esm/modules/broken-axis.js +9 -1
- package/esm/modules/broken-axis.src.js +115 -91
- package/esm/modules/bullet.js +11 -1
- package/esm/modules/bullet.src.js +1 -1
- package/esm/modules/coloraxis.js +11 -1
- package/esm/modules/coloraxis.src.js +6 -7
- package/esm/modules/current-date-indicator.js +11 -1
- package/esm/modules/current-date-indicator.src.js +1 -1
- package/esm/modules/cylinder.js +12 -1
- package/esm/modules/cylinder.src.js +1 -1
- package/esm/modules/data-tools.js +11 -1
- package/esm/modules/data-tools.src.js +542 -125
- package/esm/modules/data.js +11 -1
- package/esm/modules/data.src.js +46 -39
- package/esm/modules/datagrouping.js +11 -1
- package/esm/modules/datagrouping.src.js +1 -1
- package/esm/modules/debugger.js +11 -1
- package/esm/modules/debugger.src.js +1 -1
- package/esm/modules/dependency-wheel.js +12 -1
- package/esm/modules/dependency-wheel.src.js +3 -3
- package/esm/modules/dotplot.js +11 -1
- package/esm/modules/dotplot.src.js +1 -1
- package/esm/modules/drag-panes.js +13 -1
- package/esm/modules/drag-panes.src.js +1 -1
- package/esm/modules/draggable-points.js +9 -1
- package/esm/modules/draggable-points.src.js +1 -1
- package/esm/modules/drilldown.js +13 -1
- package/esm/modules/drilldown.src.js +4 -2
- package/esm/modules/dumbbell.js +9 -1
- package/esm/modules/dumbbell.src.js +1 -1
- package/esm/modules/export-data.js +12 -1
- package/esm/modules/export-data.src.js +985 -799
- package/esm/modules/exporting.js +11 -1
- package/esm/modules/exporting.src.js +1453 -634
- package/esm/modules/flowmap.js +9 -1
- package/esm/modules/flowmap.src.js +1 -1
- package/esm/modules/full-screen.js +12 -1
- package/esm/modules/full-screen.src.js +3 -3
- package/esm/modules/funnel.js +11 -1
- package/esm/modules/funnel.src.js +7 -3
- package/esm/modules/funnel3d.js +13 -1
- package/esm/modules/funnel3d.src.js +1 -1
- package/esm/modules/gantt.js +11 -1
- package/esm/modules/gantt.src.js +254 -212
- package/esm/modules/geoheatmap.js +9 -1
- package/esm/modules/geoheatmap.src.js +1 -1
- package/esm/modules/grid-axis.js +11 -1
- package/esm/modules/grid-axis.src.js +1 -1
- package/esm/modules/heatmap.js +9 -1
- package/esm/modules/heatmap.src.js +2 -3
- package/esm/modules/heikinashi.js +12 -1
- package/esm/modules/heikinashi.src.js +1 -1
- package/esm/modules/histogram-bellcurve.js +10 -1
- package/esm/modules/histogram-bellcurve.src.js +36 -27
- package/esm/modules/hollowcandlestick.js +12 -1
- package/esm/modules/hollowcandlestick.src.js +1 -1
- package/esm/modules/item-series.js +11 -1
- package/esm/modules/item-series.src.js +3 -5
- package/esm/modules/lollipop.js +9 -1
- package/esm/modules/lollipop.src.js +1 -1
- package/esm/modules/map.js +11 -1
- package/esm/modules/map.src.js +5 -6
- package/esm/modules/marker-clusters.js +11 -1
- package/esm/modules/marker-clusters.src.js +1 -1
- package/esm/modules/mouse-wheel-zoom.js +11 -1
- package/esm/modules/mouse-wheel-zoom.src.js +1 -1
- package/esm/modules/navigator.js +11 -1
- package/esm/modules/navigator.src.js +29 -29
- package/esm/modules/networkgraph.js +11 -1
- package/esm/modules/networkgraph.src.js +16 -4
- package/esm/modules/no-data-to-display.js +12 -1
- package/esm/modules/no-data-to-display.src.js +1 -1
- package/esm/modules/non-cartesian-zoom.d.ts +2 -0
- package/esm/modules/non-cartesian-zoom.js +11 -0
- package/esm/modules/non-cartesian-zoom.src.d.ts +2 -0
- package/esm/modules/non-cartesian-zoom.src.js +374 -0
- package/esm/modules/offline-exporting.js +12 -1
- package/esm/modules/offline-exporting.src.js +339 -3363
- package/esm/modules/organization.js +11 -1
- package/esm/modules/organization.src.js +3 -3
- package/esm/modules/parallel-coordinates.js +11 -1
- package/esm/modules/parallel-coordinates.src.js +1 -1
- package/esm/modules/pareto.js +11 -1
- package/esm/modules/pareto.src.js +1 -1
- package/esm/modules/pathfinder.js +11 -1
- package/esm/modules/pathfinder.src.js +1 -1
- package/esm/modules/pattern-fill.js +12 -1
- package/esm/modules/pattern-fill.src.js +1 -1
- package/esm/modules/pictorial.js +11 -1
- package/esm/modules/pictorial.src.js +1 -1
- package/esm/modules/pointandfigure.js +12 -1
- package/esm/modules/pointandfigure.src.js +1 -1
- package/esm/modules/price-indicator.js +13 -1
- package/esm/modules/price-indicator.src.js +1 -1
- package/esm/modules/pyramid3d.js +14 -1
- package/esm/modules/pyramid3d.src.js +1 -1
- package/esm/modules/renko.js +12 -1
- package/esm/modules/renko.src.js +1 -1
- package/esm/modules/sankey.js +11 -1
- package/esm/modules/sankey.src.js +3 -3
- package/esm/modules/series-label.js +9 -1
- package/esm/modules/series-label.src.js +1 -1
- package/esm/modules/series-on-point.js +12 -1
- package/esm/modules/series-on-point.src.js +1 -9
- package/esm/modules/solid-gauge.js +12 -1
- package/esm/modules/solid-gauge.src.js +27 -5
- package/esm/modules/sonification.js +12 -1
- package/esm/modules/sonification.src.js +45 -10
- package/esm/modules/static-scale.js +11 -1
- package/esm/modules/static-scale.src.js +14 -12
- package/esm/modules/stock-tools.js +13 -1
- package/esm/modules/stock-tools.src.js +37 -116
- package/esm/modules/stock.js +11 -1
- package/esm/modules/stock.src.js +98 -98
- package/esm/modules/streamgraph.js +11 -1
- package/esm/modules/streamgraph.src.js +1 -1
- package/esm/modules/sunburst.js +10 -1
- package/esm/modules/sunburst.src.js +9 -9
- package/esm/modules/textpath.js +9 -1
- package/esm/modules/textpath.src.js +3 -3
- package/esm/modules/tiledwebmap.js +10 -2
- package/esm/modules/tiledwebmap.src.js +1 -1
- package/esm/modules/tilemap.js +12 -1
- package/esm/modules/tilemap.src.js +1 -1
- package/esm/modules/timeline.js +12 -1
- package/esm/modules/timeline.src.js +1 -1
- package/esm/modules/treegraph.js +11 -1
- package/esm/modules/treegraph.src.js +16 -8
- package/esm/modules/treegrid.js +11 -1
- package/esm/modules/treegrid.src.js +190 -159
- package/esm/modules/treemap.js +10 -1
- package/esm/modules/treemap.src.js +7 -7
- package/esm/modules/variable-pie.js +11 -1
- package/esm/modules/variable-pie.src.js +1 -1
- package/esm/modules/variwide.js +11 -1
- package/esm/modules/variwide.src.js +18 -13
- package/esm/modules/vector.js +11 -1
- package/esm/modules/vector.src.js +1 -1
- package/esm/modules/venn.js +10 -1
- package/esm/modules/venn.src.js +5 -3
- package/esm/modules/windbarb.js +11 -1
- package/esm/modules/windbarb.src.js +1 -1
- package/esm/modules/wordcloud.js +10 -1
- package/esm/modules/wordcloud.src.js +89 -12
- package/esm/modules/xrange.js +11 -1
- package/esm/modules/xrange.src.js +3 -2
- package/esm/standalone-navigator.js +11 -2
- package/esm/standalone-navigator.src.js +312 -206
- package/esm/themes/adaptive.d.ts +2 -0
- package/esm/themes/adaptive.js +130 -0
- package/esm/themes/adaptive.src.d.ts +2 -0
- package/esm/themes/adaptive.src.js +1069 -0
- package/esm/themes/avocado.js +9 -1
- package/esm/themes/avocado.src.js +1 -1
- package/esm/themes/brand-dark.js +9 -1
- package/esm/themes/brand-dark.src.js +1 -1
- package/esm/themes/brand-light.js +9 -1
- package/esm/themes/brand-light.src.js +1 -1
- package/esm/themes/dark-blue.js +9 -1
- package/esm/themes/dark-blue.src.js +1 -1
- package/esm/themes/dark-green.js +9 -1
- package/esm/themes/dark-green.src.js +1 -1
- package/esm/themes/dark-unica.js +9 -1
- package/esm/themes/dark-unica.src.js +1 -1
- package/esm/themes/gray.js +9 -1
- package/esm/themes/gray.src.js +1 -1
- package/esm/themes/grid-light.js +9 -1
- package/esm/themes/grid-light.src.js +1 -1
- package/esm/themes/grid.js +9 -1
- package/esm/themes/grid.src.js +1 -1
- package/esm/themes/high-contrast-dark.js +9 -1
- package/esm/themes/high-contrast-dark.src.js +1 -1
- package/esm/themes/high-contrast-light.js +9 -1
- package/esm/themes/high-contrast-light.src.js +1 -1
- package/esm/themes/sand-signika.js +9 -1
- package/esm/themes/sand-signika.src.js +1 -1
- package/esm/themes/skies.js +9 -1
- package/esm/themes/skies.src.js +1 -1
- package/esm/themes/sunset.js +9 -1
- package/esm/themes/sunset.src.js +1 -1
- package/highcharts-3d.d.ts +1 -9
- package/highcharts-3d.js +11 -1
- package/highcharts-3d.src.d.ts +1 -9
- package/highcharts-3d.src.js +3 -4
- package/highcharts-gantt.js +15 -2
- package/highcharts-gantt.src.js +546 -392
- package/highcharts-more.d.ts +10 -9
- package/highcharts-more.js +9 -1
- package/highcharts-more.src.d.ts +10 -9
- package/highcharts-more.src.js +516 -57
- package/highcharts.d.ts +4526 -1522
- package/highcharts.js +9 -2
- package/highcharts.src.d.ts +4526 -1522
- package/highcharts.src.js +273 -168
- package/highmaps.js +9 -2
- package/highmaps.src.js +294 -191
- package/highstock.js +9 -2
- package/highstock.src.js +490 -361
- package/i18n/fr-FR.js +13 -1
- package/i18n/fr-FR.src.js +8 -8
- package/i18n/nb-NO.js +13 -1
- package/i18n/nb-NO.src.js +8 -8
- package/i18n/zh-CN.js +13 -1
- package/i18n/zh-CN.src.js +8 -8
- package/indicators/acceleration-bands.d.ts +1 -9
- package/indicators/acceleration-bands.js +12 -1
- package/indicators/acceleration-bands.src.d.ts +1 -9
- package/indicators/acceleration-bands.src.js +1 -1
- package/indicators/accumulation-distribution.d.ts +1 -9
- package/indicators/accumulation-distribution.js +12 -1
- package/indicators/accumulation-distribution.src.d.ts +1 -9
- package/indicators/accumulation-distribution.src.js +1 -1
- package/indicators/ao.d.ts +1 -9
- package/indicators/ao.js +12 -1
- package/indicators/ao.src.d.ts +1 -9
- package/indicators/ao.src.js +1 -1
- package/indicators/apo.d.ts +1 -9
- package/indicators/apo.js +12 -1
- package/indicators/apo.src.d.ts +1 -9
- package/indicators/apo.src.js +1 -1
- package/indicators/aroon-oscillator.d.ts +1 -9
- package/indicators/aroon-oscillator.js +12 -1
- package/indicators/aroon-oscillator.src.d.ts +1 -9
- package/indicators/aroon-oscillator.src.js +1 -1
- package/indicators/aroon.d.ts +1 -9
- package/indicators/aroon.js +12 -1
- package/indicators/aroon.src.d.ts +1 -9
- package/indicators/aroon.src.js +1 -1
- package/indicators/atr.d.ts +1 -9
- package/indicators/atr.js +12 -1
- package/indicators/atr.src.d.ts +1 -9
- package/indicators/atr.src.js +1 -1
- package/indicators/bollinger-bands.d.ts +1 -9
- package/indicators/bollinger-bands.js +12 -1
- package/indicators/bollinger-bands.src.d.ts +1 -9
- package/indicators/bollinger-bands.src.js +1 -1
- package/indicators/cci.d.ts +1 -9
- package/indicators/cci.js +12 -1
- package/indicators/cci.src.d.ts +1 -9
- package/indicators/cci.src.js +1 -1
- package/indicators/chaikin.d.ts +1 -9
- package/indicators/chaikin.js +12 -1
- package/indicators/chaikin.src.d.ts +1 -9
- package/indicators/chaikin.src.js +1 -1
- package/indicators/cmf.d.ts +1 -9
- package/indicators/cmf.js +11 -1
- package/indicators/cmf.src.d.ts +1 -9
- package/indicators/cmf.src.js +1 -1
- package/indicators/cmo.d.ts +1 -9
- package/indicators/cmo.js +12 -1
- package/indicators/cmo.src.d.ts +1 -9
- package/indicators/cmo.src.js +1 -1
- package/indicators/dema.d.ts +1 -9
- package/indicators/dema.js +12 -1
- package/indicators/dema.src.d.ts +1 -9
- package/indicators/dema.src.js +1 -1
- package/indicators/disparity-index.d.ts +1 -9
- package/indicators/disparity-index.js +12 -1
- package/indicators/disparity-index.src.d.ts +1 -9
- package/indicators/disparity-index.src.js +1 -1
- package/indicators/dmi.d.ts +1 -9
- package/indicators/dmi.js +12 -1
- package/indicators/dmi.src.d.ts +1 -9
- package/indicators/dmi.src.js +1 -1
- package/indicators/dpo.d.ts +1 -9
- package/indicators/dpo.js +12 -1
- package/indicators/dpo.src.d.ts +1 -9
- package/indicators/dpo.src.js +1 -1
- package/indicators/ema.d.ts +1 -9
- package/indicators/ema.src.d.ts +1 -9
- package/indicators/ema.src.js +3 -6
- package/indicators/ichimoku-kinko-hyo.d.ts +1 -9
- package/indicators/ichimoku-kinko-hyo.js +12 -1
- package/indicators/ichimoku-kinko-hyo.src.d.ts +1 -9
- package/indicators/ichimoku-kinko-hyo.src.js +1 -1
- package/indicators/indicators-all.d.ts +1 -9
- package/indicators/indicators-all.js +12 -1
- package/indicators/indicators-all.src.d.ts +1 -9
- package/indicators/indicators-all.src.js +2 -2
- package/indicators/indicators.d.ts +1 -9
- package/indicators/indicators.js +12 -1
- package/indicators/indicators.src.d.ts +1 -9
- package/indicators/indicators.src.js +1 -1
- package/indicators/keltner-channels.d.ts +1 -9
- package/indicators/keltner-channels.js +12 -1
- package/indicators/keltner-channels.src.d.ts +1 -9
- package/indicators/keltner-channels.src.js +1 -1
- package/indicators/klinger.d.ts +1 -9
- package/indicators/klinger.js +12 -1
- package/indicators/klinger.src.d.ts +1 -9
- package/indicators/klinger.src.js +1 -1
- package/indicators/macd.d.ts +1 -9
- package/indicators/macd.js +12 -1
- package/indicators/macd.src.d.ts +1 -9
- package/indicators/macd.src.js +2 -2
- package/indicators/mfi.d.ts +1 -9
- package/indicators/mfi.js +12 -1
- package/indicators/mfi.src.d.ts +1 -9
- package/indicators/mfi.src.js +1 -1
- package/indicators/momentum.d.ts +1 -9
- package/indicators/momentum.js +12 -1
- package/indicators/momentum.src.d.ts +1 -9
- package/indicators/momentum.src.js +1 -1
- package/indicators/natr.d.ts +1 -9
- package/indicators/natr.js +12 -1
- package/indicators/natr.src.d.ts +1 -9
- package/indicators/natr.src.js +1 -1
- package/indicators/obv.d.ts +1 -9
- package/indicators/obv.js +12 -1
- package/indicators/obv.src.d.ts +1 -9
- package/indicators/obv.src.js +1 -1
- package/indicators/pivot-points.d.ts +1 -9
- package/indicators/pivot-points.js +12 -1
- package/indicators/pivot-points.src.d.ts +1 -9
- package/indicators/pivot-points.src.js +1 -1
- package/indicators/ppo.d.ts +1 -9
- package/indicators/ppo.js +12 -1
- package/indicators/ppo.src.d.ts +1 -9
- package/indicators/ppo.src.js +1 -1
- package/indicators/price-channel.d.ts +1 -9
- package/indicators/price-channel.js +12 -1
- package/indicators/price-channel.src.d.ts +1 -9
- package/indicators/price-channel.src.js +1 -1
- package/indicators/price-envelopes.d.ts +1 -9
- package/indicators/price-envelopes.js +12 -1
- package/indicators/price-envelopes.src.d.ts +1 -9
- package/indicators/price-envelopes.src.js +1 -1
- package/indicators/psar.d.ts +1 -9
- package/indicators/psar.js +12 -1
- package/indicators/psar.src.d.ts +1 -9
- package/indicators/psar.src.js +1 -1
- package/indicators/regressions.d.ts +1 -9
- package/indicators/regressions.js +12 -1
- package/indicators/regressions.src.d.ts +1 -9
- package/indicators/regressions.src.js +1 -1
- package/indicators/roc.d.ts +1 -9
- package/indicators/roc.js +12 -1
- package/indicators/roc.src.d.ts +1 -9
- package/indicators/roc.src.js +1 -1
- package/indicators/rsi.d.ts +1 -9
- package/indicators/rsi.js +12 -1
- package/indicators/rsi.src.d.ts +1 -9
- package/indicators/rsi.src.js +1 -1
- package/indicators/slow-stochastic.d.ts +1 -9
- package/indicators/slow-stochastic.js +12 -1
- package/indicators/slow-stochastic.src.d.ts +1 -9
- package/indicators/slow-stochastic.src.js +1 -1
- package/indicators/stochastic.d.ts +1 -9
- package/indicators/stochastic.js +12 -1
- package/indicators/stochastic.src.d.ts +1 -9
- package/indicators/stochastic.src.js +1 -1
- package/indicators/supertrend.d.ts +1 -9
- package/indicators/supertrend.js +12 -1
- package/indicators/supertrend.src.d.ts +1 -9
- package/indicators/supertrend.src.js +1 -1
- package/indicators/tema.d.ts +1 -9
- package/indicators/tema.js +12 -1
- package/indicators/tema.src.d.ts +1 -9
- package/indicators/tema.src.js +1 -1
- package/indicators/trendline.d.ts +1 -9
- package/indicators/trendline.js +12 -1
- package/indicators/trendline.src.d.ts +1 -9
- package/indicators/trendline.src.js +1 -1
- package/indicators/trix.d.ts +1 -9
- package/indicators/trix.js +12 -1
- package/indicators/trix.src.d.ts +1 -9
- package/indicators/trix.src.js +1 -1
- package/indicators/volume-by-price.d.ts +1 -9
- package/indicators/volume-by-price.js +12 -1
- package/indicators/volume-by-price.src.d.ts +1 -9
- package/indicators/volume-by-price.src.js +1 -1
- package/indicators/vwap.d.ts +1 -9
- package/indicators/vwap.js +12 -1
- package/indicators/vwap.src.d.ts +1 -9
- package/indicators/vwap.src.js +1 -1
- package/indicators/williams-r.d.ts +1 -9
- package/indicators/williams-r.js +12 -1
- package/indicators/williams-r.src.d.ts +1 -9
- package/indicators/williams-r.src.js +1 -1
- package/indicators/wma.d.ts +1 -9
- package/indicators/wma.js +12 -1
- package/indicators/wma.src.d.ts +1 -9
- package/indicators/wma.src.js +1 -1
- package/indicators/zigzag.d.ts +1 -9
- package/indicators/zigzag.js +12 -1
- package/indicators/zigzag.src.d.ts +1 -9
- package/indicators/zigzag.src.js +1 -1
- package/modules/accessibility.d.ts +1 -11
- package/modules/accessibility.js +12 -1
- package/modules/accessibility.src.d.ts +1 -11
- package/modules/accessibility.src.js +92 -63
- package/modules/annotations-advanced.d.ts +1 -9
- package/modules/annotations-advanced.js +21 -1
- package/modules/annotations-advanced.src.d.ts +1 -9
- package/modules/annotations-advanced.src.js +888 -794
- package/modules/annotations.d.ts +1 -9
- package/modules/annotations.js +11 -1
- package/modules/annotations.src.d.ts +1 -9
- package/modules/annotations.src.js +95 -43
- package/modules/arc-diagram.d.ts +1 -9
- package/modules/arc-diagram.js +11 -1
- package/modules/arc-diagram.src.d.ts +1 -9
- package/modules/arc-diagram.src.js +3 -3
- package/modules/arrow-symbols.d.ts +1 -9
- package/modules/arrow-symbols.js +11 -1
- package/modules/arrow-symbols.src.d.ts +1 -9
- package/modules/arrow-symbols.src.js +1 -1
- package/modules/boost-canvas.d.ts +1 -9
- package/modules/boost-canvas.js +12 -1
- package/modules/boost-canvas.src.d.ts +1 -9
- package/modules/boost-canvas.src.js +102 -53
- package/modules/boost.d.ts +1 -9
- package/modules/boost.js +13 -1
- package/modules/boost.src.d.ts +1 -9
- package/modules/boost.src.js +107 -49
- package/modules/broken-axis.d.ts +1 -9
- package/modules/broken-axis.js +9 -1
- package/modules/broken-axis.src.d.ts +1 -9
- package/modules/broken-axis.src.js +115 -91
- package/modules/bullet.d.ts +1 -9
- package/modules/bullet.js +11 -1
- package/modules/bullet.src.d.ts +1 -9
- package/modules/bullet.src.js +1 -1
- package/modules/coloraxis.d.ts +1 -9
- package/modules/coloraxis.js +11 -1
- package/modules/coloraxis.src.d.ts +1 -9
- package/modules/coloraxis.src.js +6 -7
- package/modules/current-date-indicator.d.ts +1 -9
- package/modules/current-date-indicator.js +11 -1
- package/modules/current-date-indicator.src.d.ts +1 -9
- package/modules/current-date-indicator.src.js +1 -1
- package/modules/cylinder.d.ts +1 -9
- package/modules/cylinder.js +12 -1
- package/modules/cylinder.src.d.ts +1 -9
- package/modules/cylinder.src.js +1 -1
- package/modules/data-tools.js +11 -1
- package/modules/data-tools.src.js +542 -125
- package/modules/data.d.ts +1 -9
- package/modules/data.js +11 -1
- package/modules/data.src.d.ts +1 -9
- package/modules/data.src.js +46 -39
- package/modules/datagrouping.d.ts +1 -9
- package/modules/datagrouping.js +11 -1
- package/modules/datagrouping.src.d.ts +1 -9
- package/modules/datagrouping.src.js +1 -1
- package/modules/debugger.d.ts +1 -9
- package/modules/debugger.js +11 -1
- package/modules/debugger.src.d.ts +1 -9
- package/modules/debugger.src.js +1 -1
- package/modules/dependency-wheel.d.ts +1 -9
- package/modules/dependency-wheel.js +12 -1
- package/modules/dependency-wheel.src.d.ts +1 -9
- package/modules/dependency-wheel.src.js +3 -3
- package/modules/dotplot.d.ts +1 -9
- package/modules/dotplot.js +11 -1
- package/modules/dotplot.src.d.ts +1 -9
- package/modules/dotplot.src.js +1 -1
- package/modules/drag-panes.d.ts +1 -9
- package/modules/drag-panes.js +13 -1
- package/modules/drag-panes.src.d.ts +1 -9
- package/modules/drag-panes.src.js +1 -1
- package/modules/draggable-points.d.ts +1 -9
- package/modules/draggable-points.js +9 -1
- package/modules/draggable-points.src.d.ts +1 -9
- package/modules/draggable-points.src.js +1 -1
- package/modules/drilldown.d.ts +1 -9
- package/modules/drilldown.js +13 -1
- package/modules/drilldown.src.d.ts +1 -9
- package/modules/drilldown.src.js +4 -2
- package/modules/dumbbell.d.ts +1 -9
- package/modules/dumbbell.js +9 -1
- package/modules/dumbbell.src.d.ts +1 -9
- package/modules/dumbbell.src.js +1 -1
- package/modules/export-data.d.ts +2 -79
- package/modules/export-data.js +12 -1
- package/modules/export-data.src.d.ts +2 -79
- package/modules/export-data.src.js +997 -804
- package/modules/exporting.d.ts +35 -21
- package/modules/exporting.js +11 -1
- package/modules/exporting.src.d.ts +35 -21
- package/modules/exporting.src.js +1452 -628
- package/modules/flowmap.d.ts +1 -9
- package/modules/flowmap.js +9 -1
- package/modules/flowmap.src.d.ts +1 -9
- package/modules/flowmap.src.js +1 -1
- package/modules/full-screen.d.ts +1 -9
- package/modules/full-screen.js +12 -1
- package/modules/full-screen.src.d.ts +1 -9
- package/modules/full-screen.src.js +3 -3
- package/modules/funnel.d.ts +1 -9
- package/modules/funnel.js +11 -1
- package/modules/funnel.src.d.ts +1 -9
- package/modules/funnel.src.js +7 -3
- package/modules/funnel3d.d.ts +1 -9
- package/modules/funnel3d.js +13 -1
- package/modules/funnel3d.src.d.ts +1 -9
- package/modules/funnel3d.src.js +1 -1
- package/modules/gantt.d.ts +1 -9
- package/modules/gantt.js +31 -1
- package/modules/gantt.src.d.ts +1 -9
- package/modules/gantt.src.js +273 -230
- package/modules/geoheatmap.d.ts +1 -9
- package/modules/geoheatmap.js +9 -1
- package/modules/geoheatmap.src.d.ts +1 -9
- package/modules/geoheatmap.src.js +1 -1
- package/modules/grid-axis.d.ts +1 -9
- package/modules/grid-axis.js +11 -1
- package/modules/grid-axis.src.d.ts +1 -9
- package/modules/grid-axis.src.js +1 -1
- package/modules/heatmap.d.ts +1 -9
- package/modules/heatmap.js +19 -1
- package/modules/heatmap.src.d.ts +1 -9
- package/modules/heatmap.src.js +21 -23
- package/modules/heikinashi.d.ts +1 -9
- package/modules/heikinashi.js +12 -1
- package/modules/heikinashi.src.d.ts +1 -9
- package/modules/heikinashi.src.js +1 -1
- package/modules/histogram-bellcurve.d.ts +2 -11
- package/modules/histogram-bellcurve.js +10 -1
- package/modules/histogram-bellcurve.src.d.ts +2 -11
- package/modules/histogram-bellcurve.src.js +36 -27
- package/modules/hollowcandlestick.d.ts +1 -9
- package/modules/hollowcandlestick.js +12 -1
- package/modules/hollowcandlestick.src.d.ts +1 -9
- package/modules/hollowcandlestick.src.js +1 -1
- package/modules/item-series.d.ts +1 -9
- package/modules/item-series.js +11 -1
- package/modules/item-series.src.d.ts +1 -9
- package/modules/item-series.src.js +3 -5
- package/modules/lollipop.d.ts +1 -9
- package/modules/lollipop.js +9 -1
- package/modules/lollipop.src.d.ts +1 -9
- package/modules/lollipop.src.js +1 -1
- package/modules/map.d.ts +1 -9
- package/modules/map.js +21 -1
- package/modules/map.src.d.ts +1 -9
- package/modules/map.src.js +25 -27
- package/modules/marker-clusters.d.ts +1 -9
- package/modules/marker-clusters.js +11 -1
- package/modules/marker-clusters.src.d.ts +1 -9
- package/modules/marker-clusters.src.js +1 -1
- package/modules/mouse-wheel-zoom.d.ts +1 -9
- package/modules/mouse-wheel-zoom.js +11 -1
- package/modules/mouse-wheel-zoom.src.d.ts +1 -9
- package/modules/mouse-wheel-zoom.src.js +1 -1
- package/modules/navigator.d.ts +1 -9
- package/modules/navigator.js +11 -1
- package/modules/navigator.src.d.ts +1 -9
- package/modules/navigator.src.js +29 -29
- package/modules/networkgraph.d.ts +1 -9
- package/modules/networkgraph.js +11 -1
- package/modules/networkgraph.src.d.ts +1 -9
- package/modules/networkgraph.src.js +16 -4
- package/modules/no-data-to-display.d.ts +1 -9
- package/modules/no-data-to-display.js +12 -1
- package/modules/no-data-to-display.src.d.ts +1 -9
- package/modules/no-data-to-display.src.js +1 -1
- package/modules/non-cartesian-zoom.d.ts +9 -0
- package/modules/non-cartesian-zoom.js +11 -0
- package/modules/non-cartesian-zoom.src.d.ts +9 -0
- package/modules/non-cartesian-zoom.src.js +427 -0
- package/modules/offline-exporting.d.ts +2 -90
- package/modules/offline-exporting.js +12 -1
- package/modules/offline-exporting.src.d.ts +2 -90
- package/modules/offline-exporting.src.js +355 -3380
- package/modules/organization.d.ts +1 -9
- package/modules/organization.js +11 -1
- package/modules/organization.src.d.ts +1 -9
- package/modules/organization.src.js +3 -3
- package/modules/parallel-coordinates.d.ts +1 -9
- package/modules/parallel-coordinates.js +11 -1
- package/modules/parallel-coordinates.src.d.ts +1 -9
- package/modules/parallel-coordinates.src.js +1 -1
- package/modules/pareto.d.ts +1 -9
- package/modules/pareto.js +11 -1
- package/modules/pareto.src.d.ts +1 -9
- package/modules/pareto.src.js +1 -1
- package/modules/pathfinder.d.ts +1 -9
- package/modules/pathfinder.js +11 -1
- package/modules/pathfinder.src.d.ts +1 -9
- package/modules/pathfinder.src.js +1 -1
- package/modules/pattern-fill.d.ts +1 -9
- package/modules/pattern-fill.js +12 -1
- package/modules/pattern-fill.src.d.ts +1 -9
- package/modules/pattern-fill.src.js +1 -1
- package/modules/pictorial.d.ts +1 -9
- package/modules/pictorial.js +11 -1
- package/modules/pictorial.src.d.ts +1 -9
- package/modules/pictorial.src.js +1 -1
- package/modules/pointandfigure.d.ts +1 -9
- package/modules/pointandfigure.js +12 -1
- package/modules/pointandfigure.src.d.ts +1 -9
- package/modules/pointandfigure.src.js +1 -1
- package/modules/price-indicator.d.ts +1 -9
- package/modules/price-indicator.js +13 -1
- package/modules/price-indicator.src.d.ts +1 -9
- package/modules/price-indicator.src.js +1 -1
- package/modules/pyramid3d.d.ts +1 -9
- package/modules/pyramid3d.js +14 -1
- package/modules/pyramid3d.src.d.ts +1 -9
- package/modules/pyramid3d.src.js +1 -1
- package/modules/renko.d.ts +1 -9
- package/modules/renko.js +12 -1
- package/modules/renko.src.d.ts +1 -9
- package/modules/renko.src.js +1 -1
- package/modules/sankey.d.ts +1 -9
- package/modules/sankey.js +11 -1
- package/modules/sankey.src.d.ts +1 -9
- package/modules/sankey.src.js +3 -3
- package/modules/series-label.d.ts +1 -9
- package/modules/series-label.js +9 -1
- package/modules/series-label.src.d.ts +1 -9
- package/modules/series-label.src.js +1 -1
- package/modules/series-on-point.d.ts +1 -9
- package/modules/series-on-point.js +12 -1
- package/modules/series-on-point.src.d.ts +1 -9
- package/modules/series-on-point.src.js +6 -16
- package/modules/solid-gauge.d.ts +1 -9
- package/modules/solid-gauge.js +12 -1
- package/modules/solid-gauge.src.d.ts +1 -9
- package/modules/solid-gauge.src.js +27 -5
- package/modules/sonification.d.ts +1 -9
- package/modules/sonification.js +12 -1
- package/modules/sonification.src.d.ts +1 -9
- package/modules/sonification.src.js +45 -10
- package/modules/static-scale.d.ts +1 -9
- package/modules/static-scale.js +11 -1
- package/modules/static-scale.src.d.ts +1 -9
- package/modules/static-scale.src.js +14 -12
- package/modules/stock-tools.d.ts +1 -9
- package/modules/stock-tools.js +13 -1
- package/modules/stock-tools.src.d.ts +1 -9
- package/modules/stock-tools.src.js +37 -116
- package/modules/stock.d.ts +1 -9
- package/modules/stock.js +21 -1
- package/modules/stock.src.d.ts +1 -9
- package/modules/stock.src.js +233 -209
- package/modules/streamgraph.d.ts +1 -9
- package/modules/streamgraph.js +11 -1
- package/modules/streamgraph.src.d.ts +1 -9
- package/modules/streamgraph.src.js +1 -1
- package/modules/sunburst.d.ts +1 -9
- package/modules/sunburst.js +10 -1
- package/modules/sunburst.src.d.ts +1 -9
- package/modules/sunburst.src.js +9 -9
- package/modules/textpath.d.ts +1 -9
- package/modules/textpath.js +9 -1
- package/modules/textpath.src.d.ts +1 -9
- package/modules/textpath.src.js +3 -3
- package/modules/tiledwebmap.d.ts +1 -9
- package/modules/tiledwebmap.js +10 -2
- package/modules/tiledwebmap.src.d.ts +1 -9
- package/modules/tiledwebmap.src.js +1 -1
- package/modules/tilemap.d.ts +1 -9
- package/modules/tilemap.js +12 -1
- package/modules/tilemap.src.d.ts +1 -9
- package/modules/tilemap.src.js +1 -1
- package/modules/timeline.d.ts +1 -9
- package/modules/timeline.js +12 -1
- package/modules/timeline.src.d.ts +1 -9
- package/modules/timeline.src.js +1 -1
- package/modules/treegraph.d.ts +1 -9
- package/modules/treegraph.js +11 -1
- package/modules/treegraph.src.d.ts +1 -9
- package/modules/treegraph.src.js +16 -8
- package/modules/treegrid.d.ts +1 -9
- package/modules/treegrid.js +11 -1
- package/modules/treegrid.src.d.ts +1 -9
- package/modules/treegrid.src.js +190 -159
- package/modules/treemap.d.ts +1 -9
- package/modules/treemap.js +10 -1
- package/modules/treemap.src.d.ts +1 -9
- package/modules/treemap.src.js +7 -7
- package/modules/variable-pie.d.ts +1 -9
- package/modules/variable-pie.js +11 -1
- package/modules/variable-pie.src.d.ts +1 -9
- package/modules/variable-pie.src.js +1 -1
- package/modules/variwide.d.ts +1 -9
- package/modules/variwide.js +11 -1
- package/modules/variwide.src.d.ts +1 -9
- package/modules/variwide.src.js +18 -13
- package/modules/vector.d.ts +1 -9
- package/modules/vector.js +11 -1
- package/modules/vector.src.d.ts +1 -9
- package/modules/vector.src.js +1 -1
- package/modules/venn.d.ts +1 -9
- package/modules/venn.js +10 -1
- package/modules/venn.src.d.ts +1 -9
- package/modules/venn.src.js +5 -3
- package/modules/windbarb.d.ts +1 -9
- package/modules/windbarb.js +11 -1
- package/modules/windbarb.src.d.ts +1 -9
- package/modules/windbarb.src.js +1 -1
- package/modules/wordcloud.d.ts +1 -9
- package/modules/wordcloud.js +10 -1
- package/modules/wordcloud.src.d.ts +1 -9
- package/modules/wordcloud.src.js +89 -12
- package/modules/xrange.d.ts +1 -9
- package/modules/xrange.js +11 -1
- package/modules/xrange.src.d.ts +1 -9
- package/modules/xrange.src.js +3 -2
- package/options/abands.d.ts +8 -0
- package/options/abands.src.d.ts +8 -0
- package/options/ao.d.ts +8 -0
- package/options/ao.src.d.ts +8 -0
- package/options/arcdiagram.d.ts +8 -0
- package/options/arcdiagram.src.d.ts +8 -0
- package/options/area.d.ts +9 -0
- package/options/area.src.d.ts +9 -0
- package/options/arearange.d.ts +9 -0
- package/options/arearange.src.d.ts +9 -0
- package/options/areaspline.d.ts +9 -0
- package/options/areaspline.src.d.ts +9 -0
- package/options/areasplinerange.d.ts +9 -0
- package/options/areasplinerange.src.d.ts +9 -0
- package/options/aroon.d.ts +8 -0
- package/options/aroon.src.d.ts +8 -0
- package/options/atr.d.ts +8 -0
- package/options/atr.src.d.ts +8 -0
- package/options/bellcurve.d.ts +8 -0
- package/options/bellcurve.src.d.ts +8 -0
- package/options/boxplot.d.ts +8 -0
- package/options/boxplot.src.d.ts +8 -0
- package/options/bullet.d.ts +8 -0
- package/options/bullet.src.d.ts +8 -0
- package/options/chaikin.d.ts +8 -0
- package/options/chaikin.src.d.ts +8 -0
- package/options/cmo.d.ts +8 -0
- package/options/cmo.src.d.ts +8 -0
- package/options/columnpyramid.d.ts +9 -0
- package/options/columnpyramid.src.d.ts +9 -0
- package/options/columnrange.d.ts +9 -0
- package/options/columnrange.src.d.ts +9 -0
- package/options/dmi.d.ts +8 -0
- package/options/dmi.src.d.ts +8 -0
- package/options/errorbar.d.ts +8 -0
- package/options/errorbar.src.d.ts +8 -0
- package/options/flags.d.ts +8 -0
- package/options/flags.src.d.ts +8 -0
- package/options/funnel.d.ts +8 -0
- package/options/funnel.src.d.ts +8 -0
- package/options/gauge.d.ts +8 -0
- package/options/gauge.src.d.ts +8 -0
- package/options/item.d.ts +8 -0
- package/options/item.src.d.ts +8 -0
- package/options/keltnerchannels.d.ts +8 -0
- package/options/keltnerchannels.src.d.ts +8 -0
- package/options/line.d.ts +9 -0
- package/options/line.src.d.ts +9 -0
- package/options/linearregressionangle.d.ts +8 -0
- package/options/linearregressionangle.src.d.ts +8 -0
- package/options/linearregressionintercept.d.ts +8 -0
- package/options/linearregressionintercept.src.d.ts +8 -0
- package/options/map.d.ts +8 -0
- package/options/map.src.d.ts +8 -0
- package/options/mfi.d.ts +8 -0
- package/options/mfi.src.d.ts +8 -0
- package/options/natr.d.ts +8 -0
- package/options/natr.src.d.ts +8 -0
- package/options/ohlc.d.ts +8 -0
- package/options/ohlc.src.d.ts +8 -0
- package/options/packedbubble.d.ts +8 -0
- package/options/packedbubble.src.d.ts +8 -0
- package/options/pictorial.d.ts +8 -0
- package/options/pictorial.src.d.ts +8 -0
- package/options/pointandfigure.d.ts +8 -0
- package/options/pointandfigure.src.d.ts +8 -0
- package/options/polygon.d.ts +9 -0
- package/options/polygon.src.d.ts +9 -0
- package/options/ppo.d.ts +8 -0
- package/options/ppo.src.d.ts +8 -0
- package/options/psar.d.ts +8 -0
- package/options/psar.src.d.ts +8 -0
- package/options/pyramid.d.ts +8 -0
- package/options/pyramid.src.d.ts +8 -0
- package/options/renko.d.ts +8 -0
- package/options/renko.src.d.ts +8 -0
- package/options/roc.d.ts +8 -0
- package/options/roc.src.d.ts +8 -0
- package/options/sankey.d.ts +8 -0
- package/options/sankey.src.d.ts +8 -0
- package/options/scatter.d.ts +9 -0
- package/options/scatter.src.d.ts +9 -0
- package/options/series.d.ts +9 -0
- package/options/series.src.d.ts +9 -0
- package/options/sma.d.ts +8 -0
- package/options/sma.src.d.ts +8 -0
- package/options/solidgauge.d.ts +14 -0
- package/options/solidgauge.src.d.ts +14 -0
- package/options/spline.d.ts +9 -0
- package/options/spline.src.d.ts +9 -0
- package/options/stochastic.d.ts +8 -0
- package/options/stochastic.src.d.ts +8 -0
- package/options/tema.d.ts +8 -0
- package/options/tema.src.d.ts +8 -0
- package/options/tiledwebmap.d.ts +8 -0
- package/options/tiledwebmap.src.d.ts +8 -0
- package/options/timeline.d.ts +8 -0
- package/options/timeline.src.d.ts +8 -0
- package/options/treegraph.d.ts +8 -0
- package/options/treegraph.src.d.ts +8 -0
- package/options/trix.d.ts +8 -0
- package/options/trix.src.d.ts +8 -0
- package/options/variablepie.d.ts +8 -0
- package/options/variablepie.src.d.ts +8 -0
- package/options/variwide.d.ts +8 -0
- package/options/variwide.src.d.ts +8 -0
- package/options/vbp.d.ts +8 -0
- package/options/vbp.src.d.ts +8 -0
- package/options/vector.d.ts +9 -0
- package/options/vector.src.d.ts +9 -0
- package/options/venn.d.ts +8 -0
- package/options/venn.src.d.ts +8 -0
- package/options/vwap.d.ts +8 -0
- package/options/vwap.src.d.ts +8 -0
- package/options/windbarb.d.ts +9 -0
- package/options/windbarb.src.d.ts +9 -0
- package/options/wma.d.ts +8 -0
- package/options/wma.src.d.ts +8 -0
- package/options/wordcloud.d.ts +8 -0
- package/options/wordcloud.src.d.ts +8 -0
- package/options/zigzag.d.ts +8 -0
- package/options/zigzag.src.d.ts +8 -0
- package/package.json +1 -1
- package/standalone-navigator.js +11 -2
- package/standalone-navigator.src.js +312 -206
- package/themes/adaptive.d.ts +18 -0
- package/themes/adaptive.js +130 -0
- package/themes/adaptive.src.d.ts +18 -0
- package/themes/adaptive.src.js +1122 -0
- package/themes/avocado.d.ts +1 -9
- package/themes/avocado.js +9 -1
- package/themes/avocado.src.d.ts +1 -9
- package/themes/avocado.src.js +1 -1
- package/themes/brand-dark.d.ts +1 -9
- package/themes/brand-dark.js +9 -1
- package/themes/brand-dark.src.d.ts +1 -9
- package/themes/brand-dark.src.js +1 -1
- package/themes/brand-light.d.ts +1 -9
- package/themes/brand-light.js +9 -1
- package/themes/brand-light.src.d.ts +1 -9
- package/themes/brand-light.src.js +1 -1
- package/themes/dark-blue.d.ts +1 -9
- package/themes/dark-blue.js +9 -1
- package/themes/dark-blue.src.d.ts +1 -9
- package/themes/dark-blue.src.js +1 -1
- package/themes/dark-green.d.ts +1 -9
- package/themes/dark-green.js +9 -1
- package/themes/dark-green.src.d.ts +1 -9
- package/themes/dark-green.src.js +1 -1
- package/themes/dark-unica.d.ts +1 -9
- package/themes/dark-unica.js +9 -1
- package/themes/dark-unica.src.d.ts +1 -9
- package/themes/dark-unica.src.js +1 -1
- package/themes/gray.d.ts +1 -9
- package/themes/gray.js +9 -1
- package/themes/gray.src.d.ts +1 -9
- package/themes/gray.src.js +1 -1
- package/themes/grid-light.d.ts +1 -9
- package/themes/grid-light.js +9 -1
- package/themes/grid-light.src.d.ts +1 -9
- package/themes/grid-light.src.js +1 -1
- package/themes/grid.d.ts +1 -9
- package/themes/grid.js +9 -1
- package/themes/grid.src.d.ts +1 -9
- package/themes/grid.src.js +1 -1
- package/themes/high-contrast-dark.d.ts +1 -9
- package/themes/high-contrast-dark.js +9 -1
- package/themes/high-contrast-dark.src.d.ts +1 -9
- package/themes/high-contrast-dark.src.js +1 -1
- package/themes/high-contrast-light.d.ts +1 -9
- package/themes/high-contrast-light.js +9 -1
- package/themes/high-contrast-light.src.d.ts +1 -9
- package/themes/high-contrast-light.src.js +1 -1
- package/themes/sand-signika.d.ts +1 -9
- package/themes/sand-signika.js +9 -1
- package/themes/sand-signika.src.d.ts +1 -9
- package/themes/sand-signika.src.js +1 -1
- package/themes/skies.d.ts +1 -9
- package/themes/skies.js +9 -1
- package/themes/skies.src.d.ts +1 -9
- package/themes/skies.src.js +1 -1
- package/themes/sunset.d.ts +1 -9
- package/themes/sunset.js +9 -1
- package/themes/sunset.src.d.ts +1 -9
- package/themes/sunset.src.js +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Highcharts JS v12.
|
|
2
|
+
* @license Highcharts JS v12.4.0 (2025-09-04)
|
|
3
3
|
* @module highcharts/modules/data-tools
|
|
4
4
|
* @requires highcharts
|
|
5
5
|
*
|
|
@@ -170,7 +170,7 @@ class DataModifier {
|
|
|
170
170
|
detail: eventDetail,
|
|
171
171
|
table
|
|
172
172
|
});
|
|
173
|
-
reject(e);
|
|
173
|
+
reject(e instanceof Error ? e : new Error('' + e));
|
|
174
174
|
}
|
|
175
175
|
});
|
|
176
176
|
}
|
|
@@ -1212,8 +1212,7 @@ class DataTable extends Data_DataTableCore {
|
|
|
1212
1212
|
* Returns all column names.
|
|
1213
1213
|
*/
|
|
1214
1214
|
getColumnNames() {
|
|
1215
|
-
|
|
1216
|
-
return columnNames;
|
|
1215
|
+
return Object.keys(this.columns);
|
|
1217
1216
|
}
|
|
1218
1217
|
/**
|
|
1219
1218
|
* Retrieves all or the given columns.
|
|
@@ -1915,10 +1914,38 @@ class DataConnector {
|
|
|
1915
1914
|
*
|
|
1916
1915
|
* @param {DataConnector.UserOptions} [options]
|
|
1917
1916
|
* Options to use in the connector.
|
|
1917
|
+
*
|
|
1918
|
+
* @param {Array<DataTableOptions>} [dataTables]
|
|
1919
|
+
* Multiple connector data tables options.
|
|
1918
1920
|
*/
|
|
1919
|
-
constructor(options = {}) {
|
|
1920
|
-
|
|
1921
|
+
constructor(options = {}, dataTables = []) {
|
|
1922
|
+
/**
|
|
1923
|
+
* Tables managed by this DataConnector instance.
|
|
1924
|
+
*/
|
|
1925
|
+
this.dataTables = {};
|
|
1926
|
+
/**
|
|
1927
|
+
* Helper flag for detecting whether the data connector is loaded.
|
|
1928
|
+
* @internal
|
|
1929
|
+
*/
|
|
1930
|
+
this.loaded = false;
|
|
1921
1931
|
this.metadata = options.metadata || { columns: {} };
|
|
1932
|
+
// Create a data table for each defined in the dataTables user options.
|
|
1933
|
+
let dataTableIndex = 0;
|
|
1934
|
+
if (dataTables?.length > 0) {
|
|
1935
|
+
for (let i = 0, iEnd = dataTables.length; i < iEnd; ++i) {
|
|
1936
|
+
const dataTable = dataTables[i];
|
|
1937
|
+
const key = dataTable?.key;
|
|
1938
|
+
this.dataTables[key ?? dataTableIndex] =
|
|
1939
|
+
new Data_DataTable(dataTable);
|
|
1940
|
+
if (!key) {
|
|
1941
|
+
dataTableIndex++;
|
|
1942
|
+
}
|
|
1943
|
+
}
|
|
1944
|
+
// If user options dataTables is not defined, generate a default table.
|
|
1945
|
+
}
|
|
1946
|
+
else {
|
|
1947
|
+
this.dataTables[0] = new Data_DataTable(options.dataTable);
|
|
1948
|
+
}
|
|
1922
1949
|
}
|
|
1923
1950
|
/**
|
|
1924
1951
|
* Poll timer ID, if active.
|
|
@@ -1926,6 +1953,15 @@ class DataConnector {
|
|
|
1926
1953
|
get polling() {
|
|
1927
1954
|
return !!this._polling;
|
|
1928
1955
|
}
|
|
1956
|
+
/**
|
|
1957
|
+
* Gets the first data table.
|
|
1958
|
+
*
|
|
1959
|
+
* @return {DataTable}
|
|
1960
|
+
* The data table instance.
|
|
1961
|
+
*/
|
|
1962
|
+
get table() {
|
|
1963
|
+
return this.getTable();
|
|
1964
|
+
}
|
|
1929
1965
|
/* *
|
|
1930
1966
|
*
|
|
1931
1967
|
* Functions
|
|
@@ -1984,6 +2020,22 @@ class DataConnector {
|
|
|
1984
2020
|
return names.sort((a, b) => (pick(columns[a].index, 0) - pick(columns[b].index, 0)));
|
|
1985
2021
|
}
|
|
1986
2022
|
}
|
|
2023
|
+
/**
|
|
2024
|
+
* Returns a single data table instance based on the provided key.
|
|
2025
|
+
* Otherwise, returns the first data table.
|
|
2026
|
+
*
|
|
2027
|
+
* @param {string} [key]
|
|
2028
|
+
* The data table key.
|
|
2029
|
+
*
|
|
2030
|
+
* @return {DataTable}
|
|
2031
|
+
* The data table instance.
|
|
2032
|
+
*/
|
|
2033
|
+
getTable(key) {
|
|
2034
|
+
if (key) {
|
|
2035
|
+
return this.dataTables[key];
|
|
2036
|
+
}
|
|
2037
|
+
return Object.values(this.dataTables)[0];
|
|
2038
|
+
}
|
|
1987
2039
|
/**
|
|
1988
2040
|
* Retrieves the columns of the dataTable,
|
|
1989
2041
|
* applies column order from meta.
|
|
@@ -2049,14 +2101,17 @@ class DataConnector {
|
|
|
2049
2101
|
connector.describeColumn(columnNames[i], { index: i });
|
|
2050
2102
|
}
|
|
2051
2103
|
}
|
|
2052
|
-
setModifierOptions(modifierOptions) {
|
|
2053
|
-
const
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
|
|
2104
|
+
async setModifierOptions(modifierOptions, tablesOptions) {
|
|
2105
|
+
for (const [key, table] of Object.entries(this.dataTables)) {
|
|
2106
|
+
const tableOptions = tablesOptions?.find((dataTable) => dataTable.key === key);
|
|
2107
|
+
const mergedModifierOptions = DataConnector_merge(tableOptions?.dataModifier, modifierOptions);
|
|
2108
|
+
const ModifierClass = (mergedModifierOptions &&
|
|
2109
|
+
Modifiers_DataModifier.types[mergedModifierOptions.type]);
|
|
2110
|
+
await table.setModifier(ModifierClass ?
|
|
2111
|
+
new ModifierClass(mergedModifierOptions) :
|
|
2112
|
+
void 0);
|
|
2113
|
+
}
|
|
2114
|
+
return this;
|
|
2060
2115
|
}
|
|
2061
2116
|
/**
|
|
2062
2117
|
* Starts polling new data after the specific time span in milliseconds.
|
|
@@ -2066,12 +2121,16 @@ class DataConnector {
|
|
|
2066
2121
|
*/
|
|
2067
2122
|
startPolling(refreshTime = 1000) {
|
|
2068
2123
|
const connector = this;
|
|
2124
|
+
const tables = connector.dataTables;
|
|
2125
|
+
// Assign a new abort controller.
|
|
2126
|
+
this.pollingController = new AbortController();
|
|
2127
|
+
// Clear the polling timeout.
|
|
2069
2128
|
window.clearTimeout(connector._polling);
|
|
2070
2129
|
connector._polling = window.setTimeout(() => connector
|
|
2071
2130
|
.load()['catch']((error) => connector.emit({
|
|
2072
2131
|
type: 'loadError',
|
|
2073
2132
|
error,
|
|
2074
|
-
|
|
2133
|
+
tables
|
|
2075
2134
|
}))
|
|
2076
2135
|
.then(() => {
|
|
2077
2136
|
if (connector._polling) {
|
|
@@ -2080,10 +2139,16 @@ class DataConnector {
|
|
|
2080
2139
|
}), refreshTime);
|
|
2081
2140
|
}
|
|
2082
2141
|
/**
|
|
2083
|
-
* Stops polling data.
|
|
2142
|
+
* Stops polling data. Shouldn't be performed if polling is already stopped.
|
|
2084
2143
|
*/
|
|
2085
2144
|
stopPolling() {
|
|
2086
2145
|
const connector = this;
|
|
2146
|
+
if (!connector.polling) {
|
|
2147
|
+
return;
|
|
2148
|
+
}
|
|
2149
|
+
// Abort the existing request.
|
|
2150
|
+
connector?.pollingController?.abort();
|
|
2151
|
+
// Clear the polling timeout.
|
|
2087
2152
|
window.clearTimeout(connector._polling);
|
|
2088
2153
|
delete connector._polling;
|
|
2089
2154
|
}
|
|
@@ -2099,6 +2164,35 @@ class DataConnector {
|
|
|
2099
2164
|
whatIs(name) {
|
|
2100
2165
|
return this.metadata.columns[name];
|
|
2101
2166
|
}
|
|
2167
|
+
/**
|
|
2168
|
+
* Iterates over the dataTables and initiates the corresponding converters.
|
|
2169
|
+
* Updates the dataTables and assigns the first converter.
|
|
2170
|
+
*
|
|
2171
|
+
* @param {T}[data]
|
|
2172
|
+
* Data specific to the corresponding converter.
|
|
2173
|
+
*
|
|
2174
|
+
* @param {DataConnector.CreateConverterFunction}[createConverter]
|
|
2175
|
+
* Creates a specific converter combining the dataTable options.
|
|
2176
|
+
*
|
|
2177
|
+
* @param {DataConnector.ParseDataFunction<T>}[parseData]
|
|
2178
|
+
* Runs the converter parse method with the specific data type.
|
|
2179
|
+
*/
|
|
2180
|
+
initConverters(data, createConverter, parseData) {
|
|
2181
|
+
let index = 0;
|
|
2182
|
+
for (const [key, table] of Object.entries(this.dataTables)) {
|
|
2183
|
+
// Create a proper converter and parse its data.
|
|
2184
|
+
const converter = createConverter(key, table);
|
|
2185
|
+
parseData(converter, data);
|
|
2186
|
+
// Update the dataTable.
|
|
2187
|
+
table.deleteColumns();
|
|
2188
|
+
table.setColumns(converter.getTable().getColumns());
|
|
2189
|
+
// Assign the first converter.
|
|
2190
|
+
if (index === 0) {
|
|
2191
|
+
this.converter = converter;
|
|
2192
|
+
}
|
|
2193
|
+
index++;
|
|
2194
|
+
}
|
|
2195
|
+
}
|
|
2102
2196
|
}
|
|
2103
2197
|
/* *
|
|
2104
2198
|
*
|
|
@@ -3272,7 +3366,7 @@ class DataPool {
|
|
|
3272
3366
|
getConnector(connectorId) {
|
|
3273
3367
|
const connector = this.connectors[connectorId];
|
|
3274
3368
|
// Already loaded
|
|
3275
|
-
if (connector) {
|
|
3369
|
+
if (connector?.loaded) {
|
|
3276
3370
|
return Promise.resolve(connector);
|
|
3277
3371
|
}
|
|
3278
3372
|
let waitingList = this.waiting[connectorId];
|
|
@@ -3387,12 +3481,14 @@ class DataPool {
|
|
|
3387
3481
|
if (!ConnectorClass) {
|
|
3388
3482
|
throw new Error(`Connector type not found. (${options.type})`);
|
|
3389
3483
|
}
|
|
3390
|
-
const connector = new ConnectorClass(options.options);
|
|
3484
|
+
const connector = this.connectors[options.id] = new ConnectorClass(options.options, options.dataTables);
|
|
3391
3485
|
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
3392
3486
|
connector
|
|
3393
3487
|
.load()
|
|
3394
|
-
.then((
|
|
3395
|
-
|
|
3488
|
+
.then(({ converter, dataTables }) => {
|
|
3489
|
+
connector.dataTables = dataTables;
|
|
3490
|
+
connector.converter = converter;
|
|
3491
|
+
connector.loaded = true;
|
|
3396
3492
|
this.emit({
|
|
3397
3493
|
type: 'afterLoad',
|
|
3398
3494
|
options
|
|
@@ -3401,6 +3497,15 @@ class DataPool {
|
|
|
3401
3497
|
})['catch'](reject);
|
|
3402
3498
|
});
|
|
3403
3499
|
}
|
|
3500
|
+
/**
|
|
3501
|
+
* Cancels all data connectors pending requests.
|
|
3502
|
+
*/
|
|
3503
|
+
cancelPendingRequests() {
|
|
3504
|
+
const { connectors } = this;
|
|
3505
|
+
for (const connectorKey of Object.keys(connectors)) {
|
|
3506
|
+
connectors[connectorKey].stopPolling();
|
|
3507
|
+
}
|
|
3508
|
+
}
|
|
3404
3509
|
/**
|
|
3405
3510
|
* Registers a callback for a specific event.
|
|
3406
3511
|
*
|
|
@@ -3478,6 +3583,8 @@ DataPool.version = '1.0.0';
|
|
|
3478
3583
|
*
|
|
3479
3584
|
* */
|
|
3480
3585
|
|
|
3586
|
+
|
|
3587
|
+
const { isString } = (external_highcharts_src_js_default_default());
|
|
3481
3588
|
/* *
|
|
3482
3589
|
*
|
|
3483
3590
|
* Constants
|
|
@@ -3757,6 +3864,20 @@ function parseArguments(text, alternativeSeparators) {
|
|
|
3757
3864
|
}
|
|
3758
3865
|
return args;
|
|
3759
3866
|
}
|
|
3867
|
+
/**
|
|
3868
|
+
* Checks if there's one of the following operator before the negative number
|
|
3869
|
+
* value: '*', '/' or '^'.
|
|
3870
|
+
*
|
|
3871
|
+
* Used to properly indicate a negative value reference or negate a directly
|
|
3872
|
+
* passed number value.
|
|
3873
|
+
*/
|
|
3874
|
+
function negativeReference(formula) {
|
|
3875
|
+
const formulaLength = formula.length;
|
|
3876
|
+
const priorFormula = formula[formulaLength - 2];
|
|
3877
|
+
return (formula[formulaLength - 1] === '-' &&
|
|
3878
|
+
isString(priorFormula) &&
|
|
3879
|
+
!!priorFormula.match(/\*|\/|\^/));
|
|
3880
|
+
}
|
|
3760
3881
|
/**
|
|
3761
3882
|
* Converts a spreadsheet formula string into a formula array. Throws a
|
|
3762
3883
|
* `FormulaParserError` when the string can not be parsed.
|
|
@@ -3800,6 +3921,10 @@ function parseFormula(text, alternativeSeparators) {
|
|
|
3800
3921
|
if (rowRelative) {
|
|
3801
3922
|
reference.rowRelative = true;
|
|
3802
3923
|
}
|
|
3924
|
+
if (negativeReference(formula)) {
|
|
3925
|
+
formula.pop();
|
|
3926
|
+
reference.isNegative = true;
|
|
3927
|
+
}
|
|
3803
3928
|
formula.push(reference);
|
|
3804
3929
|
next = next.substring(match[0].length).trim();
|
|
3805
3930
|
continue;
|
|
@@ -3824,6 +3949,10 @@ function parseFormula(text, alternativeSeparators) {
|
|
|
3824
3949
|
if (rowRelative) {
|
|
3825
3950
|
reference.rowRelative = true;
|
|
3826
3951
|
}
|
|
3952
|
+
if (negativeReference(formula)) {
|
|
3953
|
+
formula.pop();
|
|
3954
|
+
reference.isNegative = true;
|
|
3955
|
+
}
|
|
3827
3956
|
formula.push(reference);
|
|
3828
3957
|
next = next.substring(match[0].length).trim();
|
|
3829
3958
|
continue;
|
|
@@ -3845,7 +3974,15 @@ function parseFormula(text, alternativeSeparators) {
|
|
|
3845
3974
|
// Check for a number value
|
|
3846
3975
|
match = next.match(decimalRegExp);
|
|
3847
3976
|
if (match) {
|
|
3848
|
-
|
|
3977
|
+
let number = parseFloat(match[0]);
|
|
3978
|
+
// If the current value is multiplication-related and the previous
|
|
3979
|
+
// one is a minus sign, set the current value to negative and remove
|
|
3980
|
+
// the minus sign.
|
|
3981
|
+
if (negativeReference(formula)) {
|
|
3982
|
+
formula.pop();
|
|
3983
|
+
number = -number;
|
|
3984
|
+
}
|
|
3985
|
+
formula.push(number);
|
|
3849
3986
|
next = next.substring(match[0].length).trim();
|
|
3850
3987
|
continue;
|
|
3851
3988
|
}
|
|
@@ -4075,6 +4212,8 @@ const MathFormula = {
|
|
|
4075
4212
|
|
|
4076
4213
|
|
|
4077
4214
|
const { isFormula: FormulaProcessor_isFormula, isFunction: FormulaProcessor_isFunction, isOperator: FormulaProcessor_isOperator, isRange: FormulaProcessor_isRange, isReference: FormulaProcessor_isReference, isValue: FormulaProcessor_isValue } = FormulaTypes;
|
|
4215
|
+
|
|
4216
|
+
const { defined: FormulaProcessor_defined } = (external_highcharts_src_js_default_default());
|
|
4078
4217
|
/* *
|
|
4079
4218
|
*
|
|
4080
4219
|
* Constants
|
|
@@ -4340,14 +4479,57 @@ function getReferenceValue(reference, table) {
|
|
|
4340
4479
|
const result = table.modified.getCell(columnName, reference.row);
|
|
4341
4480
|
return FormulaProcessor_isValue(result) ? result : NaN;
|
|
4342
4481
|
}
|
|
4343
|
-
|
|
4482
|
+
if (FormulaProcessor_isValue(cell)) {
|
|
4483
|
+
return reference.isNegative ? -cell : cell;
|
|
4484
|
+
}
|
|
4485
|
+
return NaN;
|
|
4344
4486
|
}
|
|
4345
4487
|
return NaN;
|
|
4346
4488
|
}
|
|
4489
|
+
/**
|
|
4490
|
+
* Calculates a value based on the two top values and the related operator.
|
|
4491
|
+
*
|
|
4492
|
+
* Used to properly process the formula's values based on its operators.
|
|
4493
|
+
*
|
|
4494
|
+
* @private
|
|
4495
|
+
* @function Highcharts.applyOperator
|
|
4496
|
+
*
|
|
4497
|
+
* @param {Array<Highcharts.Value>} values
|
|
4498
|
+
* Processed formula values.
|
|
4499
|
+
*
|
|
4500
|
+
* @param {Array<Highcharts.Operator>} operators
|
|
4501
|
+
* Processed formula operators.
|
|
4502
|
+
*/
|
|
4503
|
+
function applyOperator(values, operators) {
|
|
4504
|
+
if (values.length < 2 || operators.length < 1) {
|
|
4505
|
+
values.push(NaN);
|
|
4506
|
+
}
|
|
4507
|
+
const secondValue = values.pop();
|
|
4508
|
+
const firstValue = values.pop();
|
|
4509
|
+
const operator = operators.pop();
|
|
4510
|
+
if (!FormulaProcessor_defined(secondValue) || !FormulaProcessor_defined(firstValue) || !FormulaProcessor_defined(operator)) {
|
|
4511
|
+
values.push(NaN);
|
|
4512
|
+
}
|
|
4513
|
+
else {
|
|
4514
|
+
values.push(basicOperation(operator, firstValue, secondValue));
|
|
4515
|
+
}
|
|
4516
|
+
}
|
|
4347
4517
|
/**
|
|
4348
4518
|
* Processes a formula array on the given table. If the formula does not contain
|
|
4349
4519
|
* references or ranges, then no table has to be provided.
|
|
4350
4520
|
*
|
|
4521
|
+
* Performs formulas considering the operators precedence.
|
|
4522
|
+
*
|
|
4523
|
+
* // Example of the `2 * 3 + 4` formula:
|
|
4524
|
+
* 2 -> values: [2], operators: []
|
|
4525
|
+
* * -> values: [2], operators: [*]
|
|
4526
|
+
* 3 -> values: [2, 3], operators: [*]
|
|
4527
|
+
* // Since the higher precedence operator exists (* > +), perform it first.
|
|
4528
|
+
* + -> values: [6], operators: [+]
|
|
4529
|
+
* 4 -> values: [6, 4], operators: [+]
|
|
4530
|
+
* // When non-higher precedence operators remain, perform rest calculations.
|
|
4531
|
+
* -> values: [10], operators: []
|
|
4532
|
+
*
|
|
4351
4533
|
* @private
|
|
4352
4534
|
* @function Highcharts.processFormula
|
|
4353
4535
|
*
|
|
@@ -4361,61 +4543,68 @@ function getReferenceValue(reference, table) {
|
|
|
4361
4543
|
* Result value of the process. `NaN` indicates an error.
|
|
4362
4544
|
*/
|
|
4363
4545
|
function processFormula(formula, table) {
|
|
4364
|
-
|
|
4365
|
-
|
|
4366
|
-
|
|
4367
|
-
|
|
4546
|
+
// Keeps all the values to calculate them in a proper priority, based on the
|
|
4547
|
+
// given operators.
|
|
4548
|
+
const values = [];
|
|
4549
|
+
// Keeps all the operators to calculate the values above, following the
|
|
4550
|
+
// proper priority.
|
|
4551
|
+
const operators = [];
|
|
4552
|
+
// Indicates if the next item is a value (not an operator).
|
|
4553
|
+
let expectingValue = true;
|
|
4554
|
+
for (let i = 0, iEnd = formula.length; i < iEnd; ++i) {
|
|
4555
|
+
const item = formula[i];
|
|
4368
4556
|
if (FormulaProcessor_isOperator(item)) {
|
|
4369
|
-
|
|
4557
|
+
if (expectingValue && item === '-') {
|
|
4558
|
+
// Split the negative values to be handled as a binary
|
|
4559
|
+
// operation if the next item is a value.
|
|
4560
|
+
values.push(0);
|
|
4561
|
+
operators.push('-');
|
|
4562
|
+
expectingValue = true;
|
|
4563
|
+
}
|
|
4564
|
+
else {
|
|
4565
|
+
// Perform if the higher precedence operator exist.
|
|
4566
|
+
while (operators.length &&
|
|
4567
|
+
operatorPriority[operators[operators.length - 1]] >=
|
|
4568
|
+
operatorPriority[item]) {
|
|
4569
|
+
applyOperator(values, operators);
|
|
4570
|
+
}
|
|
4571
|
+
operators.push(item);
|
|
4572
|
+
expectingValue = true;
|
|
4573
|
+
}
|
|
4370
4574
|
continue;
|
|
4371
4575
|
}
|
|
4372
|
-
|
|
4576
|
+
let value;
|
|
4577
|
+
// Assign the proper value, starting from the most common types.
|
|
4373
4578
|
if (FormulaProcessor_isValue(item)) {
|
|
4374
|
-
|
|
4375
|
-
// Next item is a formula and needs to get processed first
|
|
4579
|
+
value = item;
|
|
4376
4580
|
}
|
|
4377
|
-
else if (
|
|
4378
|
-
|
|
4379
|
-
// Next item is a function call and needs to get processed first
|
|
4581
|
+
else if (FormulaProcessor_isReference(item)) {
|
|
4582
|
+
value = table ? getReferenceValue(item, table) : NaN;
|
|
4380
4583
|
}
|
|
4381
4584
|
else if (FormulaProcessor_isFunction(item)) {
|
|
4382
|
-
result = processFunction(item, table);
|
|
4383
|
-
|
|
4384
|
-
// Next item is a reference and needs to get resolved
|
|
4585
|
+
const result = processFunction(item, table);
|
|
4586
|
+
value = FormulaProcessor_isValue(result) ? result : NaN;
|
|
4385
4587
|
}
|
|
4386
|
-
else if (
|
|
4387
|
-
|
|
4388
|
-
}
|
|
4389
|
-
// If we have a next value, lets do the operation
|
|
4390
|
-
if (typeof y !== 'undefined') {
|
|
4391
|
-
// Next value is our first value
|
|
4392
|
-
if (typeof x === 'undefined') {
|
|
4393
|
-
if (operator) {
|
|
4394
|
-
x = basicOperation(operator, 0, y);
|
|
4395
|
-
}
|
|
4396
|
-
else {
|
|
4397
|
-
x = y;
|
|
4398
|
-
}
|
|
4399
|
-
// Fail fast if no operator available
|
|
4400
|
-
}
|
|
4401
|
-
else if (!operator) {
|
|
4402
|
-
return NaN;
|
|
4403
|
-
// Regular next value
|
|
4404
|
-
}
|
|
4405
|
-
else {
|
|
4406
|
-
const operator2 = formula[i + 1];
|
|
4407
|
-
if (FormulaProcessor_isOperator(operator2) &&
|
|
4408
|
-
operatorPriority[operator2] > operatorPriority[operator]) {
|
|
4409
|
-
y = basicOperation(operator2, y, processFormula(formula.slice(i + 2)));
|
|
4410
|
-
i = iEnd;
|
|
4411
|
-
}
|
|
4412
|
-
x = basicOperation(operator, x, y);
|
|
4413
|
-
}
|
|
4414
|
-
operator = void 0;
|
|
4415
|
-
y = void 0;
|
|
4588
|
+
else if (FormulaProcessor_isFormula(item)) {
|
|
4589
|
+
value = processFormula(item, table);
|
|
4416
4590
|
}
|
|
4591
|
+
if (typeof value !== 'undefined') {
|
|
4592
|
+
values.push(value);
|
|
4593
|
+
expectingValue = false;
|
|
4594
|
+
}
|
|
4595
|
+
else {
|
|
4596
|
+
return NaN;
|
|
4597
|
+
}
|
|
4598
|
+
}
|
|
4599
|
+
// Handle the remaining operators that weren't taken into consideration, due
|
|
4600
|
+
// to non-higher precedence.
|
|
4601
|
+
while (operators.length) {
|
|
4602
|
+
applyOperator(values, operators);
|
|
4603
|
+
}
|
|
4604
|
+
if (values.length !== 1) {
|
|
4605
|
+
return NaN;
|
|
4417
4606
|
}
|
|
4418
|
-
return
|
|
4607
|
+
return values[0];
|
|
4419
4608
|
}
|
|
4420
4609
|
/**
|
|
4421
4610
|
* Process a function on the given table. If the arguments do not contain
|
|
@@ -6389,7 +6578,7 @@ Converters_DataConverter.registerType('CSV', CSVConverter);
|
|
|
6389
6578
|
|
|
6390
6579
|
|
|
6391
6580
|
|
|
6392
|
-
const { merge: CSVConnector_merge } = (external_highcharts_src_js_default_default());
|
|
6581
|
+
const { merge: CSVConnector_merge, defined: CSVConnector_defined } = (external_highcharts_src_js_default_default());
|
|
6393
6582
|
/* *
|
|
6394
6583
|
*
|
|
6395
6584
|
* Class
|
|
@@ -6411,12 +6600,16 @@ class CSVConnector extends Connectors_DataConnector {
|
|
|
6411
6600
|
*
|
|
6412
6601
|
* @param {CSVConnector.UserOptions} [options]
|
|
6413
6602
|
* Options for the connector and converter.
|
|
6603
|
+
*
|
|
6604
|
+
* @param {Array<DataTableOptions>} [dataTables]
|
|
6605
|
+
* Multiple connector data tables options.
|
|
6606
|
+
*
|
|
6414
6607
|
*/
|
|
6415
|
-
constructor(options) {
|
|
6608
|
+
constructor(options, dataTables) {
|
|
6416
6609
|
const mergedOptions = CSVConnector_merge(CSVConnector.defaultOptions, options);
|
|
6417
|
-
super(mergedOptions);
|
|
6418
|
-
this.
|
|
6419
|
-
|
|
6610
|
+
super(mergedOptions, dataTables);
|
|
6611
|
+
this.options = CSVConnector_defined(dataTables) ?
|
|
6612
|
+
CSVConnector_merge(mergedOptions, { dataTables }) : mergedOptions;
|
|
6420
6613
|
if (mergedOptions.enablePolling) {
|
|
6421
6614
|
this.startPolling(Math.max(mergedOptions.dataRefreshRate || 0, 1) * 1000);
|
|
6422
6615
|
}
|
|
@@ -6436,26 +6629,39 @@ class CSVConnector extends Connectors_DataConnector {
|
|
|
6436
6629
|
* @emits CSVConnector#afterLoad
|
|
6437
6630
|
*/
|
|
6438
6631
|
load(eventDetail) {
|
|
6439
|
-
const connector = this,
|
|
6632
|
+
const connector = this, tables = connector.dataTables, { csv, csvURL, dataModifier, dataTables } = connector.options;
|
|
6440
6633
|
connector.emit({
|
|
6441
6634
|
type: 'load',
|
|
6442
6635
|
csv,
|
|
6443
6636
|
detail: eventDetail,
|
|
6444
|
-
|
|
6637
|
+
tables
|
|
6445
6638
|
});
|
|
6446
6639
|
return Promise
|
|
6447
6640
|
.resolve(csvURL ?
|
|
6448
|
-
fetch(csvURL
|
|
6641
|
+
fetch(csvURL, {
|
|
6642
|
+
signal: connector?.pollingController?.signal
|
|
6643
|
+
}).then((response) => response.text()) :
|
|
6449
6644
|
csv || '')
|
|
6450
6645
|
.then((csv) => {
|
|
6451
6646
|
if (csv) {
|
|
6452
|
-
|
|
6453
|
-
|
|
6454
|
-
|
|
6455
|
-
|
|
6647
|
+
this.initConverters(csv, (key) => {
|
|
6648
|
+
const options = this.options;
|
|
6649
|
+
const tableOptions = dataTables?.find((dataTable) => dataTable.key === key);
|
|
6650
|
+
// Takes over the connector default options.
|
|
6651
|
+
const mergedTableOptions = {
|
|
6652
|
+
dataTableKey: key,
|
|
6653
|
+
firstRowAsNames: tableOptions?.firstRowAsNames ??
|
|
6654
|
+
options.firstRowAsNames,
|
|
6655
|
+
beforeParse: tableOptions?.beforeParse ??
|
|
6656
|
+
options.beforeParse
|
|
6657
|
+
};
|
|
6658
|
+
return new Converters_CSVConverter(CSVConnector_merge(this.options, mergedTableOptions));
|
|
6659
|
+
}, (converter, data) => {
|
|
6660
|
+
converter.parse({ csv: data });
|
|
6661
|
+
});
|
|
6456
6662
|
}
|
|
6457
6663
|
return connector
|
|
6458
|
-
.setModifierOptions(dataModifier)
|
|
6664
|
+
.setModifierOptions(dataModifier, dataTables)
|
|
6459
6665
|
.then(() => csv);
|
|
6460
6666
|
})
|
|
6461
6667
|
.then((csv) => {
|
|
@@ -6463,7 +6669,7 @@ class CSVConnector extends Connectors_DataConnector {
|
|
|
6463
6669
|
type: 'afterLoad',
|
|
6464
6670
|
csv,
|
|
6465
6671
|
detail: eventDetail,
|
|
6466
|
-
|
|
6672
|
+
tables
|
|
6467
6673
|
});
|
|
6468
6674
|
return connector;
|
|
6469
6675
|
})['catch']((error) => {
|
|
@@ -6471,7 +6677,7 @@ class CSVConnector extends Connectors_DataConnector {
|
|
|
6471
6677
|
type: 'loadError',
|
|
6472
6678
|
detail: eventDetail,
|
|
6473
6679
|
error,
|
|
6474
|
-
|
|
6680
|
+
tables
|
|
6475
6681
|
});
|
|
6476
6682
|
throw error;
|
|
6477
6683
|
});
|
|
@@ -6670,7 +6876,6 @@ class JSONConverter extends Converters_DataConverter {
|
|
|
6670
6876
|
*/
|
|
6671
6877
|
JSONConverter.defaultOptions = {
|
|
6672
6878
|
...Converters_DataConverter.defaultOptions,
|
|
6673
|
-
data: [],
|
|
6674
6879
|
orientation: 'rows'
|
|
6675
6880
|
};
|
|
6676
6881
|
Converters_DataConverter.registerType('JSON', JSONConverter);
|
|
@@ -6698,7 +6903,7 @@ Converters_DataConverter.registerType('JSON', JSONConverter);
|
|
|
6698
6903
|
|
|
6699
6904
|
|
|
6700
6905
|
|
|
6701
|
-
const { merge: JSONConnector_merge } = (external_highcharts_src_js_default_default());
|
|
6906
|
+
const { merge: JSONConnector_merge, defined: JSONConnector_defined } = (external_highcharts_src_js_default_default());
|
|
6702
6907
|
/* *
|
|
6703
6908
|
*
|
|
6704
6909
|
* Class
|
|
@@ -6720,12 +6925,15 @@ class JSONConnector extends Connectors_DataConnector {
|
|
|
6720
6925
|
*
|
|
6721
6926
|
* @param {JSONConnector.UserOptions} [options]
|
|
6722
6927
|
* Options for the connector and converter.
|
|
6928
|
+
*
|
|
6929
|
+
* @param {Array<DataTableOptions>} [dataTables]
|
|
6930
|
+
* Multiple connector data tables options.
|
|
6723
6931
|
*/
|
|
6724
|
-
constructor(options) {
|
|
6932
|
+
constructor(options, dataTables) {
|
|
6725
6933
|
const mergedOptions = JSONConnector_merge(JSONConnector.defaultOptions, options);
|
|
6726
|
-
super(mergedOptions);
|
|
6727
|
-
this.
|
|
6728
|
-
|
|
6934
|
+
super(mergedOptions, dataTables);
|
|
6935
|
+
this.options = JSONConnector_defined(dataTables) ?
|
|
6936
|
+
JSONConnector_merge(mergedOptions, { dataTables }) : mergedOptions;
|
|
6729
6937
|
if (mergedOptions.enablePolling) {
|
|
6730
6938
|
this.startPolling(Math.max(mergedOptions.dataRefreshRate || 0, 1) * 1000);
|
|
6731
6939
|
}
|
|
@@ -6745,40 +6953,58 @@ class JSONConnector extends Connectors_DataConnector {
|
|
|
6745
6953
|
* @emits JSONConnector#afterLoad
|
|
6746
6954
|
*/
|
|
6747
6955
|
load(eventDetail) {
|
|
6748
|
-
const connector = this,
|
|
6956
|
+
const connector = this, tables = connector.dataTables, { data, dataUrl, dataModifier, dataTables } = connector.options;
|
|
6749
6957
|
connector.emit({
|
|
6750
6958
|
type: 'load',
|
|
6751
6959
|
data,
|
|
6752
6960
|
detail: eventDetail,
|
|
6753
|
-
|
|
6961
|
+
tables
|
|
6754
6962
|
});
|
|
6755
6963
|
return Promise
|
|
6756
6964
|
.resolve(dataUrl ?
|
|
6757
|
-
fetch(dataUrl
|
|
6965
|
+
fetch(dataUrl, {
|
|
6966
|
+
signal: connector?.pollingController?.signal
|
|
6967
|
+
}).then((response) => response.json())['catch']((error) => {
|
|
6758
6968
|
connector.emit({
|
|
6759
6969
|
type: 'loadError',
|
|
6760
6970
|
detail: eventDetail,
|
|
6761
6971
|
error,
|
|
6762
|
-
|
|
6972
|
+
tables
|
|
6763
6973
|
});
|
|
6764
6974
|
console.warn(`Unable to fetch data from ${dataUrl}.`); // eslint-disable-line no-console
|
|
6765
6975
|
}) :
|
|
6766
6976
|
data || [])
|
|
6767
6977
|
.then((data) => {
|
|
6768
6978
|
if (data) {
|
|
6769
|
-
|
|
6770
|
-
|
|
6771
|
-
|
|
6772
|
-
|
|
6979
|
+
this.initConverters(data, (key) => {
|
|
6980
|
+
const options = this.options;
|
|
6981
|
+
const tableOptions = dataTables?.find((dataTable) => dataTable.key === key);
|
|
6982
|
+
// Takes over the connector default options.
|
|
6983
|
+
const mergedTableOptions = {
|
|
6984
|
+
dataTableKey: key,
|
|
6985
|
+
columnNames: tableOptions?.columnNames ??
|
|
6986
|
+
options.columnNames,
|
|
6987
|
+
firstRowAsNames: tableOptions?.firstRowAsNames ??
|
|
6988
|
+
options.firstRowAsNames,
|
|
6989
|
+
orientation: tableOptions?.orientation ??
|
|
6990
|
+
options.orientation,
|
|
6991
|
+
beforeParse: tableOptions?.beforeParse ??
|
|
6992
|
+
options.beforeParse
|
|
6993
|
+
};
|
|
6994
|
+
return new Converters_JSONConverter(JSONConnector_merge(this.options, mergedTableOptions));
|
|
6995
|
+
}, (converter, data) => {
|
|
6996
|
+
converter.parse({ data });
|
|
6997
|
+
});
|
|
6773
6998
|
}
|
|
6774
|
-
return connector.setModifierOptions(dataModifier
|
|
6999
|
+
return connector.setModifierOptions(dataModifier, dataTables)
|
|
7000
|
+
.then(() => data);
|
|
6775
7001
|
})
|
|
6776
7002
|
.then((data) => {
|
|
6777
7003
|
connector.emit({
|
|
6778
7004
|
type: 'afterLoad',
|
|
6779
7005
|
data,
|
|
6780
7006
|
detail: eventDetail,
|
|
6781
|
-
|
|
7007
|
+
tables
|
|
6782
7008
|
});
|
|
6783
7009
|
return connector;
|
|
6784
7010
|
})['catch']((error) => {
|
|
@@ -6786,7 +7012,7 @@ class JSONConnector extends Connectors_DataConnector {
|
|
|
6786
7012
|
type: 'loadError',
|
|
6787
7013
|
detail: eventDetail,
|
|
6788
7014
|
error,
|
|
6789
|
-
|
|
7015
|
+
tables
|
|
6790
7016
|
});
|
|
6791
7017
|
throw error;
|
|
6792
7018
|
});
|
|
@@ -6798,7 +7024,6 @@ class JSONConnector extends Connectors_DataConnector {
|
|
|
6798
7024
|
*
|
|
6799
7025
|
* */
|
|
6800
7026
|
JSONConnector.defaultOptions = {
|
|
6801
|
-
data: [],
|
|
6802
7027
|
enablePolling: false,
|
|
6803
7028
|
dataRefreshRate: 0,
|
|
6804
7029
|
firstRowAsNames: true,
|
|
@@ -6971,7 +7196,7 @@ Converters_DataConverter.registerType('GoogleSheets', GoogleSheetsConverter);
|
|
|
6971
7196
|
|
|
6972
7197
|
|
|
6973
7198
|
|
|
6974
|
-
const { merge: GoogleSheetsConnector_merge, pick: GoogleSheetsConnector_pick } = (external_highcharts_src_js_default_default());
|
|
7199
|
+
const { merge: GoogleSheetsConnector_merge, pick: GoogleSheetsConnector_pick, defined: GoogleSheetsConnector_defined } = (external_highcharts_src_js_default_default());
|
|
6975
7200
|
/* *
|
|
6976
7201
|
*
|
|
6977
7202
|
* Functions
|
|
@@ -7008,12 +7233,16 @@ class GoogleSheetsConnector extends Connectors_DataConnector {
|
|
|
7008
7233
|
*
|
|
7009
7234
|
* @param {GoogleSheetsConnector.UserOptions} [options]
|
|
7010
7235
|
* Options for the connector and converter.
|
|
7236
|
+
*
|
|
7237
|
+
* @param {Array<DataTableOptions>} [dataTables]
|
|
7238
|
+
* Multiple connector data tables options.
|
|
7239
|
+
*
|
|
7011
7240
|
*/
|
|
7012
|
-
constructor(options) {
|
|
7241
|
+
constructor(options, dataTables) {
|
|
7013
7242
|
const mergedOptions = GoogleSheetsConnector_merge(GoogleSheetsConnector.defaultOptions, options);
|
|
7014
|
-
super(mergedOptions);
|
|
7015
|
-
this.
|
|
7016
|
-
|
|
7243
|
+
super(mergedOptions, dataTables);
|
|
7244
|
+
this.options = GoogleSheetsConnector_defined(dataTables) ?
|
|
7245
|
+
GoogleSheetsConnector_merge(mergedOptions, { dataTables }) : mergedOptions;
|
|
7017
7246
|
}
|
|
7018
7247
|
/* *
|
|
7019
7248
|
*
|
|
@@ -7030,36 +7259,44 @@ class GoogleSheetsConnector extends Connectors_DataConnector {
|
|
|
7030
7259
|
* Same connector instance with modified table.
|
|
7031
7260
|
*/
|
|
7032
7261
|
load(eventDetail) {
|
|
7033
|
-
const connector = this,
|
|
7262
|
+
const connector = this, tables = connector.dataTables, { dataModifier, dataRefreshRate, enablePolling, googleAPIKey, googleSpreadsheetKey, dataTables } = connector.options, url = GoogleSheetsConnector.buildFetchURL(googleAPIKey, googleSpreadsheetKey, connector.options);
|
|
7034
7263
|
connector.emit({
|
|
7035
7264
|
type: 'load',
|
|
7036
7265
|
detail: eventDetail,
|
|
7037
|
-
|
|
7266
|
+
tables,
|
|
7038
7267
|
url
|
|
7039
7268
|
});
|
|
7040
7269
|
if (!URL.canParse(url)) {
|
|
7041
7270
|
throw new Error('Invalid URL: ' + url);
|
|
7042
7271
|
}
|
|
7043
|
-
return fetch(url)
|
|
7272
|
+
return fetch(url, { signal: connector?.pollingController?.signal })
|
|
7044
7273
|
.then((response) => (response.json()))
|
|
7045
7274
|
.then((json) => {
|
|
7046
7275
|
if (isGoogleError(json)) {
|
|
7047
7276
|
throw new Error(json.error.message);
|
|
7048
7277
|
}
|
|
7049
|
-
|
|
7050
|
-
|
|
7051
|
-
|
|
7278
|
+
this.initConverters(json, (key) => {
|
|
7279
|
+
const options = this.options;
|
|
7280
|
+
const tableOptions = dataTables?.find((dataTable) => dataTable.key === key);
|
|
7281
|
+
// Takes over the connector default options.
|
|
7282
|
+
const mergedTableOptions = {
|
|
7283
|
+
dataTableKey: key,
|
|
7284
|
+
firstRowAsNames: tableOptions?.firstRowAsNames ??
|
|
7285
|
+
options.firstRowAsNames,
|
|
7286
|
+
beforeParse: tableOptions?.beforeParse ??
|
|
7287
|
+
options.beforeParse
|
|
7288
|
+
};
|
|
7289
|
+
return new Converters_GoogleSheetsConverter(GoogleSheetsConnector_merge(this.options, mergedTableOptions));
|
|
7290
|
+
}, (converter, data) => {
|
|
7291
|
+
converter.parse({ json: data });
|
|
7052
7292
|
});
|
|
7053
|
-
|
|
7054
|
-
table.deleteColumns();
|
|
7055
|
-
table.setColumns(converter.getTable().getColumns());
|
|
7056
|
-
return connector.setModifierOptions(dataModifier);
|
|
7293
|
+
return connector.setModifierOptions(dataModifier, dataTables);
|
|
7057
7294
|
})
|
|
7058
7295
|
.then(() => {
|
|
7059
7296
|
connector.emit({
|
|
7060
7297
|
type: 'afterLoad',
|
|
7061
7298
|
detail: eventDetail,
|
|
7062
|
-
|
|
7299
|
+
tables,
|
|
7063
7300
|
url
|
|
7064
7301
|
});
|
|
7065
7302
|
// Polling
|
|
@@ -7072,7 +7309,7 @@ class GoogleSheetsConnector extends Connectors_DataConnector {
|
|
|
7072
7309
|
type: 'loadError',
|
|
7073
7310
|
detail: eventDetail,
|
|
7074
7311
|
error,
|
|
7075
|
-
|
|
7312
|
+
tables
|
|
7076
7313
|
});
|
|
7077
7314
|
throw error;
|
|
7078
7315
|
});
|
|
@@ -7345,7 +7582,7 @@ class HTMLTableConverter extends Converters_DataConverter {
|
|
|
7345
7582
|
getTableHeaderHTML(topheaders = [], subheaders = [], options = this.options) {
|
|
7346
7583
|
const { useMultiLevelHeaders, useRowspanHeaders } = options;
|
|
7347
7584
|
let html = '<thead>', i = 0, len = subheaders && subheaders.length, next, cur, curColspan = 0, rowspan;
|
|
7348
|
-
// Clean up multiple table headers.
|
|
7585
|
+
// Clean up multiple table headers. Exporting.getDataRows() returns two
|
|
7349
7586
|
// levels of headers when using multilevel, not merged. We need to
|
|
7350
7587
|
// merge identical headers, remove redundant headers, and keep it
|
|
7351
7588
|
// all marked up nicely.
|
|
@@ -7373,7 +7610,7 @@ class HTMLTableConverter extends Converters_DataConverter {
|
|
|
7373
7610
|
if (cur === subheaders[i]) {
|
|
7374
7611
|
if (useRowspanHeaders) {
|
|
7375
7612
|
rowspan = 2;
|
|
7376
|
-
|
|
7613
|
+
subheaders.splice(i, 1);
|
|
7377
7614
|
}
|
|
7378
7615
|
else {
|
|
7379
7616
|
rowspan = 1;
|
|
@@ -7593,7 +7830,7 @@ class HTMLTableConnector extends Connectors_DataConnector {
|
|
|
7593
7830
|
connector.emit({
|
|
7594
7831
|
type: 'load',
|
|
7595
7832
|
detail: eventDetail,
|
|
7596
|
-
table,
|
|
7833
|
+
tables: { table },
|
|
7597
7834
|
tableElement: connector.tableElement
|
|
7598
7835
|
});
|
|
7599
7836
|
let tableElement;
|
|
@@ -7612,7 +7849,7 @@ class HTMLTableConnector extends Connectors_DataConnector {
|
|
|
7612
7849
|
type: 'loadError',
|
|
7613
7850
|
detail: eventDetail,
|
|
7614
7851
|
error,
|
|
7615
|
-
table
|
|
7852
|
+
tables: { table }
|
|
7616
7853
|
});
|
|
7617
7854
|
return Promise.reject(new Error(error));
|
|
7618
7855
|
}
|
|
@@ -7626,7 +7863,7 @@ class HTMLTableConnector extends Connectors_DataConnector {
|
|
|
7626
7863
|
connector.emit({
|
|
7627
7864
|
type: 'afterLoad',
|
|
7628
7865
|
detail: eventDetail,
|
|
7629
|
-
table,
|
|
7866
|
+
tables: { table },
|
|
7630
7867
|
tableElement: connector.tableElement
|
|
7631
7868
|
});
|
|
7632
7869
|
return connector;
|
|
@@ -8572,6 +8809,17 @@ class SortModifier extends Modifiers_DataModifier {
|
|
|
8572
8809
|
(b || 0) > (a || 0) ? 1 :
|
|
8573
8810
|
0);
|
|
8574
8811
|
}
|
|
8812
|
+
static compareFactory(direction, customCompare) {
|
|
8813
|
+
if (customCompare) {
|
|
8814
|
+
if (direction === 'desc') {
|
|
8815
|
+
return (a, b) => -customCompare(a, b);
|
|
8816
|
+
}
|
|
8817
|
+
return customCompare;
|
|
8818
|
+
}
|
|
8819
|
+
return (direction === 'asc' ?
|
|
8820
|
+
SortModifier.ascending :
|
|
8821
|
+
SortModifier.descending);
|
|
8822
|
+
}
|
|
8575
8823
|
/* *
|
|
8576
8824
|
*
|
|
8577
8825
|
* Constructor
|
|
@@ -8745,9 +8993,7 @@ class SortModifier extends Modifiers_DataModifier {
|
|
|
8745
8993
|
modifyTable(table, eventDetail) {
|
|
8746
8994
|
const modifier = this;
|
|
8747
8995
|
modifier.emit({ type: 'modify', detail: eventDetail, table });
|
|
8748
|
-
const columnNames = table.getColumnNames(), rowCount = table.getRowCount(), rowReferences = this.getRowReferences(table), { direction, orderByColumn, orderInColumn } = modifier.options, compare = (direction
|
|
8749
|
-
SortModifier.ascending :
|
|
8750
|
-
SortModifier.descending), orderByColumnIndex = columnNames.indexOf(orderByColumn), modified = table.modified;
|
|
8996
|
+
const columnNames = table.getColumnNames(), rowCount = table.getRowCount(), rowReferences = this.getRowReferences(table), { direction, orderByColumn, orderInColumn, compare: customCompare } = modifier.options, compare = SortModifier.compareFactory(direction, customCompare), orderByColumnIndex = columnNames.indexOf(orderByColumn), modified = table.modified;
|
|
8751
8997
|
if (orderByColumnIndex !== -1) {
|
|
8752
8998
|
rowReferences.sort((a, b) => compare(a.row[orderByColumnIndex], b.row[orderByColumnIndex]));
|
|
8753
8999
|
}
|
|
@@ -8795,6 +9041,176 @@ Modifiers_DataModifier.registerType('Sort', SortModifier);
|
|
|
8795
9041
|
* */
|
|
8796
9042
|
/* harmony default export */ const Modifiers_SortModifier = ((/* unused pure expression or super */ null && (SortModifier)));
|
|
8797
9043
|
|
|
9044
|
+
;// ./code/es-modules/Data/Modifiers/FilterModifier.js
|
|
9045
|
+
/* *
|
|
9046
|
+
*
|
|
9047
|
+
* (c) 2009-2025 Highsoft AS
|
|
9048
|
+
*
|
|
9049
|
+
* License: www.highcharts.com/license
|
|
9050
|
+
*
|
|
9051
|
+
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
|
|
9052
|
+
*
|
|
9053
|
+
* Authors:
|
|
9054
|
+
* - Dawid Dragula
|
|
9055
|
+
*
|
|
9056
|
+
* */
|
|
9057
|
+
|
|
9058
|
+
|
|
9059
|
+
|
|
9060
|
+
const { isFunction: FilterModifier_isFunction, merge: FilterModifier_merge } = (external_highcharts_src_js_default_default());
|
|
9061
|
+
/* *
|
|
9062
|
+
*
|
|
9063
|
+
* Class
|
|
9064
|
+
*
|
|
9065
|
+
* */
|
|
9066
|
+
/**
|
|
9067
|
+
* Filters out table rows matching a given condition.
|
|
9068
|
+
*/
|
|
9069
|
+
class FilterModifier extends Modifiers_DataModifier {
|
|
9070
|
+
/* *
|
|
9071
|
+
*
|
|
9072
|
+
* Static Functions
|
|
9073
|
+
*
|
|
9074
|
+
* */
|
|
9075
|
+
/**
|
|
9076
|
+
* Compiles a filter condition into a callback function.
|
|
9077
|
+
*
|
|
9078
|
+
* @param {FilterCondition} condition
|
|
9079
|
+
* Condition to compile.
|
|
9080
|
+
*/
|
|
9081
|
+
static compile(condition) {
|
|
9082
|
+
if (FilterModifier_isFunction(condition)) {
|
|
9083
|
+
return condition;
|
|
9084
|
+
}
|
|
9085
|
+
const op = condition.operator;
|
|
9086
|
+
switch (op) {
|
|
9087
|
+
case 'and': {
|
|
9088
|
+
const subs = condition.conditions.map((c) => this.compile(c));
|
|
9089
|
+
return (row, table, i) => subs.every((cond) => cond(row, table, i));
|
|
9090
|
+
}
|
|
9091
|
+
case 'or': {
|
|
9092
|
+
const subs = condition.conditions.map((c) => this.compile(c));
|
|
9093
|
+
return (row, table, i) => subs.some((cond) => cond(row, table, i));
|
|
9094
|
+
}
|
|
9095
|
+
case 'not': {
|
|
9096
|
+
const sub = this.compile(condition.condition);
|
|
9097
|
+
return (row, table, i) => !sub(row, table, i);
|
|
9098
|
+
}
|
|
9099
|
+
}
|
|
9100
|
+
const { columnName: col, value } = condition;
|
|
9101
|
+
switch (op) {
|
|
9102
|
+
case '==':
|
|
9103
|
+
// eslint-disable-next-line eqeqeq
|
|
9104
|
+
return (row) => row[col] == value;
|
|
9105
|
+
case '===':
|
|
9106
|
+
return (row) => row[col] === value;
|
|
9107
|
+
case '!=':
|
|
9108
|
+
// eslint-disable-next-line eqeqeq
|
|
9109
|
+
return (row) => row[col] != value;
|
|
9110
|
+
case '!==':
|
|
9111
|
+
return (row) => row[col] !== value;
|
|
9112
|
+
case '>':
|
|
9113
|
+
return (row) => (row[col] || 0) > (value || 0);
|
|
9114
|
+
case '>=':
|
|
9115
|
+
return (row) => (row[col] || 0) >= (value || 0);
|
|
9116
|
+
case '<':
|
|
9117
|
+
return (row) => (row[col] || 0) < (value || 0);
|
|
9118
|
+
case '<=':
|
|
9119
|
+
return (row) => (row[col] || 0) <= (value || 0);
|
|
9120
|
+
}
|
|
9121
|
+
const { ignoreCase } = condition;
|
|
9122
|
+
const str = (val) => {
|
|
9123
|
+
const s = '' + val;
|
|
9124
|
+
return (ignoreCase ?? true) ? s.toLowerCase() : s;
|
|
9125
|
+
};
|
|
9126
|
+
switch (op) {
|
|
9127
|
+
case 'contains':
|
|
9128
|
+
return (row) => str(row[col]).includes(str(value));
|
|
9129
|
+
default:
|
|
9130
|
+
return (row) => str(row[col])[op](str(value));
|
|
9131
|
+
}
|
|
9132
|
+
}
|
|
9133
|
+
/* *
|
|
9134
|
+
*
|
|
9135
|
+
* Constructor
|
|
9136
|
+
*
|
|
9137
|
+
* */
|
|
9138
|
+
/**
|
|
9139
|
+
* Constructs an instance of the filter modifier.
|
|
9140
|
+
*
|
|
9141
|
+
* @param {Partial<FilterModifier.Options>} [options]
|
|
9142
|
+
* Options to configure the filter modifier.
|
|
9143
|
+
*/
|
|
9144
|
+
constructor(options) {
|
|
9145
|
+
super();
|
|
9146
|
+
this.options = FilterModifier_merge(FilterModifier.defaultOptions, options);
|
|
9147
|
+
}
|
|
9148
|
+
/* *
|
|
9149
|
+
*
|
|
9150
|
+
* Functions
|
|
9151
|
+
*
|
|
9152
|
+
* */
|
|
9153
|
+
/**
|
|
9154
|
+
* Replaces table rows with filtered rows.
|
|
9155
|
+
*
|
|
9156
|
+
* @param {DataTable} table
|
|
9157
|
+
* Table to modify.
|
|
9158
|
+
*
|
|
9159
|
+
* @param {DataEvent.Detail} [eventDetail]
|
|
9160
|
+
* Custom information for pending events.
|
|
9161
|
+
*
|
|
9162
|
+
* @return {DataTable}
|
|
9163
|
+
* Table with `modified` property as a reference.
|
|
9164
|
+
*/
|
|
9165
|
+
modifyTable(table, eventDetail) {
|
|
9166
|
+
const modifier = this;
|
|
9167
|
+
modifier.emit({ type: 'modify', detail: eventDetail, table });
|
|
9168
|
+
const { condition } = modifier.options;
|
|
9169
|
+
if (!condition) {
|
|
9170
|
+
// If no condition is set, return the unmodified table.
|
|
9171
|
+
return table;
|
|
9172
|
+
}
|
|
9173
|
+
const matchRow = FilterModifier.compile(condition);
|
|
9174
|
+
// This line should be investigated further when reworking Data Layer.
|
|
9175
|
+
const modified = table.modified;
|
|
9176
|
+
const rows = [];
|
|
9177
|
+
const indexes = [];
|
|
9178
|
+
for (let i = 0, iEnd = table.getRowCount(); i < iEnd; ++i) {
|
|
9179
|
+
const row = table.getRowObject(i);
|
|
9180
|
+
if (!row) {
|
|
9181
|
+
continue;
|
|
9182
|
+
}
|
|
9183
|
+
if (matchRow(row, table, i)) {
|
|
9184
|
+
rows.push(row);
|
|
9185
|
+
indexes.push(modified.getOriginalRowIndex(i));
|
|
9186
|
+
}
|
|
9187
|
+
}
|
|
9188
|
+
modified.deleteRows();
|
|
9189
|
+
modified.setRows(rows);
|
|
9190
|
+
modified.setOriginalRowIndexes(indexes);
|
|
9191
|
+
modifier.emit({ type: 'afterModify', detail: eventDetail, table });
|
|
9192
|
+
return table;
|
|
9193
|
+
}
|
|
9194
|
+
}
|
|
9195
|
+
/* *
|
|
9196
|
+
*
|
|
9197
|
+
* Static Properties
|
|
9198
|
+
*
|
|
9199
|
+
* */
|
|
9200
|
+
/**
|
|
9201
|
+
* Default options for the filter modifier.
|
|
9202
|
+
*/
|
|
9203
|
+
FilterModifier.defaultOptions = {
|
|
9204
|
+
type: 'Filter'
|
|
9205
|
+
};
|
|
9206
|
+
Modifiers_DataModifier.registerType('Filter', FilterModifier);
|
|
9207
|
+
/* *
|
|
9208
|
+
*
|
|
9209
|
+
* Default Export
|
|
9210
|
+
*
|
|
9211
|
+
* */
|
|
9212
|
+
/* harmony default export */ const Modifiers_FilterModifier = ((/* unused pure expression or super */ null && (FilterModifier)));
|
|
9213
|
+
|
|
8798
9214
|
;// ./code/es-modules/masters/modules/data-tools.src.js
|
|
8799
9215
|
|
|
8800
9216
|
|
|
@@ -8815,6 +9231,7 @@ Modifiers_DataModifier.registerType('Sort', SortModifier);
|
|
|
8815
9231
|
|
|
8816
9232
|
|
|
8817
9233
|
|
|
9234
|
+
|
|
8818
9235
|
const G = (external_highcharts_src_js_default_default());
|
|
8819
9236
|
G.DataConnector = G.DataConnector || Connectors_DataConnector;
|
|
8820
9237
|
G.DataConverter = G.DataConverter || Converters_DataConverter;
|