ps-toolkit-ui 0.0.209 → 0.0.210
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/bundles/ps-toolkit-ui.umd.js +20 -2
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/classes/chart.class.js +140 -0
- package/esm2015/lib/components/chart/chart.component.js +17 -0
- package/esm2015/lib/ps-toolkit-ui.module.js +4 -3
- package/esm2015/ps-toolkit-ui.js +2 -1
- package/fesm2015/ps-toolkit-ui.js +19 -3
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/lib/classes/chart.class.d.ts +11 -0
- package/lib/components/chart/chart.component.d.ts +5 -0
- package/package.json +1 -1
- package/ps-toolkit-ui.d.ts +1 -0
- package/ps-toolkit-ui.metadata.json +1 -1
- package/src/assets/plugins/highcharts/code/css/annotations/popup.css +276 -0
- package/src/assets/plugins/highcharts/code/css/annotations/popup.scss +289 -0
- package/src/assets/plugins/highcharts/code/css/highcharts.css +1013 -0
- package/src/assets/plugins/highcharts/code/css/highcharts.scss +896 -0
- package/src/assets/plugins/highcharts/code/css/stocktools/gui.css +271 -0
- package/src/assets/plugins/highcharts/code/css/stocktools/gui.scss +271 -0
- package/src/assets/plugins/highcharts/code/css/themes/dark-unica.css +1074 -0
- package/src/assets/plugins/highcharts/code/css/themes/dark-unica.scss +122 -0
- package/src/assets/plugins/highcharts/code/css/themes/grid-light.css +1027 -0
- package/src/assets/plugins/highcharts/code/css/themes/grid-light.scss +33 -0
- package/src/assets/plugins/highcharts/code/css/themes/sand-signika.css +1043 -0
- package/src/assets/plugins/highcharts/code/css/themes/sand-signika.scss +74 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/A11yI18n.js +299 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/Accessibility.js +401 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/AccessibilityComponent.js +153 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/Components/AnnotationsA11y.js +160 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/Components/ContainerComponent.js +159 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/Components/InfoRegionsComponent.js +543 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/Components/LegendComponent.js +478 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/Components/MenuComponent.js +451 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/Components/RangeSelectorComponent.js +506 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/Components/SeriesComponent/ForcedMarkers.js +217 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/Components/SeriesComponent/NewDataAnnouncer.js +324 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/Components/SeriesComponent/SeriesComponent.js +148 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/Components/SeriesComponent/SeriesDescriber.js +390 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/Components/SeriesComponent/SeriesKeyboardNavigation.js +650 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/Components/ZoomComponent.js +375 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/FocusBorder.js +302 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/HighContrastMode.js +96 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/HighContrastTheme.js +221 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/KeyboardNavigation.js +449 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/KeyboardNavigationHandler.js +128 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/Options/DeprecatedOptions.js +250 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/Options/LangOptions.js +339 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/Options/Options.js +831 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/ProxyElement.js +218 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/ProxyProvider.js +302 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/Utils/Announcer.js +91 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/Utils/ChartUtilities.js +294 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/Utils/DOMElementProvider.js +62 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/Utils/EventProvider.js +58 -0
- package/src/assets/plugins/highcharts/code/es-modules/Accessibility/Utils/HTMLUtilities.js +305 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Animation/AnimationUtilities.js +200 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Animation/Fx.js +387 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/Axis.js +3225 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/Axis3D.js +612 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/AxisDefaults.js +2935 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/BrokenAxis.js +601 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/Color/ColorAxis.js +668 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/Color/ColorAxisComposition.js +287 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/Color/ColorAxisDefaults.js +434 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/DateTimeAxis.js +196 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/GridAxis.js +1046 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/LogarithmicAxis.js +202 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/NavigatorAxis.js +159 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/OrdinalAxis.js +992 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBand.js +873 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBandAxis.js +287 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/RadialAxis.js +954 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/ScrollbarAxis.js +182 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/SolidGaugeAxis.js +127 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/StackingAxis.js +216 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/Tick.js +723 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/Tick3D.js +68 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/TreeGridAxis.js +720 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/TreeGridTick.js +306 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/WaterfallAxis.js +149 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Axis/ZAxis.js +156 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Chart/Chart.js +2909 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Chart/Chart3D.js +1695 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Chart/ChartDefaults.js +1053 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Chart/ChartNavigationComposition.js +92 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Chart/GanttChart.js +177 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Chart/MapChart.js +179 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Chart/StockChart.js +644 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Color/Color.js +419 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Color/Palettes.js +22 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/DefaultOptions.js +2743 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/FormatUtilities.js +246 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Foundation.js +61 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Geometry/CircleUtilities.js +386 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Geometry/GeometryUtilities.js +83 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Globals.js +131 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/HttpUtilities.js +195 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Legend/Legend.js +1284 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Legend/LegendSymbol.js +109 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/MSPointer.js +170 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Navigator.js +1958 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Pointer.js +1518 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Renderer/HTML/AST.js +475 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Renderer/HTML/HTMLElement.js +261 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Renderer/HTML/HTMLRenderer.js +272 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Renderer/RendererRegistry.js +77 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Renderer/RendererUtilities.js +159 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Renderer/SVG/SVGElement.js +2176 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Renderer/SVG/SVGElement3D.js +160 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Renderer/SVG/SVGLabel.js +408 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Renderer/SVG/SVGRenderer.js +1900 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Renderer/SVG/SVGRenderer3D.js +842 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Renderer/SVG/Symbols.js +197 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Renderer/SVG/TextBuilder.js +452 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Responsive.js +334 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Scrollbar.js +658 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/ScrollbarDefaults.js +218 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Series/DataLabel.js +568 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Series/Point.js +1307 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Series/Series.js +3718 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Series/Series3D.js +126 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Series/SeriesDefaults.js +2293 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Series/SeriesRegistry.js +127 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Time.js +741 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Tooltip.js +1378 -0
- package/src/assets/plugins/highcharts/code/es-modules/Core/Utilities.js +1967 -0
- package/src/assets/plugins/highcharts/code/es-modules/Data/DataConverter.js +483 -0
- package/src/assets/plugins/highcharts/code/es-modules/Data/DataPromise.js +252 -0
- package/src/assets/plugins/highcharts/code/es-modules/Data/DataSeriesConverter.js +207 -0
- package/src/assets/plugins/highcharts/code/es-modules/Data/DataTable.js +1205 -0
- package/src/assets/plugins/highcharts/code/es-modules/Data/Modifiers/ChainModifier.js +299 -0
- package/src/assets/plugins/highcharts/code/es-modules/Data/Modifiers/DataModifier.js +303 -0
- package/src/assets/plugins/highcharts/code/es-modules/Data/Modifiers/GroupModifier.js +144 -0
- package/src/assets/plugins/highcharts/code/es-modules/Data/Modifiers/InvertModifier.js +254 -0
- package/src/assets/plugins/highcharts/code/es-modules/Data/Modifiers/RangeModifier.js +143 -0
- package/src/assets/plugins/highcharts/code/es-modules/Data/Modifiers/SeriesPointsModifier.js +110 -0
- package/src/assets/plugins/highcharts/code/es-modules/Data/Modifiers/SortModifier.js +249 -0
- package/src/assets/plugins/highcharts/code/es-modules/Data/Parsers/CSVParser.js +400 -0
- package/src/assets/plugins/highcharts/code/es-modules/Data/Parsers/DataParser.js +101 -0
- package/src/assets/plugins/highcharts/code/es-modules/Data/Parsers/GoogleSheetsParser.js +223 -0
- package/src/assets/plugins/highcharts/code/es-modules/Data/Parsers/HTMLTableParser.js +213 -0
- package/src/assets/plugins/highcharts/code/es-modules/Data/Stores/CSVStore.js +317 -0
- package/src/assets/plugins/highcharts/code/es-modules/Data/Stores/DataStore.js +276 -0
- package/src/assets/plugins/highcharts/code/es-modules/Data/Stores/GoogleSheetsStore.js +169 -0
- package/src/assets/plugins/highcharts/code/es-modules/Data/Stores/HTMLTableStore.js +353 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/Annotations.js +1442 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/ControlPoint.js +141 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/Controllables/ControllableCircle.js +117 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/Controllables/ControllableEllipse.js +199 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/Controllables/ControllableImage.js +111 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/Controllables/ControllableLabel.js +387 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/Controllables/ControllablePath.js +181 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/Controllables/ControllableRect.js +121 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/Mixins/ControllableMixin.js +378 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/Mixins/EventEmitterMixin.js +221 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/Mixins/MarkerMixin.js +179 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/MockPoint.js +428 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/NavigationBindings.js +1212 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/Popup.js +1123 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/Types/BasicAnnotation.js +237 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/Types/CrookedLine.js +185 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/Types/ElliottWave.js +95 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/Types/Fibonacci.js +205 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/Types/FibonacciTimeZones.js +219 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/Types/InfinityLine.js +161 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/Types/Measure.js +791 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/Types/Pitchfork.js +194 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/Types/TimeCycles.js +211 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/Types/Tunnel.js +211 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Annotations/Types/VerticalLine.js +156 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/ArrowSymbols.js +166 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Boost/Boost.js +34 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Boost/BoostAttach.js +150 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Boost/BoostInit.js +318 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Boost/BoostOptions.js +219 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Boost/BoostOverrides.js +386 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Boost/BoostUtils.js +255 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Boost/BoostableMap.js +18 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Boost/Boostables.js +25 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Boost/NamedColors.js +162 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Boost/WGLRenderer.js +1188 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Boost/WGLShader.js +470 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Boost/WGLVBuffer.js +153 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/BoostCanvas.js +509 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/CurrentDateIndication.js +100 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Data.js +2037 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/DataGrouping.js +1134 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Debugger/Debugger.js +101 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Debugger/ErrorMessages.js +106 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/DownloadURL.js +106 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/DragPanes.js +512 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/DraggablePoints.js +2259 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Drilldown.js +1170 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/ExportData.js +997 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Exporting/Exporting.js +1260 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Exporting/ExportingDefaults.js +796 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Exporting/ExportingSymbols.js +73 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/FullScreen.js +240 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/GeoJSON.js +436 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/MarkerClusters.js +1436 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Math3D.js +245 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/NoDataToDisplay.js +189 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/OfflineExporting/OfflineExporting.js +617 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/OfflineExporting/OfflineExportingDefaults.js +58 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Oldie/Oldie.js +1182 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Oldie/VMLAxis3D.js +101 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Oldie/VMLRenderer3D.js +47 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/OldiePolyfills.js +167 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/OverlappingDataLabels.js +226 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Pane.js +404 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/ParallelCoordinates.js +464 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/PatternFill.js +580 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Polar.js +740 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/PriceIndication.js +292 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/RangeSelector.js +2175 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/ScrollablePlotArea.js +387 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/SeriesLabel.js +765 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Sonification/ChartSonify.js +724 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Sonification/Earcon.js +197 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Sonification/Instrument.js +606 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Sonification/MusicalFrequencies.js +122 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Sonification/Options.js +44 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Sonification/PointSonify.js +391 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Sonification/SeriesSonify.js +474 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Sonification/SignalHandler.js +122 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Sonification/Sonification.js +97 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Sonification/SonificationUtilities.js +150 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Sonification/Timeline.js +308 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Sonification/TimelineEvent.js +157 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Sonification/TimelinePath.js +311 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Stacking.js +516 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/StaticScale.js +76 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Themes/Avocado.js +67 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Themes/BrandDark.js +293 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Themes/BrandLight.js +259 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Themes/DarkBlue.js +279 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Themes/DarkGreen.js +279 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Themes/DarkUnica.js +249 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Themes/Gray.js +287 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Themes/Grid.js +140 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Themes/GridLight.js +111 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Themes/HighContrastDark.js +239 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Themes/HighContrastLight.js +69 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Themes/SandSignika.js +144 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Themes/Skies.js +131 -0
- package/src/assets/plugins/highcharts/code/es-modules/Extensions/Themes/Sunset.js +66 -0
- package/src/assets/plugins/highcharts/code/es-modules/Gantt/Connection.js +838 -0
- package/src/assets/plugins/highcharts/code/es-modules/Gantt/Pathfinder.js +818 -0
- package/src/assets/plugins/highcharts/code/es-modules/Gantt/PathfinderAlgorithms.js +657 -0
- package/src/assets/plugins/highcharts/code/es-modules/Gantt/Tree.js +110 -0
- package/src/assets/plugins/highcharts/code/es-modules/Maps/MapNavigation.js +278 -0
- package/src/assets/plugins/highcharts/code/es-modules/Maps/MapNavigationOptionsDefault.js +264 -0
- package/src/assets/plugins/highcharts/code/es-modules/Maps/MapPointer.js +83 -0
- package/src/assets/plugins/highcharts/code/es-modules/Maps/MapSymbols.js +80 -0
- package/src/assets/plugins/highcharts/code/es-modules/Maps/MapView.js +450 -0
- package/src/assets/plugins/highcharts/code/es-modules/Maps/MapViewOptionsDefault.js +97 -0
- package/src/assets/plugins/highcharts/code/es-modules/Maps/Projection.js +436 -0
- package/src/assets/plugins/highcharts/code/es-modules/Maps/ProjectionDefinition.js +9 -0
- package/src/assets/plugins/highcharts/code/es-modules/Maps/Projections/EqualEarth.js +42 -0
- package/src/assets/plugins/highcharts/code/es-modules/Maps/Projections/LambertConformalConic.js +52 -0
- package/src/assets/plugins/highcharts/code/es-modules/Maps/Projections/Miller.js +16 -0
- package/src/assets/plugins/highcharts/code/es-modules/Maps/Projections/Orthographic.js +26 -0
- package/src/assets/plugins/highcharts/code/es-modules/Maps/Projections/ProjectionRegistry.js +19 -0
- package/src/assets/plugins/highcharts/code/es-modules/Maps/Projections/WebMercator.js +24 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Area/AreaSeries.js +563 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Area3DSeries.js +70 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/AreaRange/AreaRangePoint.js +129 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/AreaRange/AreaRangeSeries.js +650 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/AreaSpline/AreaSplineSeries.js +203 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/AreaSplineRange/AreaSplineRangeSeries.js +199 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Bar/BarSeries.js +171 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Bellcurve/BellcurveSeries.js +241 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/BoxPlot/BoxPlotSeries.js +681 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Bubble/BubbleLegendComposition.js +279 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Bubble/BubbleLegendDefaults.js +266 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Bubble/BubbleLegendItem.js +462 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Bubble/BubblePoint.js +77 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Bubble/BubbleSeries.js +676 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Bullet/BulletPoint.js +62 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Bullet/BulletSeries.js +365 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Candlestick/CandlestickSeries.js +333 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/CenteredUtilities.js +128 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/ColorMapMixin.js +84 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Column/ColumnDataLabel.js +109 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Column/ColumnSeries.js +1171 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Column3D/Column3DComposition.js +508 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/ColumnPyramid/ColumnPyramidSeries.js +308 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/ColumnRange/ColumnRangePoint.js +62 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/ColumnRange/ColumnRangeSeries.js +308 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Cylinder/CylinderComposition.js +274 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Cylinder/CylinderPoint.js +60 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Cylinder/CylinderSeries.js +175 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/DataModifyComposition.js +539 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/DependencyWheel/DependencyWheelPoint.js +100 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/DependencyWheel/DependencyWheelSeries.js +368 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/DerivedComposition.js +137 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/DotPlot/DotPlotSeries.js +158 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/DrawPointComposition.js +111 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Dumbbell/DumbbellPoint.js +104 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Dumbbell/DumbbellSeries.js +464 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/ErrorBar/ErrorBarSeries.js +228 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Flags/FlagsPoint.js +74 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Flags/FlagsSeries.js +614 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Flags/FlagsSymbols.js +90 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Funnel/FunnelSeries.js +517 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Funnel3D/Funnel3DComposition.js +383 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Funnel3D/Funnel3DPoint.js +62 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Funnel3D/Funnel3DSeries.js +447 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Gantt/GanttPoint.js +109 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Gantt/GanttSeries.js +352 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Gauge/GaugePoint.js +66 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Gauge/GaugeSeries.js +568 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/HLC/HLCPoint.js +55 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/HLC/HLCSeries.js +378 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Heatmap/HeatmapPoint.js +144 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Heatmap/HeatmapSeries.js +946 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/HeikinAshi/HeikinAshiPoint.js +60 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/HeikinAshi/HeikinAshiSeries.js +278 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Histogram/HistogramSeries.js +253 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/HollowCandlestick/HollowCandlestickPoint.js +80 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/HollowCandlestick/HollowCandlestickSeries.js +368 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Item/ItemPoint.js +59 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Item/ItemSeries.js +505 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Line/LineSeries.js +541 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Lollipop/LollipopPoint.js +60 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Lollipop/LollipopSeries.js +209 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Map/MapPoint.js +136 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Map/MapSeries.js +1100 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/MapBubble/MapBubblePoint.js +73 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/MapBubble/MapBubbleSeries.js +283 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/MapLine/MapLineSeries.js +181 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/MapPoint/MapPointPoint.js +71 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/MapPoint/MapPointSeries.js +309 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Networkgraph/DraggableNodes.js +132 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Networkgraph/Integrations.js +348 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Networkgraph/Layouts.js +555 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Networkgraph/Networkgraph.js +1178 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Networkgraph/QuadTree.js +352 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/NodesComposition.js +229 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/OHLC/OHLCPoint.js +116 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/OHLC/OHLCSeries.js +254 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/OnSeriesComposition.js +168 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Organization/OrganizationPoint.js +71 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Organization/OrganizationSeries.js +594 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/PackedBubble/PackedBubbleComposition.js +172 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/PackedBubble/PackedBubblePoint.js +98 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/PackedBubble/PackedBubbleSeries.js +1284 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/ParetoSeries/ParetoSeries.js +195 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Pie/PieDataLabel.js +447 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Pie/PiePoint.js +270 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Pie/PieSeries.js +1074 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Pie3D/Pie3DComposition.js +27 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Pie3D/Pie3DPoint.js +72 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Pie3D/Pie3DSeries.js +200 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Polygon/PolygonSeries.js +195 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Pyramid/PyramidSeries.js +161 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Pyramid3D/Pyramid3DSeries.js +172 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Sankey/SankeyPoint.js +97 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Sankey/SankeySeries.js +1195 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Scatter/ScatterSeries.js +306 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Scatter3D/Scatter3DPoint.js +66 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Scatter3D/Scatter3DSeries.js +194 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/SolidGauge/SolidGaugeComposition.js +62 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/SolidGauge/SolidGaugeSeries.js +358 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Spline/SplineSeries.js +279 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Streamgraph/StreamgraphSeries.js +213 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Sunburst/SunburstPoint.js +115 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Sunburst/SunburstSeries.js +907 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Sunburst/SunburstUtilities.js +138 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Tilemap/TilemapComposition.js +61 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Tilemap/TilemapPoint.js +77 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Tilemap/TilemapSeries.js +368 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Tilemap/TilemapShapes.js +275 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Timeline/TimelinePoint.js +168 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Timeline/TimelineSeries.js +552 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/TreeUtilities.js +192 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Treemap/TreemapAlgorithmGroup.js +93 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Treemap/TreemapComposition.js +58 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Treemap/TreemapPoint.js +107 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Treemap/TreemapSeries.js +1473 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Treemap/TreemapUtilities.js +65 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/VariablePie/VariablePieSeries.js +446 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Variwide/VariwideComposition.js +78 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Variwide/VariwidePoint.js +63 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Variwide/VariwideSeries.js +317 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Vector/VectorSeries.js +362 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Venn/VennPoint.js +76 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Venn/VennSeries.js +633 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Venn/VennUtils.js +607 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Waterfall/WaterfallPoint.js +68 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Waterfall/WaterfallSeries.js +743 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Windbarb/WindbarbPoint.js +64 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Windbarb/WindbarbSeries.js +462 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Wordcloud/WordcloudPoint.js +66 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Wordcloud/WordcloudSeries.js +503 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/Wordcloud/WordcloudUtils.js +718 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/XRange/XRangeComposition.js +49 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/XRange/XRangePoint.js +168 -0
- package/src/assets/plugins/highcharts/code/es-modules/Series/XRange/XRangeSeries.js +608 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/ABands/ABandsIndicator.js +243 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/AD/ADIndicator.js +160 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/AO/AOIndicator.js +212 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/APO/APOIndicator.js +167 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/ATR/ATRIndicator.js +162 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/Aroon/AroonIndicator.js +197 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/AroonOscillator/AroonOscillatorIndicator.js +141 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/ArrayUtilities.js +47 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/BB/BBIndicator.js +241 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/CCI/CCIIndicator.js +154 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/CMF/CMFIndicator.js +243 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/CMO/CMOIndicator.js +166 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/Chaikin/ChaikinIndicator.js +187 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/DEMA/DEMAIndicator.js +149 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/DMI/DMIIndicator.js +276 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/DPO/DPOIndicator.js +163 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/DisparityIndex/DisparityIndexIndicator.js +179 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/EMA/EMAIndicator.js +154 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/IKH/IKHIndicator.js +682 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/KeltnerChannels/KeltnerChannelsIndicator.js +217 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/Klinger/KlingerIndicator.js +270 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/LinearRegression/LinearRegression.js +282 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/LinearRegressionAngle/LinearRegressionAngle.js +119 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/LinearRegressionIntercept/LinearRegressionIntercept.js +104 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/LinearRegressionSlopes/LinearRegressionSlopes.js +104 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/MACD/MACDIndicator.js +402 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/MFI/MFIIndicator.js +198 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/Momentum/MomentumIndicator.js +121 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/MultipleLinesComposition.js +294 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/NATR/NATRIndicator.js +111 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/OBV/OBVIndicator.js +170 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/PC/PCIndicator.js +197 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/PPO/PPOIndicator.js +164 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/PSAR/PSARIndicator.js +280 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/PivotPoints/PivotPointsIndicator.js +310 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/PivotPoints/PivotPointsPoint.js +78 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/PriceEnvelopes/PriceEnvelopesIndicator.js +240 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/ROC/ROCIndicator.js +176 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/RSI/RSIIndicator.js +171 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/SMA/SMAComposition.js +12 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/SMA/SMAIndicator.js +367 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/SlowStochastic/SlowStochasticIndicator.js +134 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/Stochastic/StochasticIndicator.js +208 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/Supertrend/SupertrendIndicator.js +485 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/TEMA/TEMAIndicator.js +208 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/TRIX/TRIXIndicator.js +98 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/TrendLine/TrendLineIndicator.js +148 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/VBP/VBPIndicator.js +556 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/VBP/VBPPoint.js +49 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/VWAP/VWAPIndicator.js +193 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/WMA/WMAIndicator.js +153 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/WilliamsR/WilliamsRIndicator.js +135 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/Indicators/Zigzag/ZigzagIndicator.js +228 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/StockToolsBindings.js +2009 -0
- package/src/assets/plugins/highcharts/code/es-modules/Stock/StockToolsGui.js +1816 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/highcharts-3d.src.js +28 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/highcharts-more.src.js +28 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/highcharts.src.js +147 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/accessibility.src.js +28 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/annotations-advanced.src.js +26 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/annotations.src.js +15 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/arrow-symbols.src.js +13 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/boost-canvas.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/boost.src.js +15 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/broken-axis.src.js +15 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/bullet.src.js +13 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/coloraxis.src.js +17 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/current-date-indicator.src.js +13 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/cylinder.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/data.src.js +23 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/datagrouping.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/debugger.src.js +16 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/dependency-wheel.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/dotplot.src.js +13 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/drag-panes.src.js +15 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/draggable-points.src.js +11 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/drilldown.src.js +13 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/dumbbell.src.js +11 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/export-data.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/exporting.src.js +22 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/full-screen.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/funnel.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/funnel3d.src.js +18 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/gantt.src.js +26 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/grid-axis.src.js +17 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/heatmap.src.js +16 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/heikinashi.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/histogram-bellcurve.src.js +13 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/hollowcandlestick.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/item-series.src.js +13 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/lollipop.src.js +11 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/marker-clusters.src.js +13 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/networkgraph.src.js +13 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/no-data-to-display.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/offline-exporting.src.js +20 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/oldie-polyfills.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/oldie.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/organization.src.js +13 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/overlapping-datalabels.src.js +11 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/parallel-coordinates.src.js +13 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/pareto.src.js +13 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/pathfinder.src.js +13 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/pattern-fill.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/price-indicator.src.js +15 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/pyramid3d.src.js +16 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/sankey.src.js +13 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/series-label.src.js +11 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/solid-gauge.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/sonification.src.js +44 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/static-scale.src.js +13 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/stock-tools.src.js +16 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/stock.src.js +33 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/streamgraph.src.js +13 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/sunburst.src.js +13 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/tilemap.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/timeline.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/treegrid.src.js +17 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/treemap.src.js +12 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/variable-pie.src.js +13 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/variwide.src.js +13 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/vector.src.js +13 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/venn.src.js +12 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/windbarb.src.js +13 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/wordcloud.src.js +12 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/modules/xrange.src.js +13 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/themes/avocado.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/themes/brand-dark.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/themes/brand-light.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/themes/dark-blue.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/themes/dark-green.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/themes/dark-unica.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/themes/gray.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/themes/grid-light.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/themes/grid.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/themes/high-contrast-dark.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/themes/high-contrast-light.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/themes/sand-signika.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/themes/skies.src.js +14 -0
- package/src/assets/plugins/highcharts/code/es-modules/masters/themes/sunset.src.js +14 -0
- package/src/assets/plugins/highcharts/code/highcharts-3d.js +105 -0
- package/src/assets/plugins/highcharts/code/highcharts-3d.js.map +1 -0
- package/src/assets/plugins/highcharts/code/highcharts-3d.src.js +5439 -0
- package/src/assets/plugins/highcharts/code/highcharts-more.js +201 -0
- package/src/assets/plugins/highcharts/code/highcharts-more.js.map +1 -0
- package/src/assets/plugins/highcharts/code/highcharts-more.src.js +12004 -0
- package/src/assets/plugins/highcharts/code/highcharts.js +593 -0
- package/src/assets/plugins/highcharts/code/highcharts.js.map +1 -0
- package/src/assets/plugins/highcharts/code/highcharts.src.js +47519 -0
- package/src/assets/plugins/highcharts/code/lib/canvg.js +8 -0
- package/src/assets/plugins/highcharts/code/lib/jspdf.js +283 -0
- package/src/assets/plugins/highcharts/code/lib/jspdf.src.js +21627 -0
- package/src/assets/plugins/highcharts/code/lib/svg2pdf.js +38 -0
- package/src/assets/plugins/highcharts/code/lib/svg2pdf.src.js +4390 -0
- package/src/assets/plugins/highcharts/code/modules/accessibility.js +256 -0
- package/src/assets/plugins/highcharts/code/modules/accessibility.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/accessibility.src.js +11868 -0
- package/src/assets/plugins/highcharts/code/modules/annotations-advanced.js +201 -0
- package/src/assets/plugins/highcharts/code/modules/annotations-advanced.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/annotations-advanced.src.js +9616 -0
- package/src/assets/plugins/highcharts/code/modules/annotations.js +135 -0
- package/src/assets/plugins/highcharts/code/modules/annotations.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/annotations.src.js +6712 -0
- package/src/assets/plugins/highcharts/code/modules/arrow-symbols.js +12 -0
- package/src/assets/plugins/highcharts/code/modules/arrow-symbols.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/arrow-symbols.src.js +202 -0
- package/src/assets/plugins/highcharts/code/modules/boost-canvas.js +25 -0
- package/src/assets/plugins/highcharts/code/modules/boost-canvas.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/boost-canvas.src.js +593 -0
- package/src/assets/plugins/highcharts/code/modules/boost.js +90 -0
- package/src/assets/plugins/highcharts/code/modules/boost.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/boost.src.js +3834 -0
- package/src/assets/plugins/highcharts/code/modules/broken-axis.js +20 -0
- package/src/assets/plugins/highcharts/code/modules/broken-axis.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/broken-axis.src.js +682 -0
- package/src/assets/plugins/highcharts/code/modules/bullet.js +18 -0
- package/src/assets/plugins/highcharts/code/modules/bullet.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/bullet.src.js +489 -0
- package/src/assets/plugins/highcharts/code/modules/coloraxis.js +33 -0
- package/src/assets/plugins/highcharts/code/modules/coloraxis.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/coloraxis.src.js +1484 -0
- package/src/assets/plugins/highcharts/code/modules/current-date-indicator.js +13 -0
- package/src/assets/plugins/highcharts/code/modules/current-date-indicator.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/current-date-indicator.src.js +138 -0
- package/src/assets/plugins/highcharts/code/modules/cylinder.js +20 -0
- package/src/assets/plugins/highcharts/code/modules/cylinder.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/cylinder.src.js +585 -0
- package/src/assets/plugins/highcharts/code/modules/data.js +42 -0
- package/src/assets/plugins/highcharts/code/modules/data.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/data.src.js +2383 -0
- package/src/assets/plugins/highcharts/code/modules/datagrouping.js +29 -0
- package/src/assets/plugins/highcharts/code/modules/datagrouping.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/datagrouping.src.js +1275 -0
- package/src/assets/plugins/highcharts/code/modules/debugger.js +30 -0
- package/src/assets/plugins/highcharts/code/modules/debugger.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/debugger.src.js +250 -0
- package/src/assets/plugins/highcharts/code/modules/dependency-wheel.js +20 -0
- package/src/assets/plugins/highcharts/code/modules/dependency-wheel.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/dependency-wheel.src.js +533 -0
- package/src/assets/plugins/highcharts/code/modules/dotplot.js +15 -0
- package/src/assets/plugins/highcharts/code/modules/dotplot.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/dotplot.src.js +216 -0
- package/src/assets/plugins/highcharts/code/modules/drag-panes.js +20 -0
- package/src/assets/plugins/highcharts/code/modules/drag-panes.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/drag-panes.src.js +586 -0
- package/src/assets/plugins/highcharts/code/modules/draggable-points.js +41 -0
- package/src/assets/plugins/highcharts/code/modules/draggable-points.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/draggable-points.src.js +2405 -0
- package/src/assets/plugins/highcharts/code/modules/drilldown.js +34 -0
- package/src/assets/plugins/highcharts/code/modules/drilldown.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/drilldown.src.js +1266 -0
- package/src/assets/plugins/highcharts/code/modules/dumbbell.js +24 -0
- package/src/assets/plugins/highcharts/code/modules/dumbbell.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/dumbbell.src.js +798 -0
- package/src/assets/plugins/highcharts/code/modules/export-data.js +30 -0
- package/src/assets/plugins/highcharts/code/modules/export-data.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/export-data.src.js +1203 -0
- package/src/assets/plugins/highcharts/code/modules/exporting.js +48 -0
- package/src/assets/plugins/highcharts/code/modules/exporting.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/exporting.src.js +2789 -0
- package/src/assets/plugins/highcharts/code/modules/full-screen.js +17 -0
- package/src/assets/plugins/highcharts/code/modules/full-screen.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/full-screen.src.js +284 -0
- package/src/assets/plugins/highcharts/code/modules/funnel.js +21 -0
- package/src/assets/plugins/highcharts/code/modules/funnel.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/funnel.src.js +777 -0
- package/src/assets/plugins/highcharts/code/modules/funnel3d.js +30 -0
- package/src/assets/plugins/highcharts/code/modules/funnel3d.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/funnel3d.src.js +1004 -0
- package/src/assets/plugins/highcharts/code/modules/gantt.js +226 -0
- package/src/assets/plugins/highcharts/code/modules/gantt.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/gantt.src.js +13485 -0
- package/src/assets/plugins/highcharts/code/modules/grid-axis.js +32 -0
- package/src/assets/plugins/highcharts/code/modules/grid-axis.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/grid-axis.src.js +1160 -0
- package/src/assets/plugins/highcharts/code/modules/heatmap.js +46 -0
- package/src/assets/plugins/highcharts/code/modules/heatmap.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/heatmap.src.js +2726 -0
- package/src/assets/plugins/highcharts/code/modules/heikinashi.js +17 -0
- package/src/assets/plugins/highcharts/code/modules/heikinashi.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/heikinashi.src.js +396 -0
- package/src/assets/plugins/highcharts/code/modules/histogram-bellcurve.js +21 -0
- package/src/assets/plugins/highcharts/code/modules/histogram-bellcurve.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/histogram-bellcurve.src.js +699 -0
- package/src/assets/plugins/highcharts/code/modules/hollowcandlestick.js +18 -0
- package/src/assets/plugins/highcharts/code/modules/hollowcandlestick.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/hollowcandlestick.src.js +500 -0
- package/src/assets/plugins/highcharts/code/modules/item-series.js +21 -0
- package/src/assets/plugins/highcharts/code/modules/item-series.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/item-series.src.js +660 -0
- package/src/assets/plugins/highcharts/code/modules/lollipop.js +14 -0
- package/src/assets/plugins/highcharts/code/modules/lollipop.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/lollipop.src.js +318 -0
- package/src/assets/plugins/highcharts/code/modules/marker-clusters.js +45 -0
- package/src/assets/plugins/highcharts/code/modules/marker-clusters.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/marker-clusters.src.js +1713 -0
- package/src/assets/plugins/highcharts/code/modules/networkgraph.js +58 -0
- package/src/assets/plugins/highcharts/code/modules/networkgraph.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/networkgraph.src.js +2926 -0
- package/src/assets/plugins/highcharts/code/modules/no-data-to-display.js +15 -0
- package/src/assets/plugins/highcharts/code/modules/no-data-to-display.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/no-data-to-display.src.js +231 -0
- package/src/assets/plugins/highcharts/code/modules/offline-exporting.js +27 -0
- package/src/assets/plugins/highcharts/code/modules/offline-exporting.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/offline-exporting.src.js +847 -0
- package/src/assets/plugins/highcharts/code/modules/oldie-polyfills.js +17 -0
- package/src/assets/plugins/highcharts/code/modules/oldie-polyfills.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/oldie-polyfills.src.js +220 -0
- package/src/assets/plugins/highcharts/code/modules/oldie.js +40 -0
- package/src/assets/plugins/highcharts/code/modules/oldie.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/oldie.src.js +1443 -0
- package/src/assets/plugins/highcharts/code/modules/organization.js +22 -0
- package/src/assets/plugins/highcharts/code/modules/organization.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/organization.src.js +736 -0
- package/src/assets/plugins/highcharts/code/modules/overlapping-datalabels.js +9 -0
- package/src/assets/plugins/highcharts/code/modules/overlapping-datalabels.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/overlapping-datalabels.src.js +33 -0
- package/src/assets/plugins/highcharts/code/modules/parallel-coordinates.js +20 -0
- package/src/assets/plugins/highcharts/code/modules/parallel-coordinates.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/parallel-coordinates.src.js +555 -0
- package/src/assets/plugins/highcharts/code/modules/pareto.js +16 -0
- package/src/assets/plugins/highcharts/code/modules/pareto.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/pareto.src.js +382 -0
- package/src/assets/plugins/highcharts/code/modules/pathfinder.js +40 -0
- package/src/assets/plugins/highcharts/code/modules/pathfinder.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/pathfinder.src.js +2693 -0
- package/src/assets/plugins/highcharts/code/modules/pattern-fill.js +24 -0
- package/src/assets/plugins/highcharts/code/modules/pattern-fill.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/pattern-fill.src.js +640 -0
- package/src/assets/plugins/highcharts/code/modules/price-indicator.js +15 -0
- package/src/assets/plugins/highcharts/code/modules/price-indicator.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/price-indicator.src.js +346 -0
- package/src/assets/plugins/highcharts/code/modules/pyramid3d.js +13 -0
- package/src/assets/plugins/highcharts/code/modules/pyramid3d.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/pyramid3d.src.js +211 -0
- package/src/assets/plugins/highcharts/code/modules/sankey.js +38 -0
- package/src/assets/plugins/highcharts/code/modules/sankey.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/sankey.src.js +1868 -0
- package/src/assets/plugins/highcharts/code/modules/series-label.js +24 -0
- package/src/assets/plugins/highcharts/code/modules/series-label.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/series-label.src.js +852 -0
- package/src/assets/plugins/highcharts/code/modules/solid-gauge.js +19 -0
- package/src/assets/plugins/highcharts/code/modules/solid-gauge.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/solid-gauge.src.js +650 -0
- package/src/assets/plugins/highcharts/code/modules/sonification.js +68 -0
- package/src/assets/plugins/highcharts/code/modules/sonification.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/sonification.src.js +3869 -0
- package/src/assets/plugins/highcharts/code/modules/static-scale.js +13 -0
- package/src/assets/plugins/highcharts/code/modules/static-scale.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/static-scale.src.js +117 -0
- package/src/assets/plugins/highcharts/code/modules/stock-tools.js +189 -0
- package/src/assets/plugins/highcharts/code/modules/stock-tools.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/stock-tools.src.js +9592 -0
- package/src/assets/plugins/highcharts/code/modules/stock.js +213 -0
- package/src/assets/plugins/highcharts/code/modules/stock.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/stock.src.js +12237 -0
- package/src/assets/plugins/highcharts/code/modules/streamgraph.js +13 -0
- package/src/assets/plugins/highcharts/code/modules/streamgraph.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/streamgraph.src.js +253 -0
- package/src/assets/plugins/highcharts/code/modules/sunburst.js +68 -0
- package/src/assets/plugins/highcharts/code/modules/sunburst.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/sunburst.src.js +3721 -0
- package/src/assets/plugins/highcharts/code/modules/tilemap.js +26 -0
- package/src/assets/plugins/highcharts/code/modules/tilemap.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/tilemap.src.js +878 -0
- package/src/assets/plugins/highcharts/code/modules/timeline.js +28 -0
- package/src/assets/plugins/highcharts/code/modules/timeline.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/timeline.src.js +815 -0
- package/src/assets/plugins/highcharts/code/modules/treegrid.js +65 -0
- package/src/assets/plugins/highcharts/code/modules/treegrid.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/treegrid.src.js +3294 -0
- package/src/assets/plugins/highcharts/code/modules/treemap.js +49 -0
- package/src/assets/plugins/highcharts/code/modules/treemap.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/treemap.src.js +2416 -0
- package/src/assets/plugins/highcharts/code/modules/variable-pie.js +18 -0
- package/src/assets/plugins/highcharts/code/modules/variable-pie.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/variable-pie.src.js +533 -0
- package/src/assets/plugins/highcharts/code/modules/variwide.js +21 -0
- package/src/assets/plugins/highcharts/code/modules/variwide.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/variwide.src.js +529 -0
- package/src/assets/plugins/highcharts/code/modules/vector.js +16 -0
- package/src/assets/plugins/highcharts/code/modules/vector.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/vector.src.js +409 -0
- package/src/assets/plugins/highcharts/code/modules/venn.js +39 -0
- package/src/assets/plugins/highcharts/code/modules/venn.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/venn.src.js +2095 -0
- package/src/assets/plugins/highcharts/code/modules/windbarb.js +24 -0
- package/src/assets/plugins/highcharts/code/modules/windbarb.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/windbarb.src.js +772 -0
- package/src/assets/plugins/highcharts/code/modules/wordcloud.js +31 -0
- package/src/assets/plugins/highcharts/code/modules/wordcloud.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/wordcloud.src.js +1584 -0
- package/src/assets/plugins/highcharts/code/modules/xrange.js +26 -0
- package/src/assets/plugins/highcharts/code/modules/xrange.js.map +1 -0
- package/src/assets/plugins/highcharts/code/modules/xrange.src.js +940 -0
- package/src/assets/plugins/highcharts/code/themes/avocado.js +10 -0
- package/src/assets/plugins/highcharts/code/themes/avocado.js.map +1 -0
- package/src/assets/plugins/highcharts/code/themes/avocado.src.js +103 -0
- package/src/assets/plugins/highcharts/code/themes/brand-dark.js +15 -0
- package/src/assets/plugins/highcharts/code/themes/brand-dark.js.map +1 -0
- package/src/assets/plugins/highcharts/code/themes/brand-dark.src.js +328 -0
- package/src/assets/plugins/highcharts/code/themes/brand-light.js +15 -0
- package/src/assets/plugins/highcharts/code/themes/brand-light.js.map +1 -0
- package/src/assets/plugins/highcharts/code/themes/brand-light.src.js +294 -0
- package/src/assets/plugins/highcharts/code/themes/dark-blue.js +15 -0
- package/src/assets/plugins/highcharts/code/themes/dark-blue.js.map +1 -0
- package/src/assets/plugins/highcharts/code/themes/dark-blue.src.js +315 -0
- package/src/assets/plugins/highcharts/code/themes/dark-green.js +15 -0
- package/src/assets/plugins/highcharts/code/themes/dark-green.js.map +1 -0
- package/src/assets/plugins/highcharts/code/themes/dark-green.src.js +315 -0
- package/src/assets/plugins/highcharts/code/themes/dark-unica.js +14 -0
- package/src/assets/plugins/highcharts/code/themes/dark-unica.js.map +1 -0
- package/src/assets/plugins/highcharts/code/themes/dark-unica.src.js +284 -0
- package/src/assets/plugins/highcharts/code/themes/gray.js +15 -0
- package/src/assets/plugins/highcharts/code/themes/gray.js.map +1 -0
- package/src/assets/plugins/highcharts/code/themes/gray.src.js +323 -0
- package/src/assets/plugins/highcharts/code/themes/grid-light.js +11 -0
- package/src/assets/plugins/highcharts/code/themes/grid-light.js.map +1 -0
- package/src/assets/plugins/highcharts/code/themes/grid-light.src.js +146 -0
- package/src/assets/plugins/highcharts/code/themes/grid.js +12 -0
- package/src/assets/plugins/highcharts/code/themes/grid.js.map +1 -0
- package/src/assets/plugins/highcharts/code/themes/grid.src.js +176 -0
- package/src/assets/plugins/highcharts/code/themes/high-contrast-dark.js +14 -0
- package/src/assets/plugins/highcharts/code/themes/high-contrast-dark.js.map +1 -0
- package/src/assets/plugins/highcharts/code/themes/high-contrast-dark.src.js +275 -0
- package/src/assets/plugins/highcharts/code/themes/high-contrast-light.js +10 -0
- package/src/assets/plugins/highcharts/code/themes/high-contrast-light.js.map +1 -0
- package/src/assets/plugins/highcharts/code/themes/high-contrast-light.src.js +105 -0
- package/src/assets/plugins/highcharts/code/themes/sand-signika.js +12 -0
- package/src/assets/plugins/highcharts/code/themes/sand-signika.js.map +1 -0
- package/src/assets/plugins/highcharts/code/themes/sand-signika.src.js +179 -0
- package/src/assets/plugins/highcharts/code/themes/skies.js +12 -0
- package/src/assets/plugins/highcharts/code/themes/skies.js.map +1 -0
- package/src/assets/plugins/highcharts/code/themes/skies.src.js +167 -0
- package/src/assets/plugins/highcharts/code/themes/sunset.js +10 -0
- package/src/assets/plugins/highcharts/code/themes/sunset.js.map +1 -0
- package/src/assets/plugins/highcharts/code/themes/sunset.src.js +102 -0
- package/src/assets/plugins/highcharts/examples/3d-area-multiple/index.html +192 -0
- package/src/assets/plugins/highcharts/examples/3d-column-interactive/index.html +111 -0
- package/src/assets/plugins/highcharts/examples/3d-column-null-values/index.html +118 -0
- package/src/assets/plugins/highcharts/examples/3d-column-stacking-grouping/index.html +144 -0
- package/src/assets/plugins/highcharts/examples/3d-pie/index.html +130 -0
- package/src/assets/plugins/highcharts/examples/3d-pie-donut/index.html +112 -0
- package/src/assets/plugins/highcharts/examples/3d-scatter-draggable/index.html +221 -0
- package/src/assets/plugins/highcharts/examples/accessible-line/index.html +198 -0
- package/src/assets/plugins/highcharts/examples/accessible-pie/index.html +213 -0
- package/src/assets/plugins/highcharts/examples/advanced-accessible/index.html +271 -0
- package/src/assets/plugins/highcharts/examples/annotations/index.html +2170 -0
- package/src/assets/plugins/highcharts/examples/area-basic/index.html +157 -0
- package/src/assets/plugins/highcharts/examples/area-inverted/index.html +135 -0
- package/src/assets/plugins/highcharts/examples/area-missing/index.html +125 -0
- package/src/assets/plugins/highcharts/examples/area-negative/index.html +101 -0
- package/src/assets/plugins/highcharts/examples/area-stacked/index.html +136 -0
- package/src/assets/plugins/highcharts/examples/area-stacked-percent/index.html +141 -0
- package/src/assets/plugins/highcharts/examples/arearange/index.html +132 -0
- package/src/assets/plugins/highcharts/examples/arearange-line/index.html +195 -0
- package/src/assets/plugins/highcharts/examples/areaspline/index.html +137 -0
- package/src/assets/plugins/highcharts/examples/bar-basic/index.html +143 -0
- package/src/assets/plugins/highcharts/examples/bar-negative-stack/index.html +173 -0
- package/src/assets/plugins/highcharts/examples/bar-stacked/index.html +112 -0
- package/src/assets/plugins/highcharts/examples/bellcurve/index.html +133 -0
- package/src/assets/plugins/highcharts/examples/box-plot/index.html +149 -0
- package/src/assets/plugins/highcharts/examples/bubble/index.html +209 -0
- package/src/assets/plugins/highcharts/examples/bubble-3d/index.html +159 -0
- package/src/assets/plugins/highcharts/examples/bullet-graph/index.html +233 -0
- package/src/assets/plugins/highcharts/examples/chart-update/index.html +137 -0
- package/src/assets/plugins/highcharts/examples/column-basic/index.html +144 -0
- package/src/assets/plugins/highcharts/examples/column-comparison/index.html +350 -0
- package/src/assets/plugins/highcharts/examples/column-drilldown/index.html +387 -0
- package/src/assets/plugins/highcharts/examples/column-negative/index.html +101 -0
- package/src/assets/plugins/highcharts/examples/column-parsed/index.html +138 -0
- package/src/assets/plugins/highcharts/examples/column-placement/index.html +160 -0
- package/src/assets/plugins/highcharts/examples/column-pyramid/index.html +117 -0
- package/src/assets/plugins/highcharts/examples/column-rotated-labels/index.html +147 -0
- package/src/assets/plugins/highcharts/examples/column-stacked/index.html +138 -0
- package/src/assets/plugins/highcharts/examples/column-stacked-and-grouped/index.html +133 -0
- package/src/assets/plugins/highcharts/examples/column-stacked-percent/index.html +113 -0
- package/src/assets/plugins/highcharts/examples/columnrange/index.html +145 -0
- package/src/assets/plugins/highcharts/examples/combo/index.html +146 -0
- package/src/assets/plugins/highcharts/examples/combo-dual-axes/index.html +153 -0
- package/src/assets/plugins/highcharts/examples/combo-meteogram/index.html +768 -0
- package/src/assets/plugins/highcharts/examples/combo-multi-axes/index.html +222 -0
- package/src/assets/plugins/highcharts/examples/combo-regression/index.html +110 -0
- package/src/assets/plugins/highcharts/examples/combo-timeline/index.html +592 -0
- package/src/assets/plugins/highcharts/examples/cylinder/index.html +104 -0
- package/src/assets/plugins/highcharts/examples/dependency-wheel/index.html +165 -0
- package/src/assets/plugins/highcharts/examples/dumbbell/index.html +230 -0
- package/src/assets/plugins/highcharts/examples/dynamic-click-to-add/index.html +147 -0
- package/src/assets/plugins/highcharts/examples/dynamic-master-detail/index.html +316 -0
- package/src/assets/plugins/highcharts/examples/dynamic-update/index.html +163 -0
- package/src/assets/plugins/highcharts/examples/error-bar/index.html +154 -0
- package/src/assets/plugins/highcharts/examples/euler-diagram/index.html +119 -0
- package/src/assets/plugins/highcharts/examples/flame/index.html +1324 -0
- package/src/assets/plugins/highcharts/examples/funnel/index.html +131 -0
- package/src/assets/plugins/highcharts/examples/funnel3d/index.html +117 -0
- package/src/assets/plugins/highcharts/examples/gauge-activity/index.html +272 -0
- package/src/assets/plugins/highcharts/examples/gauge-clock/index.html +261 -0
- package/src/assets/plugins/highcharts/examples/gauge-dual/index.html +181 -0
- package/src/assets/plugins/highcharts/examples/gauge-solid/index.html +248 -0
- package/src/assets/plugins/highcharts/examples/gauge-speedometer/index.html +189 -0
- package/src/assets/plugins/highcharts/examples/gauge-vu-meter/index.html +210 -0
- package/src/assets/plugins/highcharts/examples/heatmap/index.html +168 -0
- package/src/assets/plugins/highcharts/examples/heatmap-canvas/index.html +8928 -0
- package/src/assets/plugins/highcharts/examples/histogram/index.html +133 -0
- package/src/assets/plugins/highcharts/examples/honeycomb-usa/index.html +518 -0
- package/src/assets/plugins/highcharts/examples/line-ajax/index.html +206 -0
- package/src/assets/plugins/highcharts/examples/line-basic/index.html +147 -0
- package/src/assets/plugins/highcharts/examples/line-boost/index.html +144 -0
- package/src/assets/plugins/highcharts/examples/line-labels/index.html +108 -0
- package/src/assets/plugins/highcharts/examples/line-log-axis/index.html +106 -0
- package/src/assets/plugins/highcharts/examples/line-time-series/index.html +136 -0
- package/src/assets/plugins/highcharts/examples/live-data/index.html +155 -0
- package/src/assets/plugins/highcharts/examples/lollipop/index.html +161 -0
- package/src/assets/plugins/highcharts/examples/network-graph/index.html +277 -0
- package/src/assets/plugins/highcharts/examples/organization-chart/index.html +224 -0
- package/src/assets/plugins/highcharts/examples/packed-bubble/index.html +588 -0
- package/src/assets/plugins/highcharts/examples/packed-bubble-split/index.html +589 -0
- package/src/assets/plugins/highcharts/examples/parallel-coordinates/index.html +176 -0
- package/src/assets/plugins/highcharts/examples/pareto/index.html +133 -0
- package/src/assets/plugins/highcharts/examples/parliament-chart/index.html +138 -0
- package/src/assets/plugins/highcharts/examples/pie-basic/index.html +141 -0
- package/src/assets/plugins/highcharts/examples/pie-donut/index.html +347 -0
- package/src/assets/plugins/highcharts/examples/pie-drilldown/index.html +418 -0
- package/src/assets/plugins/highcharts/examples/pie-gradient/index.html +133 -0
- package/src/assets/plugins/highcharts/examples/pie-legend/index.html +128 -0
- package/src/assets/plugins/highcharts/examples/pie-monochrome/index.html +139 -0
- package/src/assets/plugins/highcharts/examples/pie-semi-circle/index.html +133 -0
- package/src/assets/plugins/highcharts/examples/polar/index.html +136 -0
- package/src/assets/plugins/highcharts/examples/polar-radial-bar/index.html +169 -0
- package/src/assets/plugins/highcharts/examples/polar-spider/index.html +148 -0
- package/src/assets/plugins/highcharts/examples/polar-wind-rose/index.html +351 -0
- package/src/assets/plugins/highcharts/examples/polygon/index.html +190 -0
- package/src/assets/plugins/highcharts/examples/pyramid/index.html +126 -0
- package/src/assets/plugins/highcharts/examples/pyramid3d/index.html +117 -0
- package/src/assets/plugins/highcharts/examples/renderer/index.html +334 -0
- package/src/assets/plugins/highcharts/examples/responsive/index.html +176 -0
- package/src/assets/plugins/highcharts/examples/sankey-diagram/index.html +145 -0
- package/src/assets/plugins/highcharts/examples/scatter/index.html +246 -0
- package/src/assets/plugins/highcharts/examples/scatter-boost/index.html +142 -0
- package/src/assets/plugins/highcharts/examples/sonification/index.html +331 -0
- package/src/assets/plugins/highcharts/examples/sparkline/index.html +676 -0
- package/src/assets/plugins/highcharts/examples/spline-inverted/index.html +135 -0
- package/src/assets/plugins/highcharts/examples/spline-irregular-time/index.html +255 -0
- package/src/assets/plugins/highcharts/examples/spline-plot-bands/index.html +223 -0
- package/src/assets/plugins/highcharts/examples/spline-symbols/index.html +139 -0
- package/src/assets/plugins/highcharts/examples/streamgraph/index.html +447 -0
- package/src/assets/plugins/highcharts/examples/styled-mode-column/index.html +146 -0
- package/src/assets/plugins/highcharts/examples/styled-mode-pie/index.html +119 -0
- package/src/assets/plugins/highcharts/examples/sunburst/index.html +1520 -0
- package/src/assets/plugins/highcharts/examples/synchronized-charts/index.html +238 -0
- package/src/assets/plugins/highcharts/examples/timeline/index.html +142 -0
- package/src/assets/plugins/highcharts/examples/treemap-coloraxis/index.html +119 -0
- package/src/assets/plugins/highcharts/examples/treemap-large-dataset/index.html +172 -0
- package/src/assets/plugins/highcharts/examples/treemap-with-levels/index.html +151 -0
- package/src/assets/plugins/highcharts/examples/variable-radius-pie/index.html +131 -0
- package/src/assets/plugins/highcharts/examples/variwide/index.html +146 -0
- package/src/assets/plugins/highcharts/examples/vector-plot/index.html +494 -0
- package/src/assets/plugins/highcharts/examples/venn-diagram/index.html +124 -0
- package/src/assets/plugins/highcharts/examples/waterfall/index.html +143 -0
- package/src/assets/plugins/highcharts/examples/windbarb-series/index.html +189 -0
- package/src/assets/plugins/highcharts/examples/wordcloud/index.html +110 -0
- package/src/assets/plugins/highcharts/examples/x-range/index.html +142 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/annotations-hidden.svg +19 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/annotations-visible.svg +20 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/arrow-bottom.svg +9 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/arrow-left.svg +9 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/arrow-line.svg +11 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/arrow-ray.svg +10 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/arrow-right.svg +9 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/arrow-segment.svg +11 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/arrow.svg +13 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/circle.svg +13 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/close.svg +8 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/crooked-3.svg +13 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/crooked-5.svg +11 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/current-price-hide.svg +40 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/current-price-show.svg +41 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/destroy.svg +14 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/drawing.svg +18 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/edit.svg +10 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/elliott-3.svg +59 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/elliott-5.svg +41 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/ellipse.svg +11 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/fibonacci-timezone.svg +16 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/fibonacci.svg +25 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/flag-basic.svg +10 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/flag-diamond.svg +12 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/flag-elipse.svg +13 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/flag-trapeze.svg +14 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/fullscreen.svg +15 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/horizontal-line.svg +8 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/indicators.svg +27 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/label.svg +16 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/line.svg +11 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/linear.svg +11 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/logarithmic.svg +1 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/measure-x.svg +23 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/measure-xy.svg +28 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/measure-y.svg +24 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/panning.svg +17 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/parallel-channel.svg +15 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/pitchfork.svg +13 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/ray.svg +10 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/rectangle.svg +8 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/remove-annotations.svg +15 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/save-chart.svg +12 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/segment.svg +10 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/separator.svg +10 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/series-candlestick.svg +12 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/series-heikin-ashi.svg +1 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/series-hlc.svg +1 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/series-hollow-candlestick.svg +1 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/series-line.svg +11 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/series-ohlc.svg +14 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/text.svg +13 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/time-cycles.svg +35 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/vertical-arrow.svg +7 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/vertical-counter.svg +23 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/vertical-double-arrow.svg +10 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/vertical-label.svg +14 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/vertical-line.svg +8 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/zoom-x.svg +17 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/zoom-xy.svg +13 -0
- package/src/assets/plugins/highcharts/gfx/stock-icons/zoom-y.svg +17 -0
- package/src/assets/plugins/highcharts/gfx/vml-radial-gradient.png +0 -0
- package/src/assets/plugins/highcharts/graphics/color-picker.svg +12 -0
- package/src/assets/plugins/highcharts/graphics/cursor.svg +11 -0
- package/src/assets/plugins/highcharts/graphics/earth.svg +432 -0
- package/src/assets/plugins/highcharts/graphics/feature.svg +13 -0
- package/src/assets/plugins/highcharts/graphics/flag-circle.svg +17 -0
- package/src/assets/plugins/highcharts/graphics/flag-circlepin.svg +15 -0
- package/src/assets/plugins/highcharts/graphics/flag-diamondpin.svg +15 -0
- package/src/assets/plugins/highcharts/graphics/flag-flag.svg +14 -0
- package/src/assets/plugins/highcharts/graphics/flag-rectangle.svg +18 -0
- package/src/assets/plugins/highcharts/graphics/flag-squarepin.svg +16 -0
- package/src/assets/plugins/highcharts/graphics/flag.svg +15 -0
- package/src/assets/plugins/highcharts/graphics/homepage/apple.svg +55 -0
- package/src/assets/plugins/highcharts/graphics/homepage/award.png +0 -0
- package/src/assets/plugins/highcharts/graphics/homepage/cloud.png +0 -0
- package/src/assets/plugins/highcharts/graphics/homepage/earth.png +0 -0
- package/src/assets/plugins/highcharts/graphics/homepage/jupiter.png +0 -0
- package/src/assets/plugins/highcharts/graphics/homepage/mars.png +0 -0
- package/src/assets/plugins/highcharts/graphics/homepage/mercury.png +0 -0
- package/src/assets/plugins/highcharts/graphics/homepage/moon.png +0 -0
- package/src/assets/plugins/highcharts/graphics/homepage/neptune.png +0 -0
- package/src/assets/plugins/highcharts/graphics/homepage/p1.png +0 -0
- package/src/assets/plugins/highcharts/graphics/homepage/p1.svg +9 -0
- package/src/assets/plugins/highcharts/graphics/homepage/p2.png +0 -0
- package/src/assets/plugins/highcharts/graphics/homepage/p2.svg +9 -0
- package/src/assets/plugins/highcharts/graphics/homepage/p3.png +0 -0
- package/src/assets/plugins/highcharts/graphics/homepage/p3.svg +9 -0
- package/src/assets/plugins/highcharts/graphics/homepage/p4.png +0 -0
- package/src/assets/plugins/highcharts/graphics/homepage/p4.svg +9 -0
- package/src/assets/plugins/highcharts/graphics/homepage/p5.png +0 -0
- package/src/assets/plugins/highcharts/graphics/homepage/p5.svg +9 -0
- package/src/assets/plugins/highcharts/graphics/homepage/p6.png +0 -0
- package/src/assets/plugins/highcharts/graphics/homepage/p6.svg +9 -0
- package/src/assets/plugins/highcharts/graphics/homepage/product.png +0 -0
- package/src/assets/plugins/highcharts/graphics/homepage/saturn.png +0 -0
- package/src/assets/plugins/highcharts/graphics/homepage/sun.png +0 -0
- package/src/assets/plugins/highcharts/graphics/homepage/uranus.png +0 -0
- package/src/assets/plugins/highcharts/graphics/homepage/venus.png +0 -0
- package/src/assets/plugins/highcharts/graphics/homepage/version.png +0 -0
- package/src/assets/plugins/highcharts/graphics/rect.svg +12 -0
- package/src/assets/plugins/highcharts/graphics/reset.svg +16 -0
- package/src/assets/plugins/highcharts/graphics/sand.png +0 -0
- package/src/assets/plugins/highcharts/graphics/save-chart-cloud.svg +14 -0
- package/src/assets/plugins/highcharts/graphics/save.svg +14 -0
- package/src/assets/plugins/highcharts/graphics/search.png +0 -0
- package/src/assets/plugins/highcharts/graphics/skies.jpg +0 -0
- package/src/assets/plugins/highcharts/graphics/snow.png +0 -0
- package/src/assets/plugins/highcharts/graphics/sun.png +0 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/blue-flake-big.svg +32 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/blue-star-big.svg +16 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/car-tree.svg +429 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/green-flake-big.svg +119 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/green-star.svg +20 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/hill.svg +193 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/hill2.svg +164 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/horse.svg +1 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/people.svg +2336 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/pines.svg +777 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/pond-skate.svg +1 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/red-flake.svg +30 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/red-house.svg +85 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/red-star-big.svg +36 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/red-star.svg +20 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/santa-b.svg +91 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/santa.svg +91 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/snow-mound.svg +146 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/snow.svg +20788 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/sun-disk.svg +597 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/tree-cluster.svg +2735 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/white-flake-big.svg +99 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/white-flake.big.svg +96 -0
- package/src/assets/plugins/highcharts/graphics/xmas-card-2020/white-star-big.svg +36 -0
- package/src/assets/plugins/highcharts/index.html +133 -0
|
@@ -0,0 +1,1868 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Highcharts JS v9.3.3 (2022-02-01)
|
|
3
|
+
*
|
|
4
|
+
* Sankey diagram module
|
|
5
|
+
*
|
|
6
|
+
* (c) 2010-2021 Torstein Honsi
|
|
7
|
+
*
|
|
8
|
+
* License: www.highcharts.com/license
|
|
9
|
+
*/
|
|
10
|
+
'use strict';
|
|
11
|
+
(function (factory) {
|
|
12
|
+
if (typeof module === 'object' && module.exports) {
|
|
13
|
+
factory['default'] = factory;
|
|
14
|
+
module.exports = factory;
|
|
15
|
+
} else if (typeof define === 'function' && define.amd) {
|
|
16
|
+
define('highcharts/modules/sankey', ['highcharts'], function (Highcharts) {
|
|
17
|
+
factory(Highcharts);
|
|
18
|
+
factory.Highcharts = Highcharts;
|
|
19
|
+
return factory;
|
|
20
|
+
});
|
|
21
|
+
} else {
|
|
22
|
+
factory(typeof Highcharts !== 'undefined' ? Highcharts : undefined);
|
|
23
|
+
}
|
|
24
|
+
}(function (Highcharts) {
|
|
25
|
+
var _modules = Highcharts ? Highcharts._modules : {};
|
|
26
|
+
function _registerModule(obj, path, args, fn) {
|
|
27
|
+
if (!obj.hasOwnProperty(path)) {
|
|
28
|
+
obj[path] = fn.apply(null, args);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
_registerModule(_modules, 'Series/NodesComposition.js', [_modules['Core/Series/Point.js'], _modules['Core/Series/Series.js'], _modules['Core/Utilities.js']], function (Point, Series, U) {
|
|
32
|
+
/* *
|
|
33
|
+
*
|
|
34
|
+
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
|
|
35
|
+
*
|
|
36
|
+
* */
|
|
37
|
+
var defined = U.defined,
|
|
38
|
+
extend = U.extend,
|
|
39
|
+
find = U.find,
|
|
40
|
+
pick = U.pick;
|
|
41
|
+
/* *
|
|
42
|
+
*
|
|
43
|
+
* Composition
|
|
44
|
+
*
|
|
45
|
+
* */
|
|
46
|
+
var NodesComposition;
|
|
47
|
+
(function (NodesComposition) {
|
|
48
|
+
/* *
|
|
49
|
+
*
|
|
50
|
+
* Declarations
|
|
51
|
+
*
|
|
52
|
+
* */
|
|
53
|
+
/* *
|
|
54
|
+
*
|
|
55
|
+
* Constants
|
|
56
|
+
*
|
|
57
|
+
* */
|
|
58
|
+
var composedClasses = [];
|
|
59
|
+
/* *
|
|
60
|
+
*
|
|
61
|
+
* Functions
|
|
62
|
+
*
|
|
63
|
+
* */
|
|
64
|
+
/* eslint-disable valid-jsdoc */
|
|
65
|
+
/**
|
|
66
|
+
* @private
|
|
67
|
+
*/
|
|
68
|
+
function compose(PointClass, SeriesClass) {
|
|
69
|
+
if (composedClasses.indexOf(PointClass) === -1) {
|
|
70
|
+
composedClasses.push(PointClass);
|
|
71
|
+
var pointProto = PointClass.prototype;
|
|
72
|
+
pointProto.setNodeState = setNodeState;
|
|
73
|
+
pointProto.setState = setNodeState;
|
|
74
|
+
}
|
|
75
|
+
if (composedClasses.indexOf(SeriesClass) === -1) {
|
|
76
|
+
composedClasses.push(SeriesClass);
|
|
77
|
+
var seriesProto = SeriesClass.prototype;
|
|
78
|
+
seriesProto.destroy = destroy;
|
|
79
|
+
seriesProto.setData = setData;
|
|
80
|
+
}
|
|
81
|
+
return SeriesClass;
|
|
82
|
+
}
|
|
83
|
+
NodesComposition.compose = compose;
|
|
84
|
+
/**
|
|
85
|
+
* Create a single node that holds information on incoming and outgoing
|
|
86
|
+
* links.
|
|
87
|
+
* @private
|
|
88
|
+
*/
|
|
89
|
+
function createNode(id) {
|
|
90
|
+
var PointClass = this.pointClass,
|
|
91
|
+
findById = function (nodes,
|
|
92
|
+
id) { return find(nodes,
|
|
93
|
+
function (node) { return node.id === id; }); };
|
|
94
|
+
var node = findById(this.nodes,
|
|
95
|
+
id),
|
|
96
|
+
options;
|
|
97
|
+
if (!node) {
|
|
98
|
+
options = this.options.nodes && findById(this.options.nodes, id);
|
|
99
|
+
node = (new PointClass()).init(this, extend({
|
|
100
|
+
className: 'highcharts-node',
|
|
101
|
+
isNode: true,
|
|
102
|
+
id: id,
|
|
103
|
+
y: 1 // Pass isNull test
|
|
104
|
+
}, options));
|
|
105
|
+
node.linksTo = [];
|
|
106
|
+
node.linksFrom = [];
|
|
107
|
+
node.formatPrefix = 'node';
|
|
108
|
+
// for use in formats
|
|
109
|
+
node.name = node.name || node.options.id || '';
|
|
110
|
+
// Mass is used in networkgraph:
|
|
111
|
+
node.mass = pick(
|
|
112
|
+
// Node:
|
|
113
|
+
node.options.mass, node.options.marker && node.options.marker.radius,
|
|
114
|
+
// Series:
|
|
115
|
+
this.options.marker && this.options.marker.radius,
|
|
116
|
+
// Default:
|
|
117
|
+
4);
|
|
118
|
+
/**
|
|
119
|
+
* Return the largest sum of either the incoming or outgoing links.
|
|
120
|
+
* @private
|
|
121
|
+
*/
|
|
122
|
+
node.getSum = function () {
|
|
123
|
+
var sumTo = 0,
|
|
124
|
+
sumFrom = 0;
|
|
125
|
+
node.linksTo.forEach(function (link) {
|
|
126
|
+
sumTo += link.weight;
|
|
127
|
+
});
|
|
128
|
+
node.linksFrom.forEach(function (link) {
|
|
129
|
+
sumFrom += link.weight;
|
|
130
|
+
});
|
|
131
|
+
return Math.max(sumTo, sumFrom);
|
|
132
|
+
};
|
|
133
|
+
/**
|
|
134
|
+
* Get the offset in weight values of a point/link.
|
|
135
|
+
* @private
|
|
136
|
+
*/
|
|
137
|
+
node.offset = function (point, coll) {
|
|
138
|
+
var offset = 0;
|
|
139
|
+
for (var i = 0; i < node[coll].length; i++) {
|
|
140
|
+
if (node[coll][i] === point) {
|
|
141
|
+
return offset;
|
|
142
|
+
}
|
|
143
|
+
offset += node[coll][i].weight;
|
|
144
|
+
}
|
|
145
|
+
};
|
|
146
|
+
// Return true if the node has a shape, otherwise all links are
|
|
147
|
+
// outgoing.
|
|
148
|
+
node.hasShape = function () {
|
|
149
|
+
var outgoing = 0;
|
|
150
|
+
node.linksTo.forEach(function (link) {
|
|
151
|
+
if (link.outgoing) {
|
|
152
|
+
outgoing++;
|
|
153
|
+
}
|
|
154
|
+
});
|
|
155
|
+
return (!node.linksTo.length ||
|
|
156
|
+
outgoing !== node.linksTo.length);
|
|
157
|
+
};
|
|
158
|
+
this.nodes.push(node);
|
|
159
|
+
}
|
|
160
|
+
return node;
|
|
161
|
+
}
|
|
162
|
+
NodesComposition.createNode = createNode;
|
|
163
|
+
/**
|
|
164
|
+
* Destroy alll nodes and links.
|
|
165
|
+
* @private
|
|
166
|
+
*/
|
|
167
|
+
function destroy() {
|
|
168
|
+
// Nodes must also be destroyed (#8682, #9300)
|
|
169
|
+
this.data = []
|
|
170
|
+
.concat(this.points || [], this.nodes);
|
|
171
|
+
return Series.prototype.destroy.apply(this, arguments);
|
|
172
|
+
}
|
|
173
|
+
NodesComposition.destroy = destroy;
|
|
174
|
+
/**
|
|
175
|
+
* Extend generatePoints by adding the nodes, which are Point objects
|
|
176
|
+
* but pushed to the this.nodes array.
|
|
177
|
+
*/
|
|
178
|
+
function generatePoints() {
|
|
179
|
+
var chart = this.chart,
|
|
180
|
+
nodeLookup = {};
|
|
181
|
+
Series.prototype.generatePoints.call(this);
|
|
182
|
+
if (!this.nodes) {
|
|
183
|
+
this.nodes = []; // List of Point-like node items
|
|
184
|
+
}
|
|
185
|
+
this.colorCounter = 0;
|
|
186
|
+
// Reset links from previous run
|
|
187
|
+
this.nodes.forEach(function (node) {
|
|
188
|
+
node.linksFrom.length = 0;
|
|
189
|
+
node.linksTo.length = 0;
|
|
190
|
+
node.level = node.options.level;
|
|
191
|
+
});
|
|
192
|
+
// Create the node list and set up links
|
|
193
|
+
this.points.forEach(function (point) {
|
|
194
|
+
if (defined(point.from)) {
|
|
195
|
+
if (!nodeLookup[point.from]) {
|
|
196
|
+
nodeLookup[point.from] = this.createNode(point.from);
|
|
197
|
+
}
|
|
198
|
+
nodeLookup[point.from].linksFrom.push(point);
|
|
199
|
+
point.fromNode = nodeLookup[point.from];
|
|
200
|
+
// Point color defaults to the fromNode's color
|
|
201
|
+
if (chart.styledMode) {
|
|
202
|
+
point.colorIndex = pick(point.options.colorIndex, nodeLookup[point.from].colorIndex);
|
|
203
|
+
}
|
|
204
|
+
else {
|
|
205
|
+
point.color =
|
|
206
|
+
point.options.color || nodeLookup[point.from].color;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
if (defined(point.to)) {
|
|
210
|
+
if (!nodeLookup[point.to]) {
|
|
211
|
+
nodeLookup[point.to] = this.createNode(point.to);
|
|
212
|
+
}
|
|
213
|
+
nodeLookup[point.to].linksTo.push(point);
|
|
214
|
+
point.toNode = nodeLookup[point.to];
|
|
215
|
+
}
|
|
216
|
+
point.name = point.name || point.id; // for use in formats
|
|
217
|
+
}, this);
|
|
218
|
+
// Store lookup table for later use
|
|
219
|
+
this.nodeLookup = nodeLookup;
|
|
220
|
+
}
|
|
221
|
+
NodesComposition.generatePoints = generatePoints;
|
|
222
|
+
/**
|
|
223
|
+
* Destroy all nodes on setting new data
|
|
224
|
+
* @private
|
|
225
|
+
*/
|
|
226
|
+
function setData() {
|
|
227
|
+
if (this.nodes) {
|
|
228
|
+
this.nodes.forEach(function (node) {
|
|
229
|
+
node.destroy();
|
|
230
|
+
});
|
|
231
|
+
this.nodes.length = 0;
|
|
232
|
+
}
|
|
233
|
+
Series.prototype.setData.apply(this, arguments);
|
|
234
|
+
}
|
|
235
|
+
/**
|
|
236
|
+
* When hovering node, highlight all connected links. When hovering a link,
|
|
237
|
+
* highlight all connected nodes.
|
|
238
|
+
*/
|
|
239
|
+
function setNodeState(state) {
|
|
240
|
+
var args = arguments,
|
|
241
|
+
others = this.isNode ? this.linksTo.concat(this.linksFrom) :
|
|
242
|
+
[this.fromNode,
|
|
243
|
+
this.toNode];
|
|
244
|
+
if (state !== 'select') {
|
|
245
|
+
others.forEach(function (linkOrNode) {
|
|
246
|
+
if (linkOrNode && linkOrNode.series) {
|
|
247
|
+
Point.prototype.setState.apply(linkOrNode, args);
|
|
248
|
+
if (!linkOrNode.isNode) {
|
|
249
|
+
if (linkOrNode.fromNode.graphic) {
|
|
250
|
+
Point.prototype.setState.apply(linkOrNode.fromNode, args);
|
|
251
|
+
}
|
|
252
|
+
if (linkOrNode.toNode && linkOrNode.toNode.graphic) {
|
|
253
|
+
Point.prototype.setState.apply(linkOrNode.toNode, args);
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
});
|
|
258
|
+
}
|
|
259
|
+
Point.prototype.setState.apply(this, args);
|
|
260
|
+
}
|
|
261
|
+
NodesComposition.setNodeState = setNodeState;
|
|
262
|
+
})(NodesComposition || (NodesComposition = {}));
|
|
263
|
+
/* *
|
|
264
|
+
*
|
|
265
|
+
* Default Export
|
|
266
|
+
*
|
|
267
|
+
* */
|
|
268
|
+
|
|
269
|
+
return NodesComposition;
|
|
270
|
+
});
|
|
271
|
+
_registerModule(_modules, 'Series/Sankey/SankeyPoint.js', [_modules['Core/Series/Point.js'], _modules['Core/Series/SeriesRegistry.js'], _modules['Core/Utilities.js']], function (Point, SeriesRegistry, U) {
|
|
272
|
+
/* *
|
|
273
|
+
*
|
|
274
|
+
* Sankey diagram module
|
|
275
|
+
*
|
|
276
|
+
* (c) 2010-2021 Torstein Honsi
|
|
277
|
+
*
|
|
278
|
+
* License: www.highcharts.com/license
|
|
279
|
+
*
|
|
280
|
+
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
|
|
281
|
+
*
|
|
282
|
+
* */
|
|
283
|
+
var __extends = (this && this.__extends) || (function () {
|
|
284
|
+
var extendStatics = function (d,
|
|
285
|
+
b) {
|
|
286
|
+
extendStatics = Object.setPrototypeOf ||
|
|
287
|
+
({ __proto__: [] } instanceof Array && function (d,
|
|
288
|
+
b) { d.__proto__ = b; }) ||
|
|
289
|
+
function (d,
|
|
290
|
+
b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
291
|
+
return extendStatics(d, b);
|
|
292
|
+
};
|
|
293
|
+
return function (d, b) {
|
|
294
|
+
extendStatics(d, b);
|
|
295
|
+
function __() { this.constructor = d; }
|
|
296
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
297
|
+
};
|
|
298
|
+
})();
|
|
299
|
+
var ColumnSeries = SeriesRegistry.seriesTypes.column;
|
|
300
|
+
var defined = U.defined,
|
|
301
|
+
extend = U.extend;
|
|
302
|
+
/* *
|
|
303
|
+
*
|
|
304
|
+
* Class
|
|
305
|
+
*
|
|
306
|
+
* */
|
|
307
|
+
var SankeyPoint = /** @class */ (function (_super) {
|
|
308
|
+
__extends(SankeyPoint, _super);
|
|
309
|
+
function SankeyPoint() {
|
|
310
|
+
/* *
|
|
311
|
+
*
|
|
312
|
+
* Properties
|
|
313
|
+
*
|
|
314
|
+
* */
|
|
315
|
+
var _this = _super !== null && _super.apply(this,
|
|
316
|
+
arguments) || this;
|
|
317
|
+
_this.className = void 0;
|
|
318
|
+
_this.fromNode = void 0;
|
|
319
|
+
_this.level = void 0;
|
|
320
|
+
_this.linkBase = void 0;
|
|
321
|
+
_this.linksFrom = void 0;
|
|
322
|
+
_this.linksTo = void 0;
|
|
323
|
+
_this.mass = void 0;
|
|
324
|
+
_this.nodeX = void 0;
|
|
325
|
+
_this.nodeY = void 0;
|
|
326
|
+
_this.options = void 0;
|
|
327
|
+
_this.series = void 0;
|
|
328
|
+
_this.toNode = void 0;
|
|
329
|
+
return _this;
|
|
330
|
+
/* eslint-enable valid-jsdoc */
|
|
331
|
+
}
|
|
332
|
+
/* *
|
|
333
|
+
*
|
|
334
|
+
* Functions
|
|
335
|
+
*
|
|
336
|
+
* */
|
|
337
|
+
/* eslint-disable valid-jsdoc */
|
|
338
|
+
/**
|
|
339
|
+
* @private
|
|
340
|
+
*/
|
|
341
|
+
SankeyPoint.prototype.applyOptions = function (options, x) {
|
|
342
|
+
Point.prototype.applyOptions.call(this, options, x);
|
|
343
|
+
// Treat point.level as a synonym of point.column
|
|
344
|
+
if (defined(this.options.level)) {
|
|
345
|
+
this.options.column = this.column = this.options.level;
|
|
346
|
+
}
|
|
347
|
+
return this;
|
|
348
|
+
};
|
|
349
|
+
/**
|
|
350
|
+
* @private
|
|
351
|
+
*/
|
|
352
|
+
SankeyPoint.prototype.getClassName = function () {
|
|
353
|
+
return (this.isNode ? 'highcharts-node ' : 'highcharts-link ') +
|
|
354
|
+
Point.prototype.getClassName.call(this);
|
|
355
|
+
};
|
|
356
|
+
/**
|
|
357
|
+
* @private
|
|
358
|
+
*/
|
|
359
|
+
SankeyPoint.prototype.isValid = function () {
|
|
360
|
+
return this.isNode || typeof this.weight === 'number';
|
|
361
|
+
};
|
|
362
|
+
return SankeyPoint;
|
|
363
|
+
}(ColumnSeries.prototype.pointClass));
|
|
364
|
+
/* *
|
|
365
|
+
*
|
|
366
|
+
* Default Export
|
|
367
|
+
*
|
|
368
|
+
* */
|
|
369
|
+
|
|
370
|
+
return SankeyPoint;
|
|
371
|
+
});
|
|
372
|
+
_registerModule(_modules, 'Series/TreeUtilities.js', [_modules['Core/Color/Color.js'], _modules['Core/Utilities.js']], function (Color, U) {
|
|
373
|
+
/* *
|
|
374
|
+
*
|
|
375
|
+
* (c) 2014-2021 Highsoft AS
|
|
376
|
+
*
|
|
377
|
+
* Authors: Jon Arild Nygard / Oystein Moseng
|
|
378
|
+
*
|
|
379
|
+
* License: www.highcharts.com/license
|
|
380
|
+
*
|
|
381
|
+
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
|
|
382
|
+
*
|
|
383
|
+
* */
|
|
384
|
+
var extend = U.extend,
|
|
385
|
+
isArray = U.isArray,
|
|
386
|
+
isNumber = U.isNumber,
|
|
387
|
+
isObject = U.isObject,
|
|
388
|
+
merge = U.merge,
|
|
389
|
+
pick = U.pick;
|
|
390
|
+
/* *
|
|
391
|
+
*
|
|
392
|
+
* Functions
|
|
393
|
+
*
|
|
394
|
+
* */
|
|
395
|
+
/* eslint-disable valid-jsdoc */
|
|
396
|
+
/**
|
|
397
|
+
* @private
|
|
398
|
+
*/
|
|
399
|
+
function getColor(node, options) {
|
|
400
|
+
var index = options.index,
|
|
401
|
+
mapOptionsToLevel = options.mapOptionsToLevel,
|
|
402
|
+
parentColor = options.parentColor,
|
|
403
|
+
parentColorIndex = options.parentColorIndex,
|
|
404
|
+
series = options.series,
|
|
405
|
+
colors = options.colors,
|
|
406
|
+
siblings = options.siblings,
|
|
407
|
+
points = series.points,
|
|
408
|
+
chartOptionsChart = series.chart.options.chart;
|
|
409
|
+
var getColorByPoint,
|
|
410
|
+
point,
|
|
411
|
+
level,
|
|
412
|
+
colorByPoint,
|
|
413
|
+
colorIndexByPoint,
|
|
414
|
+
color,
|
|
415
|
+
colorIndex;
|
|
416
|
+
/**
|
|
417
|
+
* @private
|
|
418
|
+
*/
|
|
419
|
+
var variateColor = function (color) {
|
|
420
|
+
var colorVariation = level && level.colorVariation;
|
|
421
|
+
if (colorVariation &&
|
|
422
|
+
colorVariation.key === 'brightness' &&
|
|
423
|
+
index &&
|
|
424
|
+
siblings) {
|
|
425
|
+
return Color.parse(color).brighten(colorVariation.to * (index / siblings)).get();
|
|
426
|
+
}
|
|
427
|
+
return color;
|
|
428
|
+
};
|
|
429
|
+
if (node) {
|
|
430
|
+
point = points[node.i];
|
|
431
|
+
level = mapOptionsToLevel[node.level] || {};
|
|
432
|
+
getColorByPoint = point && level.colorByPoint;
|
|
433
|
+
if (getColorByPoint) {
|
|
434
|
+
colorIndexByPoint = point.index % (colors ?
|
|
435
|
+
colors.length :
|
|
436
|
+
chartOptionsChart.colorCount);
|
|
437
|
+
colorByPoint = colors && colors[colorIndexByPoint];
|
|
438
|
+
}
|
|
439
|
+
// Select either point color, level color or inherited color.
|
|
440
|
+
if (!series.chart.styledMode) {
|
|
441
|
+
color = pick(point && point.options.color, level && level.color, colorByPoint, parentColor && variateColor(parentColor), series.color);
|
|
442
|
+
}
|
|
443
|
+
colorIndex = pick(point && point.options.colorIndex, level && level.colorIndex, colorIndexByPoint, parentColorIndex, options.colorIndex);
|
|
444
|
+
}
|
|
445
|
+
return {
|
|
446
|
+
color: color,
|
|
447
|
+
colorIndex: colorIndex
|
|
448
|
+
};
|
|
449
|
+
}
|
|
450
|
+
/**
|
|
451
|
+
* Creates a map from level number to its given options.
|
|
452
|
+
*
|
|
453
|
+
* @private
|
|
454
|
+
*
|
|
455
|
+
* @param {Object} params
|
|
456
|
+
* Object containing parameters.
|
|
457
|
+
* - `defaults` Object containing default options. The default options are
|
|
458
|
+
* merged with the userOptions to get the final options for a specific
|
|
459
|
+
* level.
|
|
460
|
+
* - `from` The lowest level number.
|
|
461
|
+
* - `levels` User options from series.levels.
|
|
462
|
+
* - `to` The highest level number.
|
|
463
|
+
*
|
|
464
|
+
* @return {Highcharts.Dictionary<object>|null}
|
|
465
|
+
* Returns a map from level number to its given options.
|
|
466
|
+
*/
|
|
467
|
+
function getLevelOptions(params) {
|
|
468
|
+
var result = null,
|
|
469
|
+
defaults,
|
|
470
|
+
converted,
|
|
471
|
+
i,
|
|
472
|
+
from,
|
|
473
|
+
to,
|
|
474
|
+
levels;
|
|
475
|
+
if (isObject(params)) {
|
|
476
|
+
result = {};
|
|
477
|
+
from = isNumber(params.from) ? params.from : 1;
|
|
478
|
+
levels = params.levels;
|
|
479
|
+
converted = {};
|
|
480
|
+
defaults = isObject(params.defaults) ? params.defaults : {};
|
|
481
|
+
if (isArray(levels)) {
|
|
482
|
+
converted = levels.reduce(function (obj, item) {
|
|
483
|
+
var level,
|
|
484
|
+
levelIsConstant,
|
|
485
|
+
options;
|
|
486
|
+
if (isObject(item) && isNumber(item.level)) {
|
|
487
|
+
options = merge({}, item);
|
|
488
|
+
levelIsConstant = pick(options.levelIsConstant, defaults.levelIsConstant);
|
|
489
|
+
// Delete redundant properties.
|
|
490
|
+
delete options.levelIsConstant;
|
|
491
|
+
delete options.level;
|
|
492
|
+
// Calculate which level these options apply to.
|
|
493
|
+
level = item.level + (levelIsConstant ? 0 : from - 1);
|
|
494
|
+
if (isObject(obj[level])) {
|
|
495
|
+
merge(true, obj[level], options); // #16329
|
|
496
|
+
}
|
|
497
|
+
else {
|
|
498
|
+
obj[level] = options;
|
|
499
|
+
}
|
|
500
|
+
}
|
|
501
|
+
return obj;
|
|
502
|
+
}, {});
|
|
503
|
+
}
|
|
504
|
+
to = isNumber(params.to) ? params.to : 1;
|
|
505
|
+
for (i = 0; i <= to; i++) {
|
|
506
|
+
result[i] = merge({}, defaults, isObject(converted[i]) ? converted[i] : {});
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
return result;
|
|
510
|
+
}
|
|
511
|
+
/**
|
|
512
|
+
* @private
|
|
513
|
+
* @todo Combine buildTree and buildNode with setTreeValues
|
|
514
|
+
* @todo Remove logic from Treemap and make it utilize this mixin.
|
|
515
|
+
*/
|
|
516
|
+
function setTreeValues(tree, options) {
|
|
517
|
+
var before = options.before,
|
|
518
|
+
idRoot = options.idRoot,
|
|
519
|
+
mapIdToNode = options.mapIdToNode,
|
|
520
|
+
nodeRoot = mapIdToNode[idRoot],
|
|
521
|
+
levelIsConstant = (options.levelIsConstant !== false),
|
|
522
|
+
points = options.points,
|
|
523
|
+
point = points[tree.i],
|
|
524
|
+
optionsPoint = point && point.options || {},
|
|
525
|
+
children = [];
|
|
526
|
+
var childrenTotal = 0;
|
|
527
|
+
tree.levelDynamic = tree.level - (levelIsConstant ? 0 : nodeRoot.level);
|
|
528
|
+
tree.name = pick(point && point.name, '');
|
|
529
|
+
tree.visible = (idRoot === tree.id ||
|
|
530
|
+
options.visible === true);
|
|
531
|
+
if (typeof before === 'function') {
|
|
532
|
+
tree = before(tree, options);
|
|
533
|
+
}
|
|
534
|
+
// First give the children some values
|
|
535
|
+
tree.children.forEach(function (child, i) {
|
|
536
|
+
var newOptions = extend({},
|
|
537
|
+
options);
|
|
538
|
+
extend(newOptions, {
|
|
539
|
+
index: i,
|
|
540
|
+
siblings: tree.children.length,
|
|
541
|
+
visible: tree.visible
|
|
542
|
+
});
|
|
543
|
+
child = setTreeValues(child, newOptions);
|
|
544
|
+
children.push(child);
|
|
545
|
+
if (child.visible) {
|
|
546
|
+
childrenTotal += child.val;
|
|
547
|
+
}
|
|
548
|
+
});
|
|
549
|
+
// Set the values
|
|
550
|
+
var value = pick(optionsPoint.value,
|
|
551
|
+
childrenTotal);
|
|
552
|
+
tree.visible = value >= 0 && (childrenTotal > 0 || tree.visible);
|
|
553
|
+
tree.children = children;
|
|
554
|
+
tree.childrenTotal = childrenTotal;
|
|
555
|
+
tree.isLeaf = tree.visible && !childrenTotal;
|
|
556
|
+
tree.val = value;
|
|
557
|
+
return tree;
|
|
558
|
+
}
|
|
559
|
+
/**
|
|
560
|
+
* Update the rootId property on the series. Also makes sure that it is
|
|
561
|
+
* accessible to exporting.
|
|
562
|
+
*
|
|
563
|
+
* @private
|
|
564
|
+
*
|
|
565
|
+
* @param {Object} series
|
|
566
|
+
* The series to operate on.
|
|
567
|
+
*
|
|
568
|
+
* @return {string}
|
|
569
|
+
* Returns the resulting rootId after update.
|
|
570
|
+
*/
|
|
571
|
+
function updateRootId(series) {
|
|
572
|
+
var rootId,
|
|
573
|
+
options;
|
|
574
|
+
if (isObject(series)) {
|
|
575
|
+
// Get the series options.
|
|
576
|
+
options = isObject(series.options) ? series.options : {};
|
|
577
|
+
// Calculate the rootId.
|
|
578
|
+
rootId = pick(series.rootNode, options.rootId, '');
|
|
579
|
+
// Set rootId on series.userOptions to pick it up in exporting.
|
|
580
|
+
if (isObject(series.userOptions)) {
|
|
581
|
+
series.userOptions.rootId = rootId;
|
|
582
|
+
}
|
|
583
|
+
// Set rootId on series to pick it up on next update.
|
|
584
|
+
series.rootNode = rootId;
|
|
585
|
+
}
|
|
586
|
+
return rootId;
|
|
587
|
+
}
|
|
588
|
+
/* *
|
|
589
|
+
*
|
|
590
|
+
* Default Export
|
|
591
|
+
*
|
|
592
|
+
* */
|
|
593
|
+
var TreeUtilities = {
|
|
594
|
+
getColor: getColor,
|
|
595
|
+
getLevelOptions: getLevelOptions,
|
|
596
|
+
setTreeValues: setTreeValues,
|
|
597
|
+
updateRootId: updateRootId
|
|
598
|
+
};
|
|
599
|
+
|
|
600
|
+
return TreeUtilities;
|
|
601
|
+
});
|
|
602
|
+
_registerModule(_modules, 'Series/Sankey/SankeySeries.js', [_modules['Core/Color/Color.js'], _modules['Core/Globals.js'], _modules['Series/NodesComposition.js'], _modules['Series/Sankey/SankeyPoint.js'], _modules['Core/Series/SeriesRegistry.js'], _modules['Series/TreeUtilities.js'], _modules['Core/Utilities.js']], function (Color, H, NodesComposition, SankeyPoint, SeriesRegistry, TU, U) {
|
|
603
|
+
/* *
|
|
604
|
+
*
|
|
605
|
+
* Sankey diagram module
|
|
606
|
+
*
|
|
607
|
+
* (c) 2010-2021 Torstein Honsi
|
|
608
|
+
*
|
|
609
|
+
* License: www.highcharts.com/license
|
|
610
|
+
*
|
|
611
|
+
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
|
|
612
|
+
*
|
|
613
|
+
* */
|
|
614
|
+
var __extends = (this && this.__extends) || (function () {
|
|
615
|
+
var extendStatics = function (d,
|
|
616
|
+
b) {
|
|
617
|
+
extendStatics = Object.setPrototypeOf ||
|
|
618
|
+
({ __proto__: [] } instanceof Array && function (d,
|
|
619
|
+
b) { d.__proto__ = b; }) ||
|
|
620
|
+
function (d,
|
|
621
|
+
b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
622
|
+
return extendStatics(d, b);
|
|
623
|
+
};
|
|
624
|
+
return function (d, b) {
|
|
625
|
+
extendStatics(d, b);
|
|
626
|
+
function __() { this.constructor = d; }
|
|
627
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
628
|
+
};
|
|
629
|
+
})();
|
|
630
|
+
var Series = SeriesRegistry.series,
|
|
631
|
+
ColumnSeries = SeriesRegistry.seriesTypes.column;
|
|
632
|
+
var getLevelOptions = TU.getLevelOptions;
|
|
633
|
+
var defined = U.defined,
|
|
634
|
+
extend = U.extend,
|
|
635
|
+
find = U.find,
|
|
636
|
+
isObject = U.isObject,
|
|
637
|
+
merge = U.merge,
|
|
638
|
+
pick = U.pick,
|
|
639
|
+
relativeLength = U.relativeLength,
|
|
640
|
+
stableSort = U.stableSort;
|
|
641
|
+
/* *
|
|
642
|
+
*
|
|
643
|
+
* Class
|
|
644
|
+
*
|
|
645
|
+
* */
|
|
646
|
+
/**
|
|
647
|
+
* @private
|
|
648
|
+
* @class
|
|
649
|
+
* @name Highcharts.seriesTypes.sankey
|
|
650
|
+
*
|
|
651
|
+
* @augments Highcharts.Series
|
|
652
|
+
*/
|
|
653
|
+
var SankeySeries = /** @class */ (function (_super) {
|
|
654
|
+
__extends(SankeySeries, _super);
|
|
655
|
+
function SankeySeries() {
|
|
656
|
+
/* *
|
|
657
|
+
*
|
|
658
|
+
* Static Properties
|
|
659
|
+
*
|
|
660
|
+
* */
|
|
661
|
+
var _this = _super !== null && _super.apply(this,
|
|
662
|
+
arguments) || this;
|
|
663
|
+
/* *
|
|
664
|
+
*
|
|
665
|
+
* Properties
|
|
666
|
+
*
|
|
667
|
+
* */
|
|
668
|
+
_this.colDistance = void 0;
|
|
669
|
+
_this.data = void 0;
|
|
670
|
+
_this.group = void 0;
|
|
671
|
+
_this.nodeLookup = void 0;
|
|
672
|
+
_this.nodePadding = void 0;
|
|
673
|
+
_this.nodes = void 0;
|
|
674
|
+
_this.nodeWidth = void 0;
|
|
675
|
+
_this.options = void 0;
|
|
676
|
+
_this.points = void 0;
|
|
677
|
+
_this.translationFactor = void 0;
|
|
678
|
+
return _this;
|
|
679
|
+
/* eslint-enable valid-jsdoc */
|
|
680
|
+
}
|
|
681
|
+
/* *
|
|
682
|
+
*
|
|
683
|
+
* Static Functions
|
|
684
|
+
*
|
|
685
|
+
* */
|
|
686
|
+
// eslint-disable-next-line valid-jsdoc
|
|
687
|
+
/**
|
|
688
|
+
* @private
|
|
689
|
+
*/
|
|
690
|
+
SankeySeries.getDLOptions = function (params) {
|
|
691
|
+
var optionsPoint = (isObject(params.optionsPoint) ?
|
|
692
|
+
params.optionsPoint.dataLabels :
|
|
693
|
+
{}),
|
|
694
|
+
optionsLevel = (isObject(params.level) ?
|
|
695
|
+
params.level.dataLabels :
|
|
696
|
+
{}),
|
|
697
|
+
options = merge({
|
|
698
|
+
style: {}
|
|
699
|
+
},
|
|
700
|
+
optionsLevel,
|
|
701
|
+
optionsPoint);
|
|
702
|
+
return options;
|
|
703
|
+
};
|
|
704
|
+
/* *
|
|
705
|
+
*
|
|
706
|
+
* Functions
|
|
707
|
+
*
|
|
708
|
+
* */
|
|
709
|
+
/* eslint-disable valid-jsdoc */
|
|
710
|
+
/**
|
|
711
|
+
* Create a node column.
|
|
712
|
+
* @private
|
|
713
|
+
*/
|
|
714
|
+
SankeySeries.prototype.createNodeColumn = function () {
|
|
715
|
+
var series = this,
|
|
716
|
+
chart = this.chart,
|
|
717
|
+
column = [];
|
|
718
|
+
column.sum = function () {
|
|
719
|
+
return this.reduce(function (sum, node) {
|
|
720
|
+
return sum + node.getSum();
|
|
721
|
+
}, 0);
|
|
722
|
+
};
|
|
723
|
+
// Get the offset in pixels of a node inside the column.
|
|
724
|
+
column.offset = function (node, factor) {
|
|
725
|
+
var offset = 0,
|
|
726
|
+
totalNodeOffset,
|
|
727
|
+
nodePadding = series.nodePadding;
|
|
728
|
+
for (var i = 0; i < column.length; i++) {
|
|
729
|
+
var sum = column[i].getSum(),
|
|
730
|
+
height = Math.max(sum * factor,
|
|
731
|
+
series.options.minLinkWidth),
|
|
732
|
+
directionOffset = node.options[chart.inverted ?
|
|
733
|
+
'offsetHorizontal' :
|
|
734
|
+
'offsetVertical'],
|
|
735
|
+
optionOffset = node.options.offset || 0;
|
|
736
|
+
if (sum) {
|
|
737
|
+
totalNodeOffset = height + nodePadding;
|
|
738
|
+
}
|
|
739
|
+
else {
|
|
740
|
+
// If node sum equals 0 nodePadding is missed #12453
|
|
741
|
+
totalNodeOffset = 0;
|
|
742
|
+
}
|
|
743
|
+
if (column[i] === node) {
|
|
744
|
+
return {
|
|
745
|
+
relativeTop: offset + (defined(directionOffset) ?
|
|
746
|
+
// directionOffset is a percent of the node height
|
|
747
|
+
relativeLength(directionOffset, height) : relativeLength(optionOffset, totalNodeOffset))
|
|
748
|
+
};
|
|
749
|
+
}
|
|
750
|
+
offset += totalNodeOffset;
|
|
751
|
+
}
|
|
752
|
+
};
|
|
753
|
+
// Get the top position of the column in pixels.
|
|
754
|
+
column.top = function (factor) {
|
|
755
|
+
var nodePadding = series.nodePadding;
|
|
756
|
+
var height = this.reduce(function (height,
|
|
757
|
+
node) {
|
|
758
|
+
if (height > 0) {
|
|
759
|
+
height += nodePadding;
|
|
760
|
+
}
|
|
761
|
+
var nodeHeight = Math.max(node.getSum() * factor,
|
|
762
|
+
series.options.minLinkWidth);
|
|
763
|
+
height += nodeHeight;
|
|
764
|
+
return height;
|
|
765
|
+
}, 0);
|
|
766
|
+
return (chart.plotSizeY - height) / 2;
|
|
767
|
+
};
|
|
768
|
+
return column;
|
|
769
|
+
};
|
|
770
|
+
/**
|
|
771
|
+
* Create node columns by analyzing the nodes and the relations between
|
|
772
|
+
* incoming and outgoing links.
|
|
773
|
+
* @private
|
|
774
|
+
*/
|
|
775
|
+
SankeySeries.prototype.createNodeColumns = function () {
|
|
776
|
+
var columns = [];
|
|
777
|
+
this.nodes.forEach(function (node) {
|
|
778
|
+
var fromColumn = -1,
|
|
779
|
+
fromNode;
|
|
780
|
+
if (!defined(node.options.column)) {
|
|
781
|
+
// No links to this node, place it left
|
|
782
|
+
if (node.linksTo.length === 0) {
|
|
783
|
+
node.column = 0;
|
|
784
|
+
// There are incoming links, place it to the right of the
|
|
785
|
+
// highest order column that links to this one.
|
|
786
|
+
}
|
|
787
|
+
else {
|
|
788
|
+
for (var i = 0; i < node.linksTo.length; i++) {
|
|
789
|
+
var point = node.linksTo[i];
|
|
790
|
+
if (point.fromNode.column > fromColumn &&
|
|
791
|
+
point.fromNode !== node // #16080
|
|
792
|
+
) {
|
|
793
|
+
fromNode = point.fromNode;
|
|
794
|
+
fromColumn = fromNode.column;
|
|
795
|
+
}
|
|
796
|
+
}
|
|
797
|
+
node.column = fromColumn + 1;
|
|
798
|
+
// Hanging layout for organization chart
|
|
799
|
+
if (fromNode &&
|
|
800
|
+
fromNode.options.layout === 'hanging') {
|
|
801
|
+
node.hangsFrom = fromNode;
|
|
802
|
+
var i_1 = -1;
|
|
803
|
+
find(fromNode.linksFrom, function (link, index) {
|
|
804
|
+
var found = link.toNode === node;
|
|
805
|
+
if (found) {
|
|
806
|
+
i_1 = index;
|
|
807
|
+
}
|
|
808
|
+
return found;
|
|
809
|
+
});
|
|
810
|
+
node.column += i_1;
|
|
811
|
+
}
|
|
812
|
+
}
|
|
813
|
+
}
|
|
814
|
+
if (!columns[node.column]) {
|
|
815
|
+
columns[node.column] = this.createNodeColumn();
|
|
816
|
+
}
|
|
817
|
+
columns[node.column].push(node);
|
|
818
|
+
}, this);
|
|
819
|
+
// Fill in empty columns (#8865)
|
|
820
|
+
for (var i = 0; i < columns.length; i++) {
|
|
821
|
+
if (typeof columns[i] === 'undefined') {
|
|
822
|
+
columns[i] = this.createNodeColumn();
|
|
823
|
+
}
|
|
824
|
+
}
|
|
825
|
+
return columns;
|
|
826
|
+
};
|
|
827
|
+
/**
|
|
828
|
+
* Extend generatePoints by adding the nodes, which are Point objects
|
|
829
|
+
* but pushed to the this.nodes array.
|
|
830
|
+
* @private
|
|
831
|
+
*/
|
|
832
|
+
SankeySeries.prototype.generatePoints = function () {
|
|
833
|
+
NodesComposition.generatePoints.apply(this, arguments);
|
|
834
|
+
/**
|
|
835
|
+
* Order the nodes, starting with the root node(s). (#9818)
|
|
836
|
+
* @private
|
|
837
|
+
*/
|
|
838
|
+
function order(node, level) {
|
|
839
|
+
// Prevents circular recursion:
|
|
840
|
+
if (typeof node.level === 'undefined') {
|
|
841
|
+
node.level = level;
|
|
842
|
+
node.linksFrom.forEach(function (link) {
|
|
843
|
+
if (link.toNode) {
|
|
844
|
+
order(link.toNode, level + 1);
|
|
845
|
+
}
|
|
846
|
+
});
|
|
847
|
+
}
|
|
848
|
+
}
|
|
849
|
+
if (this.orderNodes) {
|
|
850
|
+
this.nodes
|
|
851
|
+
// Identify the root node(s)
|
|
852
|
+
.filter(function (node) {
|
|
853
|
+
return node.linksTo.length === 0;
|
|
854
|
+
})
|
|
855
|
+
// Start by the root node(s) and recursively set the level
|
|
856
|
+
// on all following nodes.
|
|
857
|
+
.forEach(function (node) {
|
|
858
|
+
order(node, 0);
|
|
859
|
+
});
|
|
860
|
+
stableSort(this.nodes, function (a, b) {
|
|
861
|
+
return a.level - b.level;
|
|
862
|
+
});
|
|
863
|
+
}
|
|
864
|
+
};
|
|
865
|
+
/**
|
|
866
|
+
* Overridable function to get node padding, overridden in dependency
|
|
867
|
+
* wheel series type.
|
|
868
|
+
* @private
|
|
869
|
+
*/
|
|
870
|
+
SankeySeries.prototype.getNodePadding = function () {
|
|
871
|
+
var nodePadding = this.options.nodePadding || 0;
|
|
872
|
+
// If the number of columns is so great that they will overflow with
|
|
873
|
+
// the given nodePadding, we sacrifice the padding in order to
|
|
874
|
+
// render all nodes within the plot area (#11917).
|
|
875
|
+
if (this.nodeColumns) {
|
|
876
|
+
var maxLength = this.nodeColumns.reduce(function (acc,
|
|
877
|
+
col) { return Math.max(acc,
|
|
878
|
+
col.length); }, 0);
|
|
879
|
+
if (maxLength * nodePadding > this.chart.plotSizeY) {
|
|
880
|
+
nodePadding = this.chart.plotSizeY / maxLength;
|
|
881
|
+
}
|
|
882
|
+
}
|
|
883
|
+
return nodePadding;
|
|
884
|
+
};
|
|
885
|
+
/**
|
|
886
|
+
* Define hasData function for non-cartesian series.
|
|
887
|
+
* @private
|
|
888
|
+
* @return {boolean}
|
|
889
|
+
* Returns true if the series has points at all.
|
|
890
|
+
*/
|
|
891
|
+
SankeySeries.prototype.hasData = function () {
|
|
892
|
+
return !!this.processedXData.length; // != 0
|
|
893
|
+
};
|
|
894
|
+
/**
|
|
895
|
+
* Return the presentational attributes.
|
|
896
|
+
* @private
|
|
897
|
+
*/
|
|
898
|
+
SankeySeries.prototype.pointAttribs = function (point, state) {
|
|
899
|
+
if (!point) {
|
|
900
|
+
return {};
|
|
901
|
+
}
|
|
902
|
+
var series = this, level = point.isNode ? point.level : point.fromNode.level, levelOptions = series.mapOptionsToLevel[level || 0] || {}, options = point.options, stateOptions = (levelOptions.states && levelOptions.states[state || '']) || {}, values = [
|
|
903
|
+
'colorByPoint', 'borderColor', 'borderWidth', 'linkOpacity'
|
|
904
|
+
].reduce(function (obj, key) {
|
|
905
|
+
obj[key] = pick(stateOptions[key], options[key], levelOptions[key], series.options[key]);
|
|
906
|
+
return obj;
|
|
907
|
+
}, {}), color = pick(stateOptions.color, options.color, values.colorByPoint ? point.color : levelOptions.color);
|
|
908
|
+
// Node attributes
|
|
909
|
+
if (point.isNode) {
|
|
910
|
+
return {
|
|
911
|
+
fill: color,
|
|
912
|
+
stroke: values.borderColor,
|
|
913
|
+
'stroke-width': values.borderWidth
|
|
914
|
+
};
|
|
915
|
+
}
|
|
916
|
+
// Link attributes
|
|
917
|
+
return {
|
|
918
|
+
fill: Color.parse(color).setOpacity(values.linkOpacity).get()
|
|
919
|
+
};
|
|
920
|
+
};
|
|
921
|
+
/**
|
|
922
|
+
* Extend the render function to also render this.nodes together with
|
|
923
|
+
* the points.
|
|
924
|
+
* @private
|
|
925
|
+
*/
|
|
926
|
+
SankeySeries.prototype.render = function () {
|
|
927
|
+
var points = this.points;
|
|
928
|
+
this.points = this.points.concat(this.nodes || []);
|
|
929
|
+
ColumnSeries.prototype.render.call(this);
|
|
930
|
+
this.points = points;
|
|
931
|
+
};
|
|
932
|
+
/**
|
|
933
|
+
* Run pre-translation by generating the nodeColumns.
|
|
934
|
+
* @private
|
|
935
|
+
*/
|
|
936
|
+
SankeySeries.prototype.translate = function () {
|
|
937
|
+
var _this = this;
|
|
938
|
+
// Get the translation factor needed for each column to fill up the
|
|
939
|
+
// plot height
|
|
940
|
+
var getColumnTranslationFactor = function (column) {
|
|
941
|
+
var nodes = column.slice();
|
|
942
|
+
var minLinkWidth = _this.options.minLinkWidth || 0;
|
|
943
|
+
var exceedsMinLinkWidth;
|
|
944
|
+
var factor = 0;
|
|
945
|
+
var i;
|
|
946
|
+
var remainingHeight = (chart.plotSizeY -
|
|
947
|
+
options.borderWidth -
|
|
948
|
+
(column.length - 1) * series.nodePadding);
|
|
949
|
+
// Because the minLinkWidth option doesn't obey the direct
|
|
950
|
+
// translation, we need to run translation iteratively, check
|
|
951
|
+
// node heights, remove those nodes affected by minLinkWidth,
|
|
952
|
+
// check again, etc.
|
|
953
|
+
while (column.length) {
|
|
954
|
+
factor = remainingHeight / column.sum();
|
|
955
|
+
exceedsMinLinkWidth = false;
|
|
956
|
+
i = column.length;
|
|
957
|
+
while (i--) {
|
|
958
|
+
if (column[i].getSum() * factor < minLinkWidth) {
|
|
959
|
+
column.splice(i, 1);
|
|
960
|
+
remainingHeight -= minLinkWidth;
|
|
961
|
+
exceedsMinLinkWidth = true;
|
|
962
|
+
}
|
|
963
|
+
}
|
|
964
|
+
if (!exceedsMinLinkWidth) {
|
|
965
|
+
break;
|
|
966
|
+
}
|
|
967
|
+
}
|
|
968
|
+
// Re-insert original nodes
|
|
969
|
+
column.length = 0;
|
|
970
|
+
nodes.forEach(function (node) { return column.push(node); });
|
|
971
|
+
return factor;
|
|
972
|
+
};
|
|
973
|
+
if (!this.processedXData) {
|
|
974
|
+
this.processData();
|
|
975
|
+
}
|
|
976
|
+
this.generatePoints();
|
|
977
|
+
this.nodeColumns = this.createNodeColumns();
|
|
978
|
+
this.nodeWidth = relativeLength(this.options.nodeWidth, this.chart.plotSizeX);
|
|
979
|
+
var series = this,
|
|
980
|
+
chart = this.chart,
|
|
981
|
+
options = this.options,
|
|
982
|
+
nodeWidth = this.nodeWidth,
|
|
983
|
+
nodeColumns = this.nodeColumns;
|
|
984
|
+
this.nodePadding = this.getNodePadding();
|
|
985
|
+
// Find out how much space is needed. Base it on the translation
|
|
986
|
+
// factor of the most spaceous column.
|
|
987
|
+
this.translationFactor = nodeColumns.reduce(function (translationFactor, column) { return Math.min(translationFactor, getColumnTranslationFactor(column)); }, Infinity);
|
|
988
|
+
this.colDistance =
|
|
989
|
+
(chart.plotSizeX - nodeWidth -
|
|
990
|
+
options.borderWidth) / Math.max(1, nodeColumns.length - 1);
|
|
991
|
+
// Calculate level options used in sankey and organization
|
|
992
|
+
series.mapOptionsToLevel = getLevelOptions({
|
|
993
|
+
// NOTE: if support for allowTraversingTree is added, then from
|
|
994
|
+
// should be the level of the root node.
|
|
995
|
+
from: 1,
|
|
996
|
+
levels: options.levels,
|
|
997
|
+
to: nodeColumns.length - 1,
|
|
998
|
+
defaults: {
|
|
999
|
+
borderColor: options.borderColor,
|
|
1000
|
+
borderRadius: options.borderRadius,
|
|
1001
|
+
borderWidth: options.borderWidth,
|
|
1002
|
+
color: series.color,
|
|
1003
|
+
colorByPoint: options.colorByPoint,
|
|
1004
|
+
// NOTE: if support for allowTraversingTree is added, then
|
|
1005
|
+
// levelIsConstant should be optional.
|
|
1006
|
+
levelIsConstant: true,
|
|
1007
|
+
linkColor: options.linkColor,
|
|
1008
|
+
linkLineWidth: options.linkLineWidth,
|
|
1009
|
+
linkOpacity: options.linkOpacity,
|
|
1010
|
+
states: options.states
|
|
1011
|
+
}
|
|
1012
|
+
});
|
|
1013
|
+
// First translate all nodes so we can use them when drawing links
|
|
1014
|
+
nodeColumns.forEach(function (column) {
|
|
1015
|
+
column.forEach(function (node) {
|
|
1016
|
+
series.translateNode(node, column);
|
|
1017
|
+
});
|
|
1018
|
+
}, this);
|
|
1019
|
+
// Then translate links
|
|
1020
|
+
this.nodes.forEach(function (node) {
|
|
1021
|
+
// Translate the links from this node
|
|
1022
|
+
node.linksFrom.forEach(function (linkPoint) {
|
|
1023
|
+
// If weight is 0 - don't render the link path #12453,
|
|
1024
|
+
// render null points (for organization chart)
|
|
1025
|
+
if ((linkPoint.weight || linkPoint.isNull) && linkPoint.to) {
|
|
1026
|
+
series.translateLink(linkPoint);
|
|
1027
|
+
linkPoint.allowShadow = false;
|
|
1028
|
+
}
|
|
1029
|
+
});
|
|
1030
|
+
});
|
|
1031
|
+
};
|
|
1032
|
+
/**
|
|
1033
|
+
* Run translation operations for one link.
|
|
1034
|
+
* @private
|
|
1035
|
+
*/
|
|
1036
|
+
SankeySeries.prototype.translateLink = function (point) {
|
|
1037
|
+
var getY = function (node,
|
|
1038
|
+
fromOrTo) {
|
|
1039
|
+
var linkTop = (node.offset(point,
|
|
1040
|
+
fromOrTo) *
|
|
1041
|
+
translationFactor);
|
|
1042
|
+
var y = Math.min(node.nodeY + linkTop,
|
|
1043
|
+
// Prevent links from spilling below the node (#12014)
|
|
1044
|
+
node.nodeY + (node.shapeArgs && node.shapeArgs.height || 0) - linkHeight);
|
|
1045
|
+
return y;
|
|
1046
|
+
};
|
|
1047
|
+
var fromNode = point.fromNode, toNode = point.toNode, chart = this.chart, translationFactor = this.translationFactor, linkHeight = Math.max(point.weight * translationFactor, this.options.minLinkWidth), options = this.options, curvy = ((chart.inverted ? -this.colDistance : this.colDistance) *
|
|
1048
|
+
options.curveFactor), fromY = getY(fromNode, 'linksFrom'), toY = getY(toNode, 'linksTo'), nodeLeft = fromNode.nodeX, nodeW = this.nodeWidth, right = toNode.nodeX, outgoing = point.outgoing, straight = right > nodeLeft + nodeW;
|
|
1049
|
+
if (chart.inverted) {
|
|
1050
|
+
fromY = chart.plotSizeY - fromY;
|
|
1051
|
+
toY = (chart.plotSizeY || 0) - toY;
|
|
1052
|
+
nodeW = -nodeW;
|
|
1053
|
+
linkHeight = -linkHeight;
|
|
1054
|
+
straight = nodeLeft > right;
|
|
1055
|
+
}
|
|
1056
|
+
point.shapeType = 'path';
|
|
1057
|
+
point.linkBase = [
|
|
1058
|
+
fromY,
|
|
1059
|
+
fromY + linkHeight,
|
|
1060
|
+
toY,
|
|
1061
|
+
toY + linkHeight
|
|
1062
|
+
];
|
|
1063
|
+
// Links going from left to right
|
|
1064
|
+
if (straight && typeof toY === 'number') {
|
|
1065
|
+
point.shapeArgs = {
|
|
1066
|
+
d: [
|
|
1067
|
+
['M', nodeLeft + nodeW, fromY],
|
|
1068
|
+
[
|
|
1069
|
+
'C',
|
|
1070
|
+
nodeLeft + nodeW + curvy,
|
|
1071
|
+
fromY,
|
|
1072
|
+
right - curvy,
|
|
1073
|
+
toY,
|
|
1074
|
+
right,
|
|
1075
|
+
toY
|
|
1076
|
+
],
|
|
1077
|
+
['L', right + (outgoing ? nodeW : 0), toY + linkHeight / 2],
|
|
1078
|
+
['L', right, toY + linkHeight],
|
|
1079
|
+
[
|
|
1080
|
+
'C',
|
|
1081
|
+
right - curvy,
|
|
1082
|
+
toY + linkHeight,
|
|
1083
|
+
nodeLeft + nodeW + curvy,
|
|
1084
|
+
fromY + linkHeight,
|
|
1085
|
+
nodeLeft + nodeW, fromY + linkHeight
|
|
1086
|
+
],
|
|
1087
|
+
['Z']
|
|
1088
|
+
]
|
|
1089
|
+
};
|
|
1090
|
+
// Experimental: Circular links pointing backwards. In
|
|
1091
|
+
// v6.1.0 this breaks the rendering completely, so even
|
|
1092
|
+
// this experimental rendering is an improvement. #8218.
|
|
1093
|
+
// @todo
|
|
1094
|
+
// - Make room for the link in the layout
|
|
1095
|
+
// - Automatically determine if the link should go up or
|
|
1096
|
+
// down.
|
|
1097
|
+
}
|
|
1098
|
+
else if (typeof toY === 'number') {
|
|
1099
|
+
var bend = 20,
|
|
1100
|
+
vDist = chart.plotHeight - fromY - linkHeight,
|
|
1101
|
+
x1 = right - bend - linkHeight,
|
|
1102
|
+
x2 = right - bend,
|
|
1103
|
+
x3 = right,
|
|
1104
|
+
x4 = nodeLeft + nodeW,
|
|
1105
|
+
x5 = x4 + bend,
|
|
1106
|
+
x6 = x5 + linkHeight,
|
|
1107
|
+
fy1 = fromY,
|
|
1108
|
+
fy2 = fromY + linkHeight,
|
|
1109
|
+
fy3 = fy2 + bend,
|
|
1110
|
+
y4 = fy3 + vDist,
|
|
1111
|
+
y5 = y4 + bend,
|
|
1112
|
+
y6 = y5 + linkHeight,
|
|
1113
|
+
ty1 = toY,
|
|
1114
|
+
ty2 = ty1 + linkHeight,
|
|
1115
|
+
ty3 = ty2 + bend,
|
|
1116
|
+
cfy1 = fy2 - linkHeight * 0.7,
|
|
1117
|
+
cy2 = y5 + linkHeight * 0.7,
|
|
1118
|
+
cty1 = ty2 - linkHeight * 0.7,
|
|
1119
|
+
cx1 = x3 - linkHeight * 0.7,
|
|
1120
|
+
cx2 = x4 + linkHeight * 0.7;
|
|
1121
|
+
point.shapeArgs = {
|
|
1122
|
+
d: [
|
|
1123
|
+
['M', x4, fy1],
|
|
1124
|
+
['C', cx2, fy1, x6, cfy1, x6, fy3],
|
|
1125
|
+
['L', x6, y4],
|
|
1126
|
+
['C', x6, cy2, cx2, y6, x4, y6],
|
|
1127
|
+
['L', x3, y6],
|
|
1128
|
+
['C', cx1, y6, x1, cy2, x1, y4],
|
|
1129
|
+
['L', x1, ty3],
|
|
1130
|
+
['C', x1, cty1, cx1, ty1, x3, ty1],
|
|
1131
|
+
['L', x3, ty2],
|
|
1132
|
+
['C', x2, ty2, x2, ty2, x2, ty3],
|
|
1133
|
+
['L', x2, y4],
|
|
1134
|
+
['C', x2, y5, x2, y5, x3, y5],
|
|
1135
|
+
['L', x4, y5],
|
|
1136
|
+
['C', x5, y5, x5, y5, x5, y4],
|
|
1137
|
+
['L', x5, fy3],
|
|
1138
|
+
['C', x5, fy2, x5, fy2, x4, fy2],
|
|
1139
|
+
['Z']
|
|
1140
|
+
]
|
|
1141
|
+
};
|
|
1142
|
+
}
|
|
1143
|
+
// Place data labels in the middle
|
|
1144
|
+
point.dlBox = {
|
|
1145
|
+
x: nodeLeft + (right - nodeLeft + nodeW) / 2,
|
|
1146
|
+
y: fromY + (toY - fromY) / 2,
|
|
1147
|
+
height: linkHeight,
|
|
1148
|
+
width: 0
|
|
1149
|
+
};
|
|
1150
|
+
// And set the tooltip anchor in the middle
|
|
1151
|
+
point.tooltipPos = chart.inverted ? [
|
|
1152
|
+
chart.plotSizeY - point.dlBox.y - linkHeight / 2,
|
|
1153
|
+
chart.plotSizeX - point.dlBox.x
|
|
1154
|
+
] : [
|
|
1155
|
+
point.dlBox.x,
|
|
1156
|
+
point.dlBox.y + linkHeight / 2
|
|
1157
|
+
];
|
|
1158
|
+
// Pass test in drawPoints
|
|
1159
|
+
point.y = point.plotY = 1;
|
|
1160
|
+
if (!point.color) {
|
|
1161
|
+
point.color = fromNode.color;
|
|
1162
|
+
}
|
|
1163
|
+
};
|
|
1164
|
+
/**
|
|
1165
|
+
* Run translation operations for one node.
|
|
1166
|
+
* @private
|
|
1167
|
+
*/
|
|
1168
|
+
SankeySeries.prototype.translateNode = function (node, column) {
|
|
1169
|
+
var translationFactor = this.translationFactor,
|
|
1170
|
+
chart = this.chart,
|
|
1171
|
+
options = this.options,
|
|
1172
|
+
sum = node.getSum(),
|
|
1173
|
+
nodeHeight = Math.max(Math.round(sum * translationFactor),
|
|
1174
|
+
this.options.minLinkWidth),
|
|
1175
|
+
nodeWidth = Math.round(this.nodeWidth),
|
|
1176
|
+
crisp = Math.round(options.borderWidth) % 2 / 2,
|
|
1177
|
+
nodeOffset = column.offset(node,
|
|
1178
|
+
translationFactor),
|
|
1179
|
+
fromNodeTop = Math.floor(pick(nodeOffset.absoluteTop, (column.top(translationFactor) +
|
|
1180
|
+
nodeOffset.relativeTop))) + crisp,
|
|
1181
|
+
left = Math.floor(this.colDistance * node.column +
|
|
1182
|
+
options.borderWidth / 2) + relativeLength(node.options.offsetHorizontal || 0,
|
|
1183
|
+
nodeWidth) +
|
|
1184
|
+
crisp,
|
|
1185
|
+
nodeLeft = chart.inverted ?
|
|
1186
|
+
chart.plotSizeX - left :
|
|
1187
|
+
left;
|
|
1188
|
+
node.sum = sum;
|
|
1189
|
+
// If node sum is 0, don't render the rect #12453
|
|
1190
|
+
if (sum) {
|
|
1191
|
+
// Draw the node
|
|
1192
|
+
node.shapeType = 'rect';
|
|
1193
|
+
node.nodeX = nodeLeft;
|
|
1194
|
+
node.nodeY = fromNodeTop;
|
|
1195
|
+
var x = nodeLeft,
|
|
1196
|
+
y = fromNodeTop,
|
|
1197
|
+
width = node.options.width || options.width || nodeWidth,
|
|
1198
|
+
height = node.options.height || options.height || nodeHeight;
|
|
1199
|
+
if (chart.inverted) {
|
|
1200
|
+
x = nodeLeft - nodeWidth;
|
|
1201
|
+
y = chart.plotSizeY - fromNodeTop - nodeHeight;
|
|
1202
|
+
width = node.options.height || options.height || nodeWidth;
|
|
1203
|
+
height = node.options.width || options.width || nodeHeight;
|
|
1204
|
+
}
|
|
1205
|
+
// Calculate data label options for the point
|
|
1206
|
+
node.dlOptions = SankeySeries.getDLOptions({
|
|
1207
|
+
level: this.mapOptionsToLevel[node.level],
|
|
1208
|
+
optionsPoint: node.options
|
|
1209
|
+
});
|
|
1210
|
+
// Pass test in drawPoints
|
|
1211
|
+
node.plotX = 1;
|
|
1212
|
+
node.plotY = 1;
|
|
1213
|
+
// Set the anchor position for tooltips
|
|
1214
|
+
node.tooltipPos = chart.inverted ? [
|
|
1215
|
+
chart.plotSizeY - y - height / 2,
|
|
1216
|
+
chart.plotSizeX - x - width / 2
|
|
1217
|
+
] : [
|
|
1218
|
+
x + width / 2,
|
|
1219
|
+
y + height / 2
|
|
1220
|
+
];
|
|
1221
|
+
node.shapeArgs = {
|
|
1222
|
+
x: x,
|
|
1223
|
+
y: y,
|
|
1224
|
+
width: width,
|
|
1225
|
+
height: height,
|
|
1226
|
+
display: node.hasShape() ? '' : 'none'
|
|
1227
|
+
};
|
|
1228
|
+
}
|
|
1229
|
+
else {
|
|
1230
|
+
node.dlOptions = {
|
|
1231
|
+
enabled: false
|
|
1232
|
+
};
|
|
1233
|
+
}
|
|
1234
|
+
};
|
|
1235
|
+
/**
|
|
1236
|
+
* A sankey diagram is a type of flow diagram, in which the width of the
|
|
1237
|
+
* link between two nodes is shown proportionally to the flow quantity.
|
|
1238
|
+
*
|
|
1239
|
+
* @sample highcharts/demo/sankey-diagram/
|
|
1240
|
+
* Sankey diagram
|
|
1241
|
+
* @sample highcharts/plotoptions/sankey-inverted/
|
|
1242
|
+
* Inverted sankey diagram
|
|
1243
|
+
* @sample highcharts/plotoptions/sankey-outgoing
|
|
1244
|
+
* Sankey diagram with outgoing links
|
|
1245
|
+
*
|
|
1246
|
+
* @extends plotOptions.column
|
|
1247
|
+
* @since 6.0.0
|
|
1248
|
+
* @product highcharts
|
|
1249
|
+
* @excluding animationLimit, boostThreshold, borderRadius,
|
|
1250
|
+
* crisp, cropThreshold, colorAxis, colorKey, depth, dragDrop,
|
|
1251
|
+
* edgeColor, edgeWidth, findNearestPointBy, grouping,
|
|
1252
|
+
* groupPadding, groupZPadding, maxPointWidth, negativeColor,
|
|
1253
|
+
* pointInterval, pointIntervalUnit, pointPadding,
|
|
1254
|
+
* pointPlacement, pointRange, pointStart, pointWidth,
|
|
1255
|
+
* shadow, softThreshold, stacking, threshold, zoneAxis,
|
|
1256
|
+
* zones, minPointLength, dataSorting, boostBlending
|
|
1257
|
+
* @requires modules/sankey
|
|
1258
|
+
* @optionparent plotOptions.sankey
|
|
1259
|
+
*/
|
|
1260
|
+
SankeySeries.defaultOptions = merge(ColumnSeries.defaultOptions, {
|
|
1261
|
+
borderWidth: 0,
|
|
1262
|
+
colorByPoint: true,
|
|
1263
|
+
/**
|
|
1264
|
+
* Higher numbers makes the links in a sankey diagram or dependency
|
|
1265
|
+
* wheelrender more curved. A `curveFactor` of 0 makes the lines
|
|
1266
|
+
* straight.
|
|
1267
|
+
*
|
|
1268
|
+
* @private
|
|
1269
|
+
*/
|
|
1270
|
+
curveFactor: 0.33,
|
|
1271
|
+
/**
|
|
1272
|
+
* Options for the data labels appearing on top of the nodes and links.
|
|
1273
|
+
* For sankey charts, data labels are visible for the nodes by default,
|
|
1274
|
+
* but hidden for links. This is controlled by modifying the
|
|
1275
|
+
* `nodeFormat`, and the `format` that applies to links and is an empty
|
|
1276
|
+
* string by default.
|
|
1277
|
+
*
|
|
1278
|
+
* @declare Highcharts.SeriesSankeyDataLabelsOptionsObject
|
|
1279
|
+
*
|
|
1280
|
+
* @private
|
|
1281
|
+
*/
|
|
1282
|
+
dataLabels: {
|
|
1283
|
+
enabled: true,
|
|
1284
|
+
backgroundColor: 'none',
|
|
1285
|
+
crop: false,
|
|
1286
|
+
/**
|
|
1287
|
+
* The
|
|
1288
|
+
* [format string](https://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting)
|
|
1289
|
+
* specifying what to show for _nodes_ in the sankey diagram. By
|
|
1290
|
+
* default the `nodeFormatter` returns `{point.name}`.
|
|
1291
|
+
*
|
|
1292
|
+
* @sample highcharts/plotoptions/sankey-link-datalabels/
|
|
1293
|
+
* Node and link data labels
|
|
1294
|
+
*
|
|
1295
|
+
* @type {string}
|
|
1296
|
+
*/
|
|
1297
|
+
nodeFormat: void 0,
|
|
1298
|
+
// eslint-disable-next-line valid-jsdoc
|
|
1299
|
+
/**
|
|
1300
|
+
* Callback to format data labels for _nodes_ in the sankey diagram.
|
|
1301
|
+
* The `nodeFormat` option takes precedence over the
|
|
1302
|
+
* `nodeFormatter`.
|
|
1303
|
+
*
|
|
1304
|
+
* @type {Highcharts.SeriesSankeyDataLabelsFormatterCallbackFunction}
|
|
1305
|
+
* @since 6.0.2
|
|
1306
|
+
*/
|
|
1307
|
+
nodeFormatter: function () {
|
|
1308
|
+
return this.point.name;
|
|
1309
|
+
},
|
|
1310
|
+
format: void 0,
|
|
1311
|
+
// eslint-disable-next-line valid-jsdoc
|
|
1312
|
+
/**
|
|
1313
|
+
* @type {Highcharts.SeriesSankeyDataLabelsFormatterCallbackFunction}
|
|
1314
|
+
*/
|
|
1315
|
+
formatter: function () {
|
|
1316
|
+
return;
|
|
1317
|
+
},
|
|
1318
|
+
inside: true
|
|
1319
|
+
},
|
|
1320
|
+
/**
|
|
1321
|
+
* @ignore-option
|
|
1322
|
+
*
|
|
1323
|
+
* @private
|
|
1324
|
+
*/
|
|
1325
|
+
inactiveOtherPoints: true,
|
|
1326
|
+
/**
|
|
1327
|
+
* Set options on specific levels. Takes precedence over series options,
|
|
1328
|
+
* but not node and link options.
|
|
1329
|
+
*
|
|
1330
|
+
* @sample highcharts/demo/sunburst
|
|
1331
|
+
* Sunburst chart
|
|
1332
|
+
*
|
|
1333
|
+
* @type {Array<*>}
|
|
1334
|
+
* @since 7.1.0
|
|
1335
|
+
* @apioption plotOptions.sankey.levels
|
|
1336
|
+
*/
|
|
1337
|
+
/**
|
|
1338
|
+
* Can set `borderColor` on all nodes which lay on the same level.
|
|
1339
|
+
*
|
|
1340
|
+
* @type {Highcharts.ColorString}
|
|
1341
|
+
* @apioption plotOptions.sankey.levels.borderColor
|
|
1342
|
+
*/
|
|
1343
|
+
/**
|
|
1344
|
+
* Can set `borderWidth` on all nodes which lay on the same level.
|
|
1345
|
+
*
|
|
1346
|
+
* @type {number}
|
|
1347
|
+
* @apioption plotOptions.sankey.levels.borderWidth
|
|
1348
|
+
*/
|
|
1349
|
+
/**
|
|
1350
|
+
* Can set `color` on all nodes which lay on the same level.
|
|
1351
|
+
*
|
|
1352
|
+
* @type {Highcharts.ColorString|Highcharts.GradientColorObject|Highcharts.PatternObject}
|
|
1353
|
+
* @apioption plotOptions.sankey.levels.color
|
|
1354
|
+
*/
|
|
1355
|
+
/**
|
|
1356
|
+
* Can set `colorByPoint` on all nodes which lay on the same level.
|
|
1357
|
+
*
|
|
1358
|
+
* @type {boolean}
|
|
1359
|
+
* @default true
|
|
1360
|
+
* @apioption plotOptions.sankey.levels.colorByPoint
|
|
1361
|
+
*/
|
|
1362
|
+
/**
|
|
1363
|
+
* Can set `dataLabels` on all points which lay on the same level.
|
|
1364
|
+
*
|
|
1365
|
+
* @extends plotOptions.sankey.dataLabels
|
|
1366
|
+
* @apioption plotOptions.sankey.levels.dataLabels
|
|
1367
|
+
*/
|
|
1368
|
+
/**
|
|
1369
|
+
* Decides which level takes effect from the options set in the levels
|
|
1370
|
+
* object.
|
|
1371
|
+
*
|
|
1372
|
+
* @type {number}
|
|
1373
|
+
* @apioption plotOptions.sankey.levels.level
|
|
1374
|
+
*/
|
|
1375
|
+
/**
|
|
1376
|
+
* Can set `linkOpacity` on all points which lay on the same level.
|
|
1377
|
+
*
|
|
1378
|
+
* @type {number}
|
|
1379
|
+
* @default 0.5
|
|
1380
|
+
* @apioption plotOptions.sankey.levels.linkOpacity
|
|
1381
|
+
*/
|
|
1382
|
+
/**
|
|
1383
|
+
* Can set `states` on all nodes and points which lay on the same level.
|
|
1384
|
+
*
|
|
1385
|
+
* @extends plotOptions.sankey.states
|
|
1386
|
+
* @apioption plotOptions.sankey.levels.states
|
|
1387
|
+
*/
|
|
1388
|
+
/**
|
|
1389
|
+
* Opacity for the links between nodes in the sankey diagram.
|
|
1390
|
+
*
|
|
1391
|
+
* @private
|
|
1392
|
+
*/
|
|
1393
|
+
linkOpacity: 0.5,
|
|
1394
|
+
/**
|
|
1395
|
+
* The minimal width for a line of a sankey. By default,
|
|
1396
|
+
* 0 values are not shown.
|
|
1397
|
+
*
|
|
1398
|
+
* @sample highcharts/plotoptions/sankey-minlinkwidth
|
|
1399
|
+
* Sankey diagram with minimal link height
|
|
1400
|
+
*
|
|
1401
|
+
* @type {number}
|
|
1402
|
+
* @since 7.1.3
|
|
1403
|
+
* @default 0
|
|
1404
|
+
* @apioption plotOptions.sankey.minLinkWidth
|
|
1405
|
+
*
|
|
1406
|
+
* @private
|
|
1407
|
+
*/
|
|
1408
|
+
minLinkWidth: 0,
|
|
1409
|
+
/**
|
|
1410
|
+
* The pixel width of each node in a sankey diagram or dependency wheel,
|
|
1411
|
+
* or the height in case the chart is inverted.
|
|
1412
|
+
*
|
|
1413
|
+
* @private
|
|
1414
|
+
*/
|
|
1415
|
+
nodeWidth: 20,
|
|
1416
|
+
/**
|
|
1417
|
+
* The padding between nodes in a sankey diagram or dependency wheel, in
|
|
1418
|
+
* pixels.
|
|
1419
|
+
*
|
|
1420
|
+
* If the number of nodes is so great that it is possible to lay them
|
|
1421
|
+
* out within the plot area with the given `nodePadding`, they will be
|
|
1422
|
+
* rendered with a smaller padding as a strategy to avoid overflow.
|
|
1423
|
+
*
|
|
1424
|
+
* @private
|
|
1425
|
+
*/
|
|
1426
|
+
nodePadding: 10,
|
|
1427
|
+
showInLegend: false,
|
|
1428
|
+
states: {
|
|
1429
|
+
hover: {
|
|
1430
|
+
/**
|
|
1431
|
+
* Opacity for the links between nodes in the sankey diagram in
|
|
1432
|
+
* hover mode.
|
|
1433
|
+
*/
|
|
1434
|
+
linkOpacity: 1
|
|
1435
|
+
},
|
|
1436
|
+
/**
|
|
1437
|
+
* The opposite state of a hover for a single point node/link.
|
|
1438
|
+
*
|
|
1439
|
+
* @declare Highcharts.SeriesStatesInactiveOptionsObject
|
|
1440
|
+
*/
|
|
1441
|
+
inactive: {
|
|
1442
|
+
/**
|
|
1443
|
+
* Opacity for the links between nodes in the sankey diagram in
|
|
1444
|
+
* inactive mode.
|
|
1445
|
+
*/
|
|
1446
|
+
linkOpacity: 0.1,
|
|
1447
|
+
/**
|
|
1448
|
+
* Opacity of inactive markers.
|
|
1449
|
+
*
|
|
1450
|
+
* @type {number}
|
|
1451
|
+
* @apioption plotOptions.series.states.inactive.opacity
|
|
1452
|
+
*/
|
|
1453
|
+
opacity: 0.1,
|
|
1454
|
+
/**
|
|
1455
|
+
* Animation when not hovering over the marker.
|
|
1456
|
+
*
|
|
1457
|
+
* @type {boolean|Partial<Highcharts.AnimationOptionsObject>}
|
|
1458
|
+
* @apioption plotOptions.series.states.inactive.animation
|
|
1459
|
+
*/
|
|
1460
|
+
animation: {
|
|
1461
|
+
/** @internal */
|
|
1462
|
+
duration: 50
|
|
1463
|
+
}
|
|
1464
|
+
}
|
|
1465
|
+
},
|
|
1466
|
+
tooltip: {
|
|
1467
|
+
/**
|
|
1468
|
+
* A callback for defining the format for _nodes_ in the chart's
|
|
1469
|
+
* tooltip, as opposed to links.
|
|
1470
|
+
*
|
|
1471
|
+
* @type {Highcharts.FormatterCallbackFunction<Highcharts.SankeyNodeObject>}
|
|
1472
|
+
* @since 6.0.2
|
|
1473
|
+
* @apioption plotOptions.sankey.tooltip.nodeFormatter
|
|
1474
|
+
*/
|
|
1475
|
+
/**
|
|
1476
|
+
* Whether the tooltip should follow the pointer or stay fixed on
|
|
1477
|
+
* the item.
|
|
1478
|
+
*/
|
|
1479
|
+
followPointer: true,
|
|
1480
|
+
headerFormat: '<span style="font-size: 10px">{series.name}</span><br/>',
|
|
1481
|
+
pointFormat: '{point.fromNode.name} \u2192 {point.toNode.name}: <b>{point.weight}</b><br/>',
|
|
1482
|
+
/**
|
|
1483
|
+
* The
|
|
1484
|
+
* [format string](https://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting)
|
|
1485
|
+
* specifying what to show for _nodes_ in tooltip of a diagram
|
|
1486
|
+
* series, as opposed to links.
|
|
1487
|
+
*/
|
|
1488
|
+
nodeFormat: '{point.name}: <b>{point.sum}</b><br/>'
|
|
1489
|
+
}
|
|
1490
|
+
});
|
|
1491
|
+
return SankeySeries;
|
|
1492
|
+
}(ColumnSeries));
|
|
1493
|
+
NodesComposition.compose(SankeyPoint, SankeySeries);
|
|
1494
|
+
extend(SankeySeries.prototype, {
|
|
1495
|
+
animate: Series.prototype.animate,
|
|
1496
|
+
// Create a single node that holds information on incoming and outgoing
|
|
1497
|
+
// links.
|
|
1498
|
+
createNode: NodesComposition.createNode,
|
|
1499
|
+
forceDL: true,
|
|
1500
|
+
invertible: true,
|
|
1501
|
+
isCartesian: false,
|
|
1502
|
+
orderNodes: true,
|
|
1503
|
+
noSharedTooltip: true,
|
|
1504
|
+
pointArrayMap: ['from', 'to'],
|
|
1505
|
+
pointClass: SankeyPoint,
|
|
1506
|
+
searchPoint: H.noop
|
|
1507
|
+
});
|
|
1508
|
+
SeriesRegistry.registerSeriesType('sankey', SankeySeries);
|
|
1509
|
+
/* *
|
|
1510
|
+
*
|
|
1511
|
+
* Default Export
|
|
1512
|
+
*
|
|
1513
|
+
* */
|
|
1514
|
+
/* *
|
|
1515
|
+
*
|
|
1516
|
+
* API Declarations
|
|
1517
|
+
*
|
|
1518
|
+
* */
|
|
1519
|
+
/**
|
|
1520
|
+
* A node in a sankey diagram.
|
|
1521
|
+
*
|
|
1522
|
+
* @interface Highcharts.SankeyNodeObject
|
|
1523
|
+
* @extends Highcharts.Point
|
|
1524
|
+
* @product highcharts
|
|
1525
|
+
*/ /**
|
|
1526
|
+
* The color of the auto generated node.
|
|
1527
|
+
*
|
|
1528
|
+
* @name Highcharts.SankeyNodeObject#color
|
|
1529
|
+
* @type {Highcharts.ColorString|Highcharts.GradientColorObject|Highcharts.PatternObject}
|
|
1530
|
+
*/ /**
|
|
1531
|
+
* The color index of the auto generated node, especially for use in styled
|
|
1532
|
+
* mode.
|
|
1533
|
+
*
|
|
1534
|
+
* @name Highcharts.SankeyNodeObject#colorIndex
|
|
1535
|
+
* @type {number}
|
|
1536
|
+
*/ /**
|
|
1537
|
+
* An optional column index of where to place the node. The default behaviour is
|
|
1538
|
+
* to place it next to the preceding node.
|
|
1539
|
+
*
|
|
1540
|
+
* @see {@link https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/sankey-node-column/|Highcharts-Demo:}
|
|
1541
|
+
* Specified node column
|
|
1542
|
+
*
|
|
1543
|
+
* @name Highcharts.SankeyNodeObject#column
|
|
1544
|
+
* @type {number}
|
|
1545
|
+
* @since 6.0.5
|
|
1546
|
+
*/ /**
|
|
1547
|
+
* The id of the auto-generated node, refering to the `from` or `to` setting of
|
|
1548
|
+
* the link.
|
|
1549
|
+
*
|
|
1550
|
+
* @name Highcharts.SankeyNodeObject#id
|
|
1551
|
+
* @type {string}
|
|
1552
|
+
*/ /**
|
|
1553
|
+
* The name to display for the node in data labels and tooltips. Use this when
|
|
1554
|
+
* the name is different from the `id`. Where the id must be unique for each
|
|
1555
|
+
* node, this is not necessary for the name.
|
|
1556
|
+
*
|
|
1557
|
+
* @see {@link https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/css/sankey/|Highcharts-Demo:}
|
|
1558
|
+
* Sankey diagram with node options
|
|
1559
|
+
*
|
|
1560
|
+
* @name Highcharts.SankeyNodeObject#name
|
|
1561
|
+
* @type {string}
|
|
1562
|
+
* @product highcharts
|
|
1563
|
+
*/ /**
|
|
1564
|
+
* This option is deprecated, use
|
|
1565
|
+
* {@link Highcharts.SankeyNodeObject#offsetHorizontal} and
|
|
1566
|
+
* {@link Highcharts.SankeyNodeObject#offsetVertical} instead.
|
|
1567
|
+
*
|
|
1568
|
+
* The vertical offset of a node in terms of weight. Positive values shift the
|
|
1569
|
+
* node downwards, negative shift it upwards.
|
|
1570
|
+
*
|
|
1571
|
+
* If a percantage string is given, the node is offset by the percentage of the
|
|
1572
|
+
* node size plus `nodePadding`.
|
|
1573
|
+
*
|
|
1574
|
+
* @see {@link https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/sankey-node-column/|Highcharts-Demo:}
|
|
1575
|
+
* Specified node offset
|
|
1576
|
+
*
|
|
1577
|
+
* @deprecated
|
|
1578
|
+
* @name Highcharts.SankeyNodeObject#offset
|
|
1579
|
+
* @type {number|string}
|
|
1580
|
+
* @default 0
|
|
1581
|
+
* @since 6.0.5
|
|
1582
|
+
*/ /**
|
|
1583
|
+
* The horizontal offset of a node. Positive values shift the node right,
|
|
1584
|
+
* negative shift it left.
|
|
1585
|
+
*
|
|
1586
|
+
* If a percantage string is given, the node is offset by the percentage of the
|
|
1587
|
+
* node size.
|
|
1588
|
+
*
|
|
1589
|
+
* @see {@link https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/sankey-node-column/|Highcharts-Demo:}
|
|
1590
|
+
* Specified node offset
|
|
1591
|
+
*
|
|
1592
|
+
* @name Highcharts.SankeyNodeObject#offsetHorizontal
|
|
1593
|
+
* @type {number|string}
|
|
1594
|
+
* @since 9.3.0
|
|
1595
|
+
*/ /**
|
|
1596
|
+
* The vertical offset of a node. Positive values shift the node down,
|
|
1597
|
+
* negative shift it up.
|
|
1598
|
+
*
|
|
1599
|
+
* If a percantage string is given, the node is offset by the percentage of the
|
|
1600
|
+
* node size.
|
|
1601
|
+
*
|
|
1602
|
+
* @see {@link https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/sankey-node-column/|Highcharts-Demo:}
|
|
1603
|
+
* Specified node offset
|
|
1604
|
+
*
|
|
1605
|
+
* @name Highcharts.SankeyNodeObject#offsetVertical
|
|
1606
|
+
* @type {number|string}
|
|
1607
|
+
* @since 9.3.0
|
|
1608
|
+
*/
|
|
1609
|
+
/**
|
|
1610
|
+
* Formatter callback function.
|
|
1611
|
+
*
|
|
1612
|
+
* @callback Highcharts.SeriesSankeyDataLabelsFormatterCallbackFunction
|
|
1613
|
+
*
|
|
1614
|
+
* @param {Highcharts.SeriesSankeyDataLabelsFormatterContextObject|Highcharts.PointLabelObject} this
|
|
1615
|
+
* Data label context to format
|
|
1616
|
+
*
|
|
1617
|
+
* @return {string|undefined}
|
|
1618
|
+
* Formatted data label text
|
|
1619
|
+
*/
|
|
1620
|
+
/**
|
|
1621
|
+
* Context for the node formatter function.
|
|
1622
|
+
*
|
|
1623
|
+
* @interface Highcharts.SeriesSankeyDataLabelsFormatterContextObject
|
|
1624
|
+
* @extends Highcharts.PointLabelObject
|
|
1625
|
+
*/ /**
|
|
1626
|
+
* The node object. The node name, if defined, is available through
|
|
1627
|
+
* `this.point.name`.
|
|
1628
|
+
* @name Highcharts.SeriesSankeyDataLabelsFormatterContextObject#point
|
|
1629
|
+
* @type {Highcharts.SankeyNodeObject}
|
|
1630
|
+
*/
|
|
1631
|
+
''; // detach doclets above
|
|
1632
|
+
/* *
|
|
1633
|
+
*
|
|
1634
|
+
* API Options
|
|
1635
|
+
*
|
|
1636
|
+
* */
|
|
1637
|
+
/**
|
|
1638
|
+
* A `sankey` series. If the [type](#series.sankey.type) option is not
|
|
1639
|
+
* specified, it is inherited from [chart.type](#chart.type).
|
|
1640
|
+
*
|
|
1641
|
+
* @extends series,plotOptions.sankey
|
|
1642
|
+
* @excluding animationLimit, boostBlending, boostThreshold, borderColor,
|
|
1643
|
+
* borderRadius, borderWidth, crisp, cropThreshold, dataParser,
|
|
1644
|
+
* dataURL, depth, dragDrop, edgeColor, edgeWidth,
|
|
1645
|
+
* findNearestPointBy, getExtremesFromAll, grouping, groupPadding,
|
|
1646
|
+
* groupZPadding, label, maxPointWidth, negativeColor, pointInterval,
|
|
1647
|
+
* pointIntervalUnit, pointPadding, pointPlacement, pointRange,
|
|
1648
|
+
* pointStart, pointWidth, shadow, softThreshold, stacking,
|
|
1649
|
+
* threshold, zoneAxis, zones, dataSorting
|
|
1650
|
+
* @product highcharts
|
|
1651
|
+
* @requires modules/sankey
|
|
1652
|
+
* @apioption series.sankey
|
|
1653
|
+
*/
|
|
1654
|
+
/**
|
|
1655
|
+
* A collection of options for the individual nodes. The nodes in a sankey
|
|
1656
|
+
* diagram are auto-generated instances of `Highcharts.Point`, but options can
|
|
1657
|
+
* be applied here and linked by the `id`.
|
|
1658
|
+
*
|
|
1659
|
+
* @sample highcharts/css/sankey/
|
|
1660
|
+
* Sankey diagram with node options
|
|
1661
|
+
*
|
|
1662
|
+
* @declare Highcharts.SeriesSankeyNodesOptionsObject
|
|
1663
|
+
* @type {Array<*>}
|
|
1664
|
+
* @product highcharts
|
|
1665
|
+
* @apioption series.sankey.nodes
|
|
1666
|
+
*/
|
|
1667
|
+
/**
|
|
1668
|
+
* The id of the auto-generated node, refering to the `from` or `to` setting of
|
|
1669
|
+
* the link.
|
|
1670
|
+
*
|
|
1671
|
+
* @type {string}
|
|
1672
|
+
* @product highcharts
|
|
1673
|
+
* @apioption series.sankey.nodes.id
|
|
1674
|
+
*/
|
|
1675
|
+
/**
|
|
1676
|
+
* The color of the auto generated node.
|
|
1677
|
+
*
|
|
1678
|
+
* @type {Highcharts.ColorString|Highcharts.GradientColorObject|Highcharts.PatternObject}
|
|
1679
|
+
* @product highcharts
|
|
1680
|
+
* @apioption series.sankey.nodes.color
|
|
1681
|
+
*/
|
|
1682
|
+
/**
|
|
1683
|
+
* The color index of the auto generated node, especially for use in styled
|
|
1684
|
+
* mode.
|
|
1685
|
+
*
|
|
1686
|
+
* @type {number}
|
|
1687
|
+
* @product highcharts
|
|
1688
|
+
* @apioption series.sankey.nodes.colorIndex
|
|
1689
|
+
*/
|
|
1690
|
+
/**
|
|
1691
|
+
* An optional column index of where to place the node. The default behaviour is
|
|
1692
|
+
* to place it next to the preceding node. Note that this option name is
|
|
1693
|
+
* counter intuitive in inverted charts, like for example an organization chart
|
|
1694
|
+
* rendered top down. In this case the "columns" are horizontal.
|
|
1695
|
+
*
|
|
1696
|
+
* @sample highcharts/plotoptions/sankey-node-column/
|
|
1697
|
+
* Specified node column
|
|
1698
|
+
*
|
|
1699
|
+
* @type {number}
|
|
1700
|
+
* @since 6.0.5
|
|
1701
|
+
* @product highcharts
|
|
1702
|
+
* @apioption series.sankey.nodes.column
|
|
1703
|
+
*/
|
|
1704
|
+
/**
|
|
1705
|
+
* Individual data label for each node. The options are the same as
|
|
1706
|
+
* the ones for [series.sankey.dataLabels](#series.sankey.dataLabels).
|
|
1707
|
+
*
|
|
1708
|
+
* @extends plotOptions.sankey.dataLabels
|
|
1709
|
+
* @apioption series.sankey.nodes.dataLabels
|
|
1710
|
+
*/
|
|
1711
|
+
/**
|
|
1712
|
+
* An optional level index of where to place the node. The default behaviour is
|
|
1713
|
+
* to place it next to the preceding node. Alias of `nodes.column`, but in
|
|
1714
|
+
* inverted sankeys and org charts, the levels are laid out as rows.
|
|
1715
|
+
*
|
|
1716
|
+
* @type {number}
|
|
1717
|
+
* @since 7.1.0
|
|
1718
|
+
* @product highcharts
|
|
1719
|
+
* @apioption series.sankey.nodes.level
|
|
1720
|
+
*/
|
|
1721
|
+
/**
|
|
1722
|
+
* The name to display for the node in data labels and tooltips. Use this when
|
|
1723
|
+
* the name is different from the `id`. Where the id must be unique for each
|
|
1724
|
+
* node, this is not necessary for the name.
|
|
1725
|
+
*
|
|
1726
|
+
* @sample highcharts/css/sankey/
|
|
1727
|
+
* Sankey diagram with node options
|
|
1728
|
+
*
|
|
1729
|
+
* @type {string}
|
|
1730
|
+
* @product highcharts
|
|
1731
|
+
* @apioption series.sankey.nodes.name
|
|
1732
|
+
*/
|
|
1733
|
+
/**
|
|
1734
|
+
* This option is deprecated, use
|
|
1735
|
+
* [offsetHorizontal](#series.sankey.nodes.offsetHorizontal) and
|
|
1736
|
+
* [offsetVertical](#series.sankey.nodes.offsetVertical) instead.
|
|
1737
|
+
*
|
|
1738
|
+
* In a horizontal layout, the vertical offset of a node in terms of weight.
|
|
1739
|
+
* Positive values shift the node downwards, negative shift it upwards. In a
|
|
1740
|
+
* vertical layout, like organization chart, the offset is horizontal.
|
|
1741
|
+
*
|
|
1742
|
+
* If a percantage string is given, the node is offset by the percentage of the
|
|
1743
|
+
* node size plus `nodePadding`.
|
|
1744
|
+
*
|
|
1745
|
+
* @deprecated
|
|
1746
|
+
* @type {number|string}
|
|
1747
|
+
* @default 0
|
|
1748
|
+
* @since 6.0.5
|
|
1749
|
+
* @product highcharts
|
|
1750
|
+
* @apioption series.sankey.nodes.offset
|
|
1751
|
+
*/
|
|
1752
|
+
/**
|
|
1753
|
+
* The horizontal offset of a node. Positive values shift the node right,
|
|
1754
|
+
* negative shift it left.
|
|
1755
|
+
*
|
|
1756
|
+
* If a percantage string is given, the node is offset by the percentage of the
|
|
1757
|
+
* node size.
|
|
1758
|
+
*
|
|
1759
|
+
* @sample highcharts/plotoptions/sankey-node-column/
|
|
1760
|
+
* Specified node offset
|
|
1761
|
+
*
|
|
1762
|
+
* @type {number|string}
|
|
1763
|
+
* @since 9.3.0
|
|
1764
|
+
* @product highcharts
|
|
1765
|
+
* @apioption series.sankey.nodes.offsetHorizontal
|
|
1766
|
+
*/
|
|
1767
|
+
/**
|
|
1768
|
+
* The vertical offset of a node. Positive values shift the node down,
|
|
1769
|
+
* negative shift it up.
|
|
1770
|
+
*
|
|
1771
|
+
* If a percantage string is given, the node is offset by the percentage of the
|
|
1772
|
+
* node size.
|
|
1773
|
+
*
|
|
1774
|
+
* @sample highcharts/plotoptions/sankey-node-column/
|
|
1775
|
+
* Specified node offset
|
|
1776
|
+
*
|
|
1777
|
+
* @type {number|string}
|
|
1778
|
+
* @since 9.3.0
|
|
1779
|
+
* @product highcharts
|
|
1780
|
+
* @apioption series.sankey.nodes.offsetVertical
|
|
1781
|
+
*/
|
|
1782
|
+
/**
|
|
1783
|
+
* An array of data points for the series. For the `sankey` series type,
|
|
1784
|
+
* points can be given in the following way:
|
|
1785
|
+
*
|
|
1786
|
+
* An array of objects with named values. The following snippet shows only a
|
|
1787
|
+
* few settings, see the complete options set below. If the total number of data
|
|
1788
|
+
* points exceeds the series' [turboThreshold](#series.area.turboThreshold),
|
|
1789
|
+
* this option is not available.
|
|
1790
|
+
*
|
|
1791
|
+
* ```js
|
|
1792
|
+
* data: [{
|
|
1793
|
+
* from: 'Category1',
|
|
1794
|
+
* to: 'Category2',
|
|
1795
|
+
* weight: 2
|
|
1796
|
+
* }, {
|
|
1797
|
+
* from: 'Category1',
|
|
1798
|
+
* to: 'Category3',
|
|
1799
|
+
* weight: 5
|
|
1800
|
+
* }]
|
|
1801
|
+
* ```
|
|
1802
|
+
*
|
|
1803
|
+
* @sample {highcharts} highcharts/series/data-array-of-objects/
|
|
1804
|
+
* Config objects
|
|
1805
|
+
*
|
|
1806
|
+
* @declare Highcharts.SeriesSankeyPointOptionsObject
|
|
1807
|
+
* @type {Array<*>}
|
|
1808
|
+
* @extends series.line.data
|
|
1809
|
+
* @excluding dragDrop, drilldown, marker, x, y
|
|
1810
|
+
* @product highcharts
|
|
1811
|
+
* @apioption series.sankey.data
|
|
1812
|
+
*/
|
|
1813
|
+
/**
|
|
1814
|
+
* The color for the individual _link_. By default, the link color is the same
|
|
1815
|
+
* as the node it extends from. The `series.fillOpacity` option also applies to
|
|
1816
|
+
* the points, so when setting a specific link color, consider setting the
|
|
1817
|
+
* `fillOpacity` to 1.
|
|
1818
|
+
*
|
|
1819
|
+
* @type {Highcharts.ColorString|Highcharts.GradientColorObject|Highcharts.PatternObject}
|
|
1820
|
+
* @product highcharts
|
|
1821
|
+
* @apioption series.sankey.data.color
|
|
1822
|
+
*/
|
|
1823
|
+
/**
|
|
1824
|
+
* @type {Highcharts.SeriesSankeyDataLabelsOptionsObject|Array<Highcharts.SeriesSankeyDataLabelsOptionsObject>}
|
|
1825
|
+
* @product highcharts
|
|
1826
|
+
* @apioption series.sankey.data.dataLabels
|
|
1827
|
+
*/
|
|
1828
|
+
/**
|
|
1829
|
+
* The node that the link runs from.
|
|
1830
|
+
*
|
|
1831
|
+
* @type {string}
|
|
1832
|
+
* @product highcharts
|
|
1833
|
+
* @apioption series.sankey.data.from
|
|
1834
|
+
*/
|
|
1835
|
+
/**
|
|
1836
|
+
* The node that the link runs to.
|
|
1837
|
+
*
|
|
1838
|
+
* @type {string}
|
|
1839
|
+
* @product highcharts
|
|
1840
|
+
* @apioption series.sankey.data.to
|
|
1841
|
+
*/
|
|
1842
|
+
/**
|
|
1843
|
+
* Whether the link goes out of the system.
|
|
1844
|
+
*
|
|
1845
|
+
* @sample highcharts/plotoptions/sankey-outgoing
|
|
1846
|
+
* Sankey chart with outgoing links
|
|
1847
|
+
*
|
|
1848
|
+
* @type {boolean}
|
|
1849
|
+
* @default false
|
|
1850
|
+
* @product highcharts
|
|
1851
|
+
* @apioption series.sankey.data.outgoing
|
|
1852
|
+
*/
|
|
1853
|
+
/**
|
|
1854
|
+
* The weight of the link.
|
|
1855
|
+
*
|
|
1856
|
+
* @type {number|null}
|
|
1857
|
+
* @product highcharts
|
|
1858
|
+
* @apioption series.sankey.data.weight
|
|
1859
|
+
*/
|
|
1860
|
+
''; // adds doclets above to transpiled file
|
|
1861
|
+
|
|
1862
|
+
return SankeySeries;
|
|
1863
|
+
});
|
|
1864
|
+
_registerModule(_modules, 'masters/modules/sankey.src.js', [], function () {
|
|
1865
|
+
|
|
1866
|
+
|
|
1867
|
+
});
|
|
1868
|
+
}));
|