@progress/kendo-react-charts 6.1.1 → 7.0.0-develop.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BaseChart.d.ts +125 -0
- package/BaseChartProps.d.ts +199 -0
- package/Chart.d.ts +82 -0
- package/ChartBreadcrumb.d.ts +46 -0
- package/ChartContext.d.ts +21 -0
- package/ChartProps.d.ts +14 -0
- package/Container.d.ts +12 -0
- package/DonutCenter.d.ts +41 -0
- package/LICENSE.md +1 -1
- package/Sparkline.d.ts +91 -0
- package/SparklineProps.d.ts +18 -0
- package/StockChart.d.ts +45 -0
- package/StockChartProps.d.ts +19 -0
- package/api-types/axis-range.interface.d.ts +17 -0
- package/api-types/chart-axis.interface.d.ts +40 -0
- package/api-types/chart-drilldown-state.interface.d.ts +28 -0
- package/api-types/chart-pane.interface.d.ts +18 -0
- package/api-types/chart-plotarea.interface.d.ts +18 -0
- package/api-types/event-axis-options.interface.d.ts +13 -0
- package/api-types/event-series-options.interface.d.ts +21 -0
- package/api-types/series-point.interface.d.ts +42 -0
- package/argument-types/axis-label-visual-args.interface.d.ts +47 -0
- package/argument-types/axis-note-visual-args.interface.d.ts +31 -0
- package/argument-types/drilldown-series-factory-props.interface.d.ts +21 -0
- package/argument-types/error-bars-visual-args.interface.d.ts +35 -0
- package/argument-types/highlight-toggle-args.interface.d.ts +38 -0
- package/argument-types/highlight-visual-args.interface.d.ts +55 -0
- package/argument-types/legend-item-visual-args.interface.d.ts +31 -0
- package/argument-types/legend-labels-content-args.interface.d.ts +25 -0
- package/argument-types/markers-visual-args.interface.d.ts +43 -0
- package/argument-types/plot-band-label-visual-args.interface.d.ts +31 -0
- package/argument-types/series-labels-visual-args.interface.d.ts +31 -0
- package/argument-types/series-note-visual-args.interface.d.ts +47 -0
- package/argument-types/series-visual-args.interface.d.ts +80 -0
- package/argument-types/title-visual-args.interface.d.ts +31 -0
- package/common/api-types.d.ts +12 -0
- package/common/charts.d.ts +9 -0
- package/common/events.d.ts +26 -0
- package/common/property-types.d.ts +136 -0
- package/components/AxisDefaults.d.ts +13 -0
- package/components/CategoryAxis.d.ts +13 -0
- package/components/CategoryAxisItem.d.ts +17 -0
- package/components/ChartArea.d.ts +13 -0
- package/components/Legend.d.ts +17 -0
- package/components/Navigator.d.ts +17 -0
- package/components/Pane.d.ts +13 -0
- package/components/PaneDefaults.d.ts +17 -0
- package/components/Panes.d.ts +13 -0
- package/components/PlotArea.d.ts +13 -0
- package/components/Series.d.ts +13 -0
- package/components/SeriesDefaults.d.ts +13 -0
- package/components/SeriesItem.d.ts +25 -0
- package/components/Subtitle.d.ts +13 -0
- package/components/Title.d.ts +13 -0
- package/components/Tooltip.d.ts +15 -0
- package/components/ValueAxis.d.ts +13 -0
- package/components/ValueAxisItem.d.ts +17 -0
- package/components/XAxis.d.ts +13 -0
- package/components/XAxisItem.d.ts +17 -0
- package/components/YAxis.d.ts +13 -0
- package/components/YAxisItem.d.ts +17 -0
- package/components/Zoomable.d.ts +13 -0
- package/components/axis-defaults/Crosshair.d.ts +13 -0
- package/components/axis-defaults/CrosshairTooltip.d.ts +13 -0
- package/components/axis-defaults/Labels.d.ts +13 -0
- package/components/axis-defaults/Title.d.ts +13 -0
- package/components/axis-defaults/index.d.ts +9 -0
- package/components/base/CollectionConfigurationComponent.d.ts +23 -0
- package/components/base/ConfigurationComponent.d.ts +28 -0
- package/components/category-axis-item/Crosshair.d.ts +17 -0
- package/components/category-axis-item/CrosshairTooltip.d.ts +13 -0
- package/components/category-axis-item/Labels.d.ts +13 -0
- package/components/category-axis-item/Notes.d.ts +13 -0
- package/components/category-axis-item/NotesIcon.d.ts +13 -0
- package/components/category-axis-item/NotesLabel.d.ts +13 -0
- package/components/category-axis-item/RangeLabels.d.ts +13 -0
- package/components/category-axis-item/Select.d.ts +11 -0
- package/components/category-axis-item/Title.d.ts +13 -0
- package/components/category-axis-item/index.d.ts +14 -0
- package/components/index.d.ts +39 -0
- package/components/legend/InactiveItems.d.ts +13 -0
- package/components/legend/Item.d.ts +13 -0
- package/components/legend/Title.d.ts +17 -0
- package/components/legend/index.d.ts +8 -0
- package/components/navigator/CategoryAxis.d.ts +13 -0
- package/components/navigator/Hint.d.ts +13 -0
- package/components/navigator/Pane.d.ts +13 -0
- package/components/navigator/Select.d.ts +13 -0
- package/components/navigator/Series.d.ts +13 -0
- package/components/navigator/SeriesItem.d.ts +13 -0
- package/components/navigator/category-axis/Crosshair.d.ts +13 -0
- package/components/navigator/category-axis/CrosshairTooltip.d.ts +13 -0
- package/components/navigator/category-axis/Labels.d.ts +13 -0
- package/components/navigator/category-axis/Notes.d.ts +13 -0
- package/components/navigator/category-axis/NotesIcon.d.ts +13 -0
- package/components/navigator/category-axis/NotesLabel.d.ts +13 -0
- package/components/navigator/category-axis/Select.d.ts +11 -0
- package/components/navigator/category-axis/Title.d.ts +13 -0
- package/components/navigator/category-axis/index.d.ts +13 -0
- package/components/navigator/index.d.ts +14 -0
- package/components/navigator/pane/Title.d.ts +13 -0
- package/components/navigator/pane/index.d.ts +6 -0
- package/components/navigator/series-item/ErrorBars.d.ts +13 -0
- package/components/navigator/series-item/Extremes.d.ts +13 -0
- package/components/navigator/series-item/Highlight.d.ts +13 -0
- package/components/navigator/series-item/Labels.d.ts +13 -0
- package/components/navigator/series-item/LabelsFrom.d.ts +13 -0
- package/components/navigator/series-item/LabelsTo.d.ts +13 -0
- package/components/navigator/series-item/Markers.d.ts +13 -0
- package/components/navigator/series-item/Notes.d.ts +13 -0
- package/components/navigator/series-item/NotesIcon.d.ts +13 -0
- package/components/navigator/series-item/NotesLabel.d.ts +13 -0
- package/components/navigator/series-item/Outliers.d.ts +13 -0
- package/components/navigator/series-item/Tooltip.d.ts +15 -0
- package/components/navigator/series-item/index.d.ts +17 -0
- package/components/pane/Title.d.ts +13 -0
- package/components/pane/index.d.ts +6 -0
- package/components/pane-defaults/Title.d.ts +13 -0
- package/components/pane-defaults/index.d.ts +6 -0
- package/components/series-defaults/Labels.d.ts +13 -0
- package/components/series-defaults/LabelsFrom.d.ts +13 -0
- package/components/series-defaults/LabelsTo.d.ts +13 -0
- package/components/series-defaults/Notes.d.ts +13 -0
- package/components/series-defaults/NotesIcon.d.ts +13 -0
- package/components/series-defaults/NotesLabel.d.ts +13 -0
- package/components/series-defaults/Tooltip.d.ts +15 -0
- package/components/series-defaults/index.d.ts +12 -0
- package/components/series-item/ErrorBars.d.ts +13 -0
- package/components/series-item/Extremes.d.ts +13 -0
- package/components/series-item/Highlight.d.ts +13 -0
- package/components/series-item/Labels.d.ts +17 -0
- package/components/series-item/LabelsFrom.d.ts +13 -0
- package/components/series-item/LabelsTo.d.ts +13 -0
- package/components/series-item/Markers.d.ts +13 -0
- package/components/series-item/Notes.d.ts +13 -0
- package/components/series-item/NotesIcon.d.ts +13 -0
- package/components/series-item/NotesLabel.d.ts +13 -0
- package/components/series-item/Outliers.d.ts +13 -0
- package/components/series-item/Tooltip.d.ts +15 -0
- package/components/series-item/index.d.ts +17 -0
- package/components/value-axis-item/Crosshair.d.ts +17 -0
- package/components/value-axis-item/CrosshairTooltip.d.ts +13 -0
- package/components/value-axis-item/Labels.d.ts +13 -0
- package/components/value-axis-item/Notes.d.ts +13 -0
- package/components/value-axis-item/NotesIcon.d.ts +13 -0
- package/components/value-axis-item/NotesLabel.d.ts +13 -0
- package/components/value-axis-item/Title.d.ts +13 -0
- package/components/value-axis-item/index.d.ts +12 -0
- package/components/x-axis-item/Crosshair.d.ts +17 -0
- package/components/x-axis-item/CrosshairTooltip.d.ts +13 -0
- package/components/x-axis-item/Labels.d.ts +13 -0
- package/components/x-axis-item/Notes.d.ts +13 -0
- package/components/x-axis-item/NotesIcon.d.ts +13 -0
- package/components/x-axis-item/NotesLabel.d.ts +13 -0
- package/components/x-axis-item/Title.d.ts +13 -0
- package/components/x-axis-item/index.d.ts +12 -0
- package/components/y-axis-item/Crosshair.d.ts +17 -0
- package/components/y-axis-item/CrosshairTooltip.d.ts +13 -0
- package/components/y-axis-item/Labels.d.ts +13 -0
- package/components/y-axis-item/Notes.d.ts +13 -0
- package/components/y-axis-item/NotesIcon.d.ts +13 -0
- package/components/y-axis-item/NotesLabel.d.ts +13 -0
- package/components/y-axis-item/Title.d.ts +13 -0
- package/components/y-axis-item/index.d.ts +12 -0
- package/dist/cdn/js/kendo-react-charts.js +48 -1
- package/events/axis-label-click-event.d.ts +36 -0
- package/events/base-event.d.ts +18 -0
- package/events/chart-event-builder.d.ts +10 -0
- package/events/dom-event.d.ts +23 -0
- package/events/dom-events-builder.d.ts +11 -0
- package/events/dom-events.d.ts +28 -0
- package/events/drag-end-event.d.ts +26 -0
- package/events/drag-event.d.ts +26 -0
- package/events/drag-start-event.d.ts +26 -0
- package/events/drilldown-event.d.ts +42 -0
- package/events/drilldown-state-change-event.d.ts +26 -0
- package/events/legend-item-click-event.d.ts +36 -0
- package/events/legend-item-hover-event.d.ts +36 -0
- package/events/legend-item-leave-event.d.ts +36 -0
- package/events/navigator-filter-event.d.ts +23 -0
- package/events/note-click-event.d.ts +36 -0
- package/events/note-hover-event.d.ts +36 -0
- package/events/plot-area-click-event.d.ts +35 -0
- package/events/plot-area-hover-event.d.ts +35 -0
- package/events/preventable-event.d.ts +22 -0
- package/events/render-event.d.ts +15 -0
- package/events/select-end-event.d.ts +28 -0
- package/events/select-event.d.ts +28 -0
- package/events/select-start-event.d.ts +28 -0
- package/events/series-click-event.d.ts +49 -0
- package/events/series-hover-event.d.ts +53 -0
- package/events/zoom-end-event.d.ts +28 -0
- package/events/zoom-event.d.ts +32 -0
- package/events/zoom-start-event.d.ts +26 -0
- package/field-types/auto-base-unit-steps.interface.d.ts +43 -0
- package/field-types/axis-labels-position.d.ts +26 -0
- package/field-types/axis-line.interface.d.ts +26 -0
- package/field-types/axis-ticks.interface.d.ts +33 -0
- package/field-types/axis-title-position.d.ts +26 -0
- package/field-types/base-unit.d.ts +38 -0
- package/field-types/border.interface.d.ts +22 -0
- package/field-types/bullet-target-line.interface.d.ts +13 -0
- package/field-types/bullet-target.interface.d.ts +23 -0
- package/field-types/category-base-unit.d.ts +39 -0
- package/field-types/dash-type.d.ts +32 -0
- package/field-types/date-formats.interface.d.ts +43 -0
- package/field-types/drag-action.interface.d.ts +19 -0
- package/field-types/error-bar-line.interface.d.ts +18 -0
- package/field-types/grid-lines.interface.d.ts +34 -0
- package/field-types/highlight-line.interface.d.ts +26 -0
- package/field-types/label-connectors.interface.d.ts +21 -0
- package/field-types/label-rotation.interface.d.ts +23 -0
- package/field-types/legend-labels.interface.d.ts +32 -0
- package/field-types/line-style.d.ts +32 -0
- package/field-types/lock-axis.d.ts +8 -0
- package/field-types/margin.interface.d.ts +25 -0
- package/field-types/marker-type.d.ts +35 -0
- package/field-types/modifier-key.d.ts +8 -0
- package/field-types/mousewheel-select.interface.d.ts +22 -0
- package/field-types/mousewheel-zoom.interface.d.ts +22 -0
- package/field-types/negative-bubble-values.interface.d.ts +17 -0
- package/field-types/note-label-position.d.ts +33 -0
- package/field-types/note-line.interface.d.ts +26 -0
- package/field-types/note-position.d.ts +33 -0
- package/field-types/overlay.interface.d.ts +19 -0
- package/field-types/padding.interface.d.ts +10 -0
- package/field-types/plot-band-label.interface.d.ts +91 -0
- package/field-types/plot-band.interface.d.ts +34 -0
- package/field-types/series-labels-position.d.ts +20 -0
- package/field-types/series-line.interface.d.ts +32 -0
- package/field-types/series-stack.interface.d.ts +21 -0
- package/field-types/series-type.d.ts +33 -0
- package/field-types/trendline-forecast.interface.d.ts +17 -0
- package/field-types/week-start-day.enum.d.ts +37 -0
- package/index.d.ts +33 -0
- package/index.js +48 -0
- package/index.mjs +1620 -0
- package/methods/index.d.ts +40 -0
- package/option-types/axis-defaults/crosshair.interface.d.ts +45 -0
- package/option-types/axis-defaults/crosshair.tooltip.interface.d.ts +38 -0
- package/option-types/axis-defaults/labels.interface.d.ts +73 -0
- package/option-types/axis-defaults/title.interface.d.ts +71 -0
- package/option-types/axis-defaults.interface.d.ts +77 -0
- package/option-types/category-axis-item/crosshair.interface.d.ts +44 -0
- package/option-types/category-axis-item/crosshair.tooltip.interface.d.ts +38 -0
- package/option-types/category-axis-item/labels.interface.d.ts +108 -0
- package/option-types/category-axis-item/notes.icon.interface.d.ts +36 -0
- package/option-types/category-axis-item/notes.interface.d.ts +49 -0
- package/option-types/category-axis-item/notes.label.interface.d.ts +50 -0
- package/option-types/category-axis-item/range-labels.interface.d.ts +28 -0
- package/option-types/category-axis-item/select.interface.d.ts +30 -0
- package/option-types/category-axis-item/title.interface.d.ts +69 -0
- package/option-types/category-axis-item.interface.d.ts +163 -0
- package/option-types/chart-area.interface.d.ts +34 -0
- package/option-types/legend/inactive-items.interface.d.ts +14 -0
- package/option-types/legend/item.interface.d.ts +25 -0
- package/option-types/legend/legend-title.interface.d.ts +65 -0
- package/option-types/legend.interface.d.ts +98 -0
- package/option-types/navigator/hint.interface.d.ts +25 -0
- package/option-types/navigator/select.interface.d.ts +22 -0
- package/option-types/navigator.interface.d.ts +41 -0
- package/option-types/pane/title.interface.d.ts +60 -0
- package/option-types/pane-defaults/title.interface.d.ts +56 -0
- package/option-types/pane-defaults.interface.d.ts +43 -0
- package/option-types/pane.interface.d.ts +43 -0
- package/option-types/plot-area.interface.d.ts +30 -0
- package/option-types/series-defaults/labels.from.interface.d.ts +55 -0
- package/option-types/series-defaults/labels.interface.d.ts +77 -0
- package/option-types/series-defaults/labels.to.interface.d.ts +55 -0
- package/option-types/series-defaults/notes.icon.interface.d.ts +36 -0
- package/option-types/series-defaults/notes.interface.d.ts +40 -0
- package/option-types/series-defaults/notes.label.interface.d.ts +50 -0
- package/option-types/series-defaults/tooltip.interface.d.ts +45 -0
- package/option-types/series-defaults.interface.d.ts +95 -0
- package/option-types/series-item/error-bars.interface.d.ts +59 -0
- package/option-types/series-item/extremes.interface.d.ts +36 -0
- package/option-types/series-item/highlight.interface.d.ts +67 -0
- package/option-types/series-item/labels.from.interface.d.ts +71 -0
- package/option-types/series-item/labels.interface.d.ts +101 -0
- package/option-types/series-item/labels.to.interface.d.ts +69 -0
- package/option-types/series-item/markers.interface.d.ts +69 -0
- package/option-types/series-item/notes.icon.interface.d.ts +36 -0
- package/option-types/series-item/notes.interface.d.ts +50 -0
- package/option-types/series-item/notes.label.interface.d.ts +50 -0
- package/option-types/series-item/outliers.interface.d.ts +36 -0
- package/option-types/series-item/tooltip.interface.d.ts +46 -0
- package/option-types/series-item/trendline.interface.d.ts +22 -0
- package/option-types/series-item.interface.d.ts +457 -0
- package/option-types/subtitle.interface.d.ts +65 -0
- package/option-types/title.interface.d.ts +59 -0
- package/option-types/tooltip.interface.d.ts +52 -0
- package/option-types/value-axis-item/crosshair.interface.d.ts +30 -0
- package/option-types/value-axis-item/crosshair.tooltip.interface.d.ts +38 -0
- package/option-types/value-axis-item/labels.interface.d.ts +86 -0
- package/option-types/value-axis-item/notes.icon.interface.d.ts +36 -0
- package/option-types/value-axis-item/notes.interface.d.ts +49 -0
- package/option-types/value-axis-item/notes.label.interface.d.ts +50 -0
- package/option-types/value-axis-item/title.interface.d.ts +70 -0
- package/option-types/value-axis-item.interface.d.ts +118 -0
- package/option-types/x-axis-item/crosshair.interface.d.ts +30 -0
- package/option-types/x-axis-item/crosshair.tooltip.interface.d.ts +38 -0
- package/option-types/x-axis-item/labels.interface.d.ts +93 -0
- package/option-types/x-axis-item/notes.icon.interface.d.ts +36 -0
- package/option-types/x-axis-item/notes.interface.d.ts +50 -0
- package/option-types/x-axis-item/notes.label.interface.d.ts +50 -0
- package/option-types/x-axis-item/title.interface.d.ts +69 -0
- package/option-types/x-axis-item.interface.d.ts +139 -0
- package/option-types/y-axis-item/crosshair.interface.d.ts +30 -0
- package/option-types/y-axis-item/crosshair.tooltip.interface.d.ts +38 -0
- package/option-types/y-axis-item/labels.interface.d.ts +93 -0
- package/option-types/y-axis-item/notes.icon.interface.d.ts +36 -0
- package/option-types/y-axis-item/notes.interface.d.ts +49 -0
- package/option-types/y-axis-item/notes.label.interface.d.ts +50 -0
- package/option-types/y-axis-item/title.interface.d.ts +70 -0
- package/option-types/y-axis-item.interface.d.ts +135 -0
- package/option-types/zoomable.interface.d.ts +18 -0
- package/package-metadata.d.ts +9 -0
- package/package.json +32 -50
- package/store/reducer.d.ts +18 -0
- package/store/store.d.ts +30 -0
- package/theming/theme-service.d.ts +10 -0
- package/tooltip/Context.d.ts +15 -0
- package/tooltip/Crosshair.d.ts +40 -0
- package/tooltip/CrosshairContainer.d.ts +32 -0
- package/tooltip/Point.d.ts +72 -0
- package/tooltip/Popup.d.ts +35 -0
- package/tooltip/Series.d.ts +39 -0
- package/tooltip/SharedTooltipContent.d.ts +15 -0
- package/tooltip/index.d.ts +7 -0
- package/utils/index.d.ts +17 -0
- package/about.md +0 -3
- package/dist/es/BaseChart.d.ts +0 -122
- package/dist/es/BaseChart.js +0 -448
- package/dist/es/BaseChartProps.d.ts +0 -196
- package/dist/es/BaseChartProps.js +0 -2
- package/dist/es/Chart.d.ts +0 -78
- package/dist/es/Chart.js +0 -159
- package/dist/es/ChartBreadcrumb.d.ts +0 -42
- package/dist/es/ChartBreadcrumb.js +0 -92
- package/dist/es/ChartContext.d.ts +0 -17
- package/dist/es/ChartContext.js +0 -6
- package/dist/es/ChartProps.d.ts +0 -11
- package/dist/es/ChartProps.js +0 -1
- package/dist/es/Container.d.ts +0 -9
- package/dist/es/Container.js +0 -10
- package/dist/es/DonutCenter.d.ts +0 -37
- package/dist/es/DonutCenter.js +0 -74
- package/dist/es/Sparkline.d.ts +0 -87
- package/dist/es/Sparkline.js +0 -169
- package/dist/es/SparklineProps.d.ts +0 -14
- package/dist/es/SparklineProps.js +0 -1
- package/dist/es/StockChart.d.ts +0 -41
- package/dist/es/StockChart.js +0 -136
- package/dist/es/StockChartProps.d.ts +0 -15
- package/dist/es/StockChartProps.js +0 -2
- package/dist/es/api-types/axis-range.interface.d.ts +0 -13
- package/dist/es/api-types/axis-range.interface.js +0 -1
- package/dist/es/api-types/chart-axis.interface.d.ts +0 -36
- package/dist/es/api-types/chart-axis.interface.js +0 -2
- package/dist/es/api-types/chart-drilldown-state.interface.d.ts +0 -24
- package/dist/es/api-types/chart-drilldown-state.interface.js +0 -1
- package/dist/es/api-types/chart-pane.interface.d.ts +0 -14
- package/dist/es/api-types/chart-pane.interface.js +0 -1
- package/dist/es/api-types/chart-plotarea.interface.d.ts +0 -14
- package/dist/es/api-types/chart-plotarea.interface.js +0 -1
- package/dist/es/api-types/event-axis-options.interface.d.ts +0 -9
- package/dist/es/api-types/event-axis-options.interface.js +0 -1
- package/dist/es/api-types/event-series-options.interface.d.ts +0 -17
- package/dist/es/api-types/event-series-options.interface.js +0 -1
- package/dist/es/api-types/series-point.interface.d.ts +0 -38
- package/dist/es/api-types/series-point.interface.js +0 -2
- package/dist/es/argument-types/axis-label-visual-args.interface.d.ts +0 -43
- package/dist/es/argument-types/axis-label-visual-args.interface.js +0 -1
- package/dist/es/argument-types/axis-note-visual-args.interface.d.ts +0 -27
- package/dist/es/argument-types/axis-note-visual-args.interface.js +0 -1
- package/dist/es/argument-types/drilldown-series-factory-props.interface.d.ts +0 -17
- package/dist/es/argument-types/drilldown-series-factory-props.interface.js +0 -2
- package/dist/es/argument-types/error-bars-visual-args.interface.d.ts +0 -31
- package/dist/es/argument-types/error-bars-visual-args.interface.js +0 -1
- package/dist/es/argument-types/highlight-toggle-args.interface.d.ts +0 -34
- package/dist/es/argument-types/highlight-toggle-args.interface.js +0 -1
- package/dist/es/argument-types/highlight-visual-args.interface.d.ts +0 -51
- package/dist/es/argument-types/highlight-visual-args.interface.js +0 -1
- package/dist/es/argument-types/legend-item-visual-args.interface.d.ts +0 -27
- package/dist/es/argument-types/legend-item-visual-args.interface.js +0 -1
- package/dist/es/argument-types/legend-labels-content-args.interface.d.ts +0 -21
- package/dist/es/argument-types/legend-labels-content-args.interface.js +0 -2
- package/dist/es/argument-types/markers-visual-args.interface.d.ts +0 -39
- package/dist/es/argument-types/markers-visual-args.interface.js +0 -1
- package/dist/es/argument-types/plot-band-label-visual-args.interface.d.ts +0 -27
- package/dist/es/argument-types/plot-band-label-visual-args.interface.js +0 -1
- package/dist/es/argument-types/series-labels-visual-args.interface.d.ts +0 -27
- package/dist/es/argument-types/series-labels-visual-args.interface.js +0 -1
- package/dist/es/argument-types/series-note-visual-args.interface.d.ts +0 -43
- package/dist/es/argument-types/series-note-visual-args.interface.js +0 -1
- package/dist/es/argument-types/series-visual-args.interface.d.ts +0 -76
- package/dist/es/argument-types/series-visual-args.interface.js +0 -1
- package/dist/es/argument-types/title-visual-args.interface.d.ts +0 -27
- package/dist/es/argument-types/title-visual-args.interface.js +0 -1
- package/dist/es/common/api-types.d.ts +0 -8
- package/dist/es/common/api-types.js +0 -1
- package/dist/es/common/charts.d.ts +0 -5
- package/dist/es/common/charts.js +0 -1
- package/dist/es/common/events.d.ts +0 -22
- package/dist/es/common/events.js +0 -23
- package/dist/es/common/property-types.d.ts +0 -132
- package/dist/es/common/property-types.js +0 -1
- package/dist/es/components/AxisDefaults.d.ts +0 -9
- package/dist/es/components/AxisDefaults.js +0 -17
- package/dist/es/components/CategoryAxis.d.ts +0 -9
- package/dist/es/components/CategoryAxis.js +0 -24
- package/dist/es/components/CategoryAxisItem.d.ts +0 -13
- package/dist/es/components/CategoryAxisItem.js +0 -18
- package/dist/es/components/ChartArea.d.ts +0 -9
- package/dist/es/components/ChartArea.js +0 -17
- package/dist/es/components/Legend.d.ts +0 -13
- package/dist/es/components/Legend.js +0 -17
- package/dist/es/components/Navigator.d.ts +0 -13
- package/dist/es/components/Navigator.js +0 -17
- package/dist/es/components/Pane.d.ts +0 -9
- package/dist/es/components/Pane.js +0 -18
- package/dist/es/components/PaneDefaults.d.ts +0 -13
- package/dist/es/components/PaneDefaults.js +0 -18
- package/dist/es/components/Panes.d.ts +0 -9
- package/dist/es/components/Panes.js +0 -24
- package/dist/es/components/PlotArea.d.ts +0 -9
- package/dist/es/components/PlotArea.js +0 -17
- package/dist/es/components/Series.d.ts +0 -9
- package/dist/es/components/Series.js +0 -24
- package/dist/es/components/SeriesDefaults.d.ts +0 -9
- package/dist/es/components/SeriesDefaults.js +0 -17
- package/dist/es/components/SeriesItem.d.ts +0 -21
- package/dist/es/components/SeriesItem.js +0 -29
- package/dist/es/components/Subtitle.d.ts +0 -9
- package/dist/es/components/Subtitle.js +0 -17
- package/dist/es/components/Title.d.ts +0 -9
- package/dist/es/components/Title.js +0 -17
- package/dist/es/components/Tooltip.d.ts +0 -11
- package/dist/es/components/Tooltip.js +0 -17
- package/dist/es/components/ValueAxis.d.ts +0 -9
- package/dist/es/components/ValueAxis.js +0 -24
- package/dist/es/components/ValueAxisItem.d.ts +0 -13
- package/dist/es/components/ValueAxisItem.js +0 -18
- package/dist/es/components/XAxis.d.ts +0 -9
- package/dist/es/components/XAxis.js +0 -24
- package/dist/es/components/XAxisItem.d.ts +0 -13
- package/dist/es/components/XAxisItem.js +0 -18
- package/dist/es/components/YAxis.d.ts +0 -9
- package/dist/es/components/YAxis.js +0 -24
- package/dist/es/components/YAxisItem.d.ts +0 -13
- package/dist/es/components/YAxisItem.js +0 -18
- package/dist/es/components/Zoomable.d.ts +0 -9
- package/dist/es/components/Zoomable.js +0 -17
- package/dist/es/components/axis-defaults/Crosshair.d.ts +0 -9
- package/dist/es/components/axis-defaults/Crosshair.js +0 -18
- package/dist/es/components/axis-defaults/CrosshairTooltip.d.ts +0 -9
- package/dist/es/components/axis-defaults/CrosshairTooltip.js +0 -18
- package/dist/es/components/axis-defaults/Labels.d.ts +0 -9
- package/dist/es/components/axis-defaults/Labels.js +0 -18
- package/dist/es/components/axis-defaults/Title.d.ts +0 -9
- package/dist/es/components/axis-defaults/Title.js +0 -18
- package/dist/es/components/axis-defaults/main.d.ts +0 -5
- package/dist/es/components/axis-defaults/main.js +0 -5
- package/dist/es/components/base/CollectionConfigurationComponent.d.ts +0 -19
- package/dist/es/components/base/CollectionConfigurationComponent.js +0 -63
- package/dist/es/components/base/ConfigurationComponent.d.ts +0 -24
- package/dist/es/components/base/ConfigurationComponent.js +0 -86
- package/dist/es/components/category-axis-item/Crosshair.d.ts +0 -13
- package/dist/es/components/category-axis-item/Crosshair.js +0 -17
- package/dist/es/components/category-axis-item/CrosshairTooltip.d.ts +0 -9
- package/dist/es/components/category-axis-item/CrosshairTooltip.js +0 -17
- package/dist/es/components/category-axis-item/Labels.d.ts +0 -9
- package/dist/es/components/category-axis-item/Labels.js +0 -17
- package/dist/es/components/category-axis-item/Notes.d.ts +0 -9
- package/dist/es/components/category-axis-item/Notes.js +0 -17
- package/dist/es/components/category-axis-item/NotesIcon.d.ts +0 -9
- package/dist/es/components/category-axis-item/NotesIcon.js +0 -17
- package/dist/es/components/category-axis-item/NotesLabel.d.ts +0 -9
- package/dist/es/components/category-axis-item/NotesLabel.js +0 -17
- package/dist/es/components/category-axis-item/RangeLabels.d.ts +0 -9
- package/dist/es/components/category-axis-item/RangeLabels.js +0 -17
- package/dist/es/components/category-axis-item/Select.d.ts +0 -7
- package/dist/es/components/category-axis-item/Select.js +0 -17
- package/dist/es/components/category-axis-item/Title.d.ts +0 -9
- package/dist/es/components/category-axis-item/Title.js +0 -18
- package/dist/es/components/category-axis-item/main.d.ts +0 -10
- package/dist/es/components/category-axis-item/main.js +0 -9
- package/dist/es/components/legend/InactiveItems.d.ts +0 -9
- package/dist/es/components/legend/InactiveItems.js +0 -18
- package/dist/es/components/legend/Item.d.ts +0 -9
- package/dist/es/components/legend/Item.js +0 -18
- package/dist/es/components/legend/Title.d.ts +0 -13
- package/dist/es/components/legend/Title.js +0 -22
- package/dist/es/components/legend/main.d.ts +0 -4
- package/dist/es/components/legend/main.js +0 -4
- package/dist/es/components/main.d.ts +0 -35
- package/dist/es/components/main.js +0 -35
- package/dist/es/components/navigator/CategoryAxis.d.ts +0 -9
- package/dist/es/components/navigator/CategoryAxis.js +0 -18
- package/dist/es/components/navigator/Hint.d.ts +0 -9
- package/dist/es/components/navigator/Hint.js +0 -17
- package/dist/es/components/navigator/Pane.d.ts +0 -9
- package/dist/es/components/navigator/Pane.js +0 -18
- package/dist/es/components/navigator/Select.d.ts +0 -9
- package/dist/es/components/navigator/Select.js +0 -17
- package/dist/es/components/navigator/Series.d.ts +0 -9
- package/dist/es/components/navigator/Series.js +0 -24
- package/dist/es/components/navigator/SeriesItem.d.ts +0 -9
- package/dist/es/components/navigator/SeriesItem.js +0 -18
- package/dist/es/components/navigator/category-axis/Crosshair.d.ts +0 -9
- package/dist/es/components/navigator/category-axis/Crosshair.js +0 -17
- package/dist/es/components/navigator/category-axis/CrosshairTooltip.d.ts +0 -9
- package/dist/es/components/navigator/category-axis/CrosshairTooltip.js +0 -17
- package/dist/es/components/navigator/category-axis/Labels.d.ts +0 -9
- package/dist/es/components/navigator/category-axis/Labels.js +0 -17
- package/dist/es/components/navigator/category-axis/Notes.d.ts +0 -9
- package/dist/es/components/navigator/category-axis/Notes.js +0 -17
- package/dist/es/components/navigator/category-axis/NotesIcon.d.ts +0 -9
- package/dist/es/components/navigator/category-axis/NotesIcon.js +0 -17
- package/dist/es/components/navigator/category-axis/NotesLabel.d.ts +0 -9
- package/dist/es/components/navigator/category-axis/NotesLabel.js +0 -17
- package/dist/es/components/navigator/category-axis/Select.d.ts +0 -7
- package/dist/es/components/navigator/category-axis/Select.js +0 -17
- package/dist/es/components/navigator/category-axis/Title.d.ts +0 -9
- package/dist/es/components/navigator/category-axis/Title.js +0 -18
- package/dist/es/components/navigator/category-axis/main.d.ts +0 -9
- package/dist/es/components/navigator/category-axis/main.js +0 -8
- package/dist/es/components/navigator/main.d.ts +0 -10
- package/dist/es/components/navigator/main.js +0 -10
- package/dist/es/components/navigator/pane/Title.d.ts +0 -9
- package/dist/es/components/navigator/pane/Title.js +0 -18
- package/dist/es/components/navigator/pane/main.d.ts +0 -2
- package/dist/es/components/navigator/pane/main.js +0 -2
- package/dist/es/components/navigator/series-item/ErrorBars.d.ts +0 -9
- package/dist/es/components/navigator/series-item/ErrorBars.js +0 -17
- package/dist/es/components/navigator/series-item/Extremes.d.ts +0 -9
- package/dist/es/components/navigator/series-item/Extremes.js +0 -17
- package/dist/es/components/navigator/series-item/Highlight.d.ts +0 -9
- package/dist/es/components/navigator/series-item/Highlight.js +0 -17
- package/dist/es/components/navigator/series-item/Labels.d.ts +0 -9
- package/dist/es/components/navigator/series-item/Labels.js +0 -17
- package/dist/es/components/navigator/series-item/LabelsFrom.d.ts +0 -9
- package/dist/es/components/navigator/series-item/LabelsFrom.js +0 -17
- package/dist/es/components/navigator/series-item/LabelsTo.d.ts +0 -9
- package/dist/es/components/navigator/series-item/LabelsTo.js +0 -17
- package/dist/es/components/navigator/series-item/Markers.d.ts +0 -9
- package/dist/es/components/navigator/series-item/Markers.js +0 -17
- package/dist/es/components/navigator/series-item/Notes.d.ts +0 -9
- package/dist/es/components/navigator/series-item/Notes.js +0 -17
- package/dist/es/components/navigator/series-item/NotesIcon.d.ts +0 -9
- package/dist/es/components/navigator/series-item/NotesIcon.js +0 -17
- package/dist/es/components/navigator/series-item/NotesLabel.d.ts +0 -9
- package/dist/es/components/navigator/series-item/NotesLabel.js +0 -17
- package/dist/es/components/navigator/series-item/Outliers.d.ts +0 -9
- package/dist/es/components/navigator/series-item/Outliers.js +0 -17
- package/dist/es/components/navigator/series-item/Tooltip.d.ts +0 -11
- package/dist/es/components/navigator/series-item/Tooltip.js +0 -17
- package/dist/es/components/navigator/series-item/main.d.ts +0 -13
- package/dist/es/components/navigator/series-item/main.js +0 -13
- package/dist/es/components/pane/Title.d.ts +0 -9
- package/dist/es/components/pane/Title.js +0 -18
- package/dist/es/components/pane/main.d.ts +0 -2
- package/dist/es/components/pane/main.js +0 -2
- package/dist/es/components/pane-defaults/Title.d.ts +0 -9
- package/dist/es/components/pane-defaults/Title.js +0 -18
- package/dist/es/components/pane-defaults/main.d.ts +0 -2
- package/dist/es/components/pane-defaults/main.js +0 -2
- package/dist/es/components/series-defaults/Labels.d.ts +0 -9
- package/dist/es/components/series-defaults/Labels.js +0 -17
- package/dist/es/components/series-defaults/LabelsFrom.d.ts +0 -9
- package/dist/es/components/series-defaults/LabelsFrom.js +0 -17
- package/dist/es/components/series-defaults/LabelsTo.d.ts +0 -9
- package/dist/es/components/series-defaults/LabelsTo.js +0 -17
- package/dist/es/components/series-defaults/Notes.d.ts +0 -9
- package/dist/es/components/series-defaults/Notes.js +0 -17
- package/dist/es/components/series-defaults/NotesIcon.d.ts +0 -9
- package/dist/es/components/series-defaults/NotesIcon.js +0 -17
- package/dist/es/components/series-defaults/NotesLabel.d.ts +0 -9
- package/dist/es/components/series-defaults/NotesLabel.js +0 -17
- package/dist/es/components/series-defaults/Tooltip.d.ts +0 -11
- package/dist/es/components/series-defaults/Tooltip.js +0 -17
- package/dist/es/components/series-defaults/main.d.ts +0 -8
- package/dist/es/components/series-defaults/main.js +0 -8
- package/dist/es/components/series-item/ErrorBars.d.ts +0 -9
- package/dist/es/components/series-item/ErrorBars.js +0 -17
- package/dist/es/components/series-item/Extremes.d.ts +0 -9
- package/dist/es/components/series-item/Extremes.js +0 -17
- package/dist/es/components/series-item/Highlight.d.ts +0 -9
- package/dist/es/components/series-item/Highlight.js +0 -17
- package/dist/es/components/series-item/Labels.d.ts +0 -13
- package/dist/es/components/series-item/Labels.js +0 -17
- package/dist/es/components/series-item/LabelsFrom.d.ts +0 -9
- package/dist/es/components/series-item/LabelsFrom.js +0 -17
- package/dist/es/components/series-item/LabelsTo.d.ts +0 -9
- package/dist/es/components/series-item/LabelsTo.js +0 -17
- package/dist/es/components/series-item/Markers.d.ts +0 -9
- package/dist/es/components/series-item/Markers.js +0 -17
- package/dist/es/components/series-item/Notes.d.ts +0 -9
- package/dist/es/components/series-item/Notes.js +0 -17
- package/dist/es/components/series-item/NotesIcon.d.ts +0 -9
- package/dist/es/components/series-item/NotesIcon.js +0 -17
- package/dist/es/components/series-item/NotesLabel.d.ts +0 -9
- package/dist/es/components/series-item/NotesLabel.js +0 -17
- package/dist/es/components/series-item/Outliers.d.ts +0 -9
- package/dist/es/components/series-item/Outliers.js +0 -17
- package/dist/es/components/series-item/Tooltip.d.ts +0 -11
- package/dist/es/components/series-item/Tooltip.js +0 -17
- package/dist/es/components/series-item/main.d.ts +0 -13
- package/dist/es/components/series-item/main.js +0 -13
- package/dist/es/components/value-axis-item/Crosshair.d.ts +0 -13
- package/dist/es/components/value-axis-item/Crosshair.js +0 -17
- package/dist/es/components/value-axis-item/CrosshairTooltip.d.ts +0 -9
- package/dist/es/components/value-axis-item/CrosshairTooltip.js +0 -17
- package/dist/es/components/value-axis-item/Labels.d.ts +0 -9
- package/dist/es/components/value-axis-item/Labels.js +0 -17
- package/dist/es/components/value-axis-item/Notes.d.ts +0 -9
- package/dist/es/components/value-axis-item/Notes.js +0 -17
- package/dist/es/components/value-axis-item/NotesIcon.d.ts +0 -9
- package/dist/es/components/value-axis-item/NotesIcon.js +0 -17
- package/dist/es/components/value-axis-item/NotesLabel.d.ts +0 -9
- package/dist/es/components/value-axis-item/NotesLabel.js +0 -17
- package/dist/es/components/value-axis-item/Title.d.ts +0 -9
- package/dist/es/components/value-axis-item/Title.js +0 -18
- package/dist/es/components/value-axis-item/main.d.ts +0 -8
- package/dist/es/components/value-axis-item/main.js +0 -8
- package/dist/es/components/x-axis-item/Crosshair.d.ts +0 -13
- package/dist/es/components/x-axis-item/Crosshair.js +0 -17
- package/dist/es/components/x-axis-item/CrosshairTooltip.d.ts +0 -9
- package/dist/es/components/x-axis-item/CrosshairTooltip.js +0 -17
- package/dist/es/components/x-axis-item/Labels.d.ts +0 -9
- package/dist/es/components/x-axis-item/Labels.js +0 -17
- package/dist/es/components/x-axis-item/Notes.d.ts +0 -9
- package/dist/es/components/x-axis-item/Notes.js +0 -17
- package/dist/es/components/x-axis-item/NotesIcon.d.ts +0 -9
- package/dist/es/components/x-axis-item/NotesIcon.js +0 -17
- package/dist/es/components/x-axis-item/NotesLabel.d.ts +0 -9
- package/dist/es/components/x-axis-item/NotesLabel.js +0 -17
- package/dist/es/components/x-axis-item/Title.d.ts +0 -9
- package/dist/es/components/x-axis-item/Title.js +0 -18
- package/dist/es/components/x-axis-item/main.d.ts +0 -8
- package/dist/es/components/x-axis-item/main.js +0 -8
- package/dist/es/components/y-axis-item/Crosshair.d.ts +0 -13
- package/dist/es/components/y-axis-item/Crosshair.js +0 -17
- package/dist/es/components/y-axis-item/CrosshairTooltip.d.ts +0 -9
- package/dist/es/components/y-axis-item/CrosshairTooltip.js +0 -17
- package/dist/es/components/y-axis-item/Labels.d.ts +0 -9
- package/dist/es/components/y-axis-item/Labels.js +0 -17
- package/dist/es/components/y-axis-item/Notes.d.ts +0 -9
- package/dist/es/components/y-axis-item/Notes.js +0 -17
- package/dist/es/components/y-axis-item/NotesIcon.d.ts +0 -9
- package/dist/es/components/y-axis-item/NotesIcon.js +0 -17
- package/dist/es/components/y-axis-item/NotesLabel.d.ts +0 -9
- package/dist/es/components/y-axis-item/NotesLabel.js +0 -17
- package/dist/es/components/y-axis-item/Title.d.ts +0 -9
- package/dist/es/components/y-axis-item/Title.js +0 -18
- package/dist/es/components/y-axis-item/main.d.ts +0 -8
- package/dist/es/components/y-axis-item/main.js +0 -8
- package/dist/es/defaults.d.ts +0 -1
- package/dist/es/defaults.js +0 -15
- package/dist/es/events/axis-label-click-event.d.ts +0 -32
- package/dist/es/events/axis-label-click-event.js +0 -38
- package/dist/es/events/base-event.d.ts +0 -14
- package/dist/es/events/base-event.js +0 -13
- package/dist/es/events/chart-event-builder.d.ts +0 -6
- package/dist/es/events/chart-event-builder.js +0 -55
- package/dist/es/events/dom-event.d.ts +0 -20
- package/dist/es/events/dom-event.js +0 -18
- package/dist/es/events/dom-events-builder.d.ts +0 -7
- package/dist/es/events/dom-events-builder.js +0 -32
- package/dist/es/events/dom-events.d.ts +0 -24
- package/dist/es/events/dom-events.js +0 -163
- package/dist/es/events/drag-end-event.d.ts +0 -22
- package/dist/es/events/drag-end-event.js +0 -35
- package/dist/es/events/drag-event.d.ts +0 -22
- package/dist/es/events/drag-event.js +0 -33
- package/dist/es/events/drag-start-event.d.ts +0 -22
- package/dist/es/events/drag-start-event.js +0 -33
- package/dist/es/events/drilldown-event.d.ts +0 -38
- package/dist/es/events/drilldown-event.js +0 -38
- package/dist/es/events/drilldown-state-change-event.d.ts +0 -22
- package/dist/es/events/drilldown-state-change-event.js +0 -16
- package/dist/es/events/legend-item-click-event.d.ts +0 -32
- package/dist/es/events/legend-item-click-event.js +0 -41
- package/dist/es/events/legend-item-hover-event.d.ts +0 -32
- package/dist/es/events/legend-item-hover-event.js +0 -41
- package/dist/es/events/legend-item-leave-event.d.ts +0 -32
- package/dist/es/events/legend-item-leave-event.js +0 -41
- package/dist/es/events/navigator-filter-event.d.ts +0 -19
- package/dist/es/events/navigator-filter-event.js +0 -33
- package/dist/es/events/note-click-event.d.ts +0 -32
- package/dist/es/events/note-click-event.js +0 -36
- package/dist/es/events/note-hover-event.d.ts +0 -32
- package/dist/es/events/note-hover-event.js +0 -36
- package/dist/es/events/plot-area-click-event.d.ts +0 -31
- package/dist/es/events/plot-area-click-event.js +0 -36
- package/dist/es/events/plot-area-hover-event.d.ts +0 -31
- package/dist/es/events/plot-area-hover-event.js +0 -36
- package/dist/es/events/preventable-event.d.ts +0 -18
- package/dist/es/events/preventable-event.js +0 -46
- package/dist/es/events/render-event.d.ts +0 -11
- package/dist/es/events/render-event.js +0 -30
- package/dist/es/events/select-end-event.d.ts +0 -24
- package/dist/es/events/select-end-event.js +0 -34
- package/dist/es/events/select-event.d.ts +0 -24
- package/dist/es/events/select-event.js +0 -34
- package/dist/es/events/select-start-event.d.ts +0 -24
- package/dist/es/events/select-start-event.js +0 -34
- package/dist/es/events/series-click-event.d.ts +0 -45
- package/dist/es/events/series-click-event.js +0 -41
- package/dist/es/events/series-hover-event.d.ts +0 -49
- package/dist/es/events/series-hover-event.js +0 -42
- package/dist/es/events/zoom-end-event.d.ts +0 -24
- package/dist/es/events/zoom-end-event.js +0 -35
- package/dist/es/events/zoom-event.d.ts +0 -28
- package/dist/es/events/zoom-event.js +0 -36
- package/dist/es/events/zoom-start-event.d.ts +0 -22
- package/dist/es/events/zoom-start-event.js +0 -35
- package/dist/es/field-types/auto-base-unit-steps.interface.d.ts +0 -39
- package/dist/es/field-types/auto-base-unit-steps.interface.js +0 -1
- package/dist/es/field-types/axis-labels-position.d.ts +0 -22
- package/dist/es/field-types/axis-labels-position.js +0 -1
- package/dist/es/field-types/axis-line.interface.d.ts +0 -22
- package/dist/es/field-types/axis-line.interface.js +0 -2
- package/dist/es/field-types/axis-ticks.interface.d.ts +0 -29
- package/dist/es/field-types/axis-ticks.interface.js +0 -2
- package/dist/es/field-types/axis-title-position.d.ts +0 -22
- package/dist/es/field-types/axis-title-position.js +0 -1
- package/dist/es/field-types/base-unit.d.ts +0 -34
- package/dist/es/field-types/base-unit.js +0 -1
- package/dist/es/field-types/border.interface.d.ts +0 -18
- package/dist/es/field-types/border.interface.js +0 -2
- package/dist/es/field-types/bullet-target-line.interface.d.ts +0 -9
- package/dist/es/field-types/bullet-target-line.interface.js +0 -1
- package/dist/es/field-types/bullet-target.interface.d.ts +0 -19
- package/dist/es/field-types/bullet-target.interface.js +0 -2
- package/dist/es/field-types/category-base-unit.d.ts +0 -35
- package/dist/es/field-types/category-base-unit.js +0 -1
- package/dist/es/field-types/dash-type.d.ts +0 -28
- package/dist/es/field-types/dash-type.js +0 -1
- package/dist/es/field-types/date-formats.interface.d.ts +0 -39
- package/dist/es/field-types/date-formats.interface.js +0 -2
- package/dist/es/field-types/drag-action.interface.d.ts +0 -15
- package/dist/es/field-types/drag-action.interface.js +0 -1
- package/dist/es/field-types/error-bar-line.interface.d.ts +0 -14
- package/dist/es/field-types/error-bar-line.interface.js +0 -1
- package/dist/es/field-types/grid-lines.interface.d.ts +0 -30
- package/dist/es/field-types/grid-lines.interface.js +0 -2
- package/dist/es/field-types/highlight-line.interface.d.ts +0 -22
- package/dist/es/field-types/highlight-line.interface.js +0 -2
- package/dist/es/field-types/label-connectors.interface.d.ts +0 -17
- package/dist/es/field-types/label-connectors.interface.js +0 -1
- package/dist/es/field-types/label-rotation.interface.d.ts +0 -19
- package/dist/es/field-types/label-rotation.interface.js +0 -2
- package/dist/es/field-types/legend-labels.interface.d.ts +0 -28
- package/dist/es/field-types/legend-labels.interface.js +0 -2
- package/dist/es/field-types/line-style.d.ts +0 -28
- package/dist/es/field-types/line-style.js +0 -1
- package/dist/es/field-types/lock-axis.d.ts +0 -4
- package/dist/es/field-types/lock-axis.js +0 -1
- package/dist/es/field-types/margin.interface.d.ts +0 -21
- package/dist/es/field-types/margin.interface.js +0 -1
- package/dist/es/field-types/marker-type.d.ts +0 -31
- package/dist/es/field-types/marker-type.js +0 -1
- package/dist/es/field-types/modifier-key.d.ts +0 -4
- package/dist/es/field-types/modifier-key.js +0 -1
- package/dist/es/field-types/mousewheel-select.interface.d.ts +0 -18
- package/dist/es/field-types/mousewheel-select.interface.js +0 -2
- package/dist/es/field-types/mousewheel-zoom.interface.d.ts +0 -18
- package/dist/es/field-types/mousewheel-zoom.interface.js +0 -1
- package/dist/es/field-types/negative-bubble-values.interface.d.ts +0 -13
- package/dist/es/field-types/negative-bubble-values.interface.js +0 -2
- package/dist/es/field-types/note-label-position.d.ts +0 -29
- package/dist/es/field-types/note-label-position.js +0 -1
- package/dist/es/field-types/note-line.interface.d.ts +0 -22
- package/dist/es/field-types/note-line.interface.js +0 -1
- package/dist/es/field-types/note-position.d.ts +0 -29
- package/dist/es/field-types/note-position.js +0 -1
- package/dist/es/field-types/overlay.interface.d.ts +0 -15
- package/dist/es/field-types/overlay.interface.js +0 -1
- package/dist/es/field-types/padding.interface.d.ts +0 -6
- package/dist/es/field-types/padding.interface.js +0 -1
- package/dist/es/field-types/plot-band-label.interface.d.ts +0 -87
- package/dist/es/field-types/plot-band-label.interface.js +0 -1
- package/dist/es/field-types/plot-band.interface.d.ts +0 -30
- package/dist/es/field-types/plot-band.interface.js +0 -1
- package/dist/es/field-types/series-labels-position.d.ts +0 -16
- package/dist/es/field-types/series-labels-position.js +0 -18
- package/dist/es/field-types/series-line.interface.d.ts +0 -28
- package/dist/es/field-types/series-line.interface.js +0 -2
- package/dist/es/field-types/series-stack.interface.d.ts +0 -17
- package/dist/es/field-types/series-stack.interface.js +0 -2
- package/dist/es/field-types/series-type.d.ts +0 -29
- package/dist/es/field-types/series-type.js +0 -1
- package/dist/es/field-types/trendline-forecast.interface.d.ts +0 -13
- package/dist/es/field-types/trendline-forecast.interface.js +0 -1
- package/dist/es/field-types/week-start-day.enum.d.ts +0 -33
- package/dist/es/field-types/week-start-day.enum.js +0 -34
- package/dist/es/main.d.ts +0 -29
- package/dist/es/main.js +0 -21
- package/dist/es/methods/index.d.ts +0 -36
- package/dist/es/methods/index.js +0 -50
- package/dist/es/option-types/axis-defaults/crosshair.interface.d.ts +0 -41
- package/dist/es/option-types/axis-defaults/crosshair.interface.js +0 -2
- package/dist/es/option-types/axis-defaults/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/es/option-types/axis-defaults/crosshair.tooltip.interface.js +0 -2
- package/dist/es/option-types/axis-defaults/labels.interface.d.ts +0 -69
- package/dist/es/option-types/axis-defaults/labels.interface.js +0 -2
- package/dist/es/option-types/axis-defaults/title.interface.d.ts +0 -67
- package/dist/es/option-types/axis-defaults/title.interface.js +0 -2
- package/dist/es/option-types/axis-defaults.interface.d.ts +0 -73
- package/dist/es/option-types/axis-defaults.interface.js +0 -2
- package/dist/es/option-types/category-axis-item/crosshair.interface.d.ts +0 -40
- package/dist/es/option-types/category-axis-item/crosshair.interface.js +0 -2
- package/dist/es/option-types/category-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/es/option-types/category-axis-item/crosshair.tooltip.interface.js +0 -2
- package/dist/es/option-types/category-axis-item/labels.interface.d.ts +0 -104
- package/dist/es/option-types/category-axis-item/labels.interface.js +0 -2
- package/dist/es/option-types/category-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/es/option-types/category-axis-item/notes.icon.interface.js +0 -1
- package/dist/es/option-types/category-axis-item/notes.interface.d.ts +0 -45
- package/dist/es/option-types/category-axis-item/notes.interface.js +0 -1
- package/dist/es/option-types/category-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/es/option-types/category-axis-item/notes.label.interface.js +0 -2
- package/dist/es/option-types/category-axis-item/range-labels.interface.d.ts +0 -24
- package/dist/es/option-types/category-axis-item/range-labels.interface.js +0 -1
- package/dist/es/option-types/category-axis-item/select.interface.d.ts +0 -26
- package/dist/es/option-types/category-axis-item/select.interface.js +0 -2
- package/dist/es/option-types/category-axis-item/title.interface.d.ts +0 -65
- package/dist/es/option-types/category-axis-item/title.interface.js +0 -2
- package/dist/es/option-types/category-axis-item.interface.d.ts +0 -159
- package/dist/es/option-types/category-axis-item.interface.js +0 -2
- package/dist/es/option-types/chart-area.interface.d.ts +0 -30
- package/dist/es/option-types/chart-area.interface.js +0 -1
- package/dist/es/option-types/legend/inactive-items.interface.d.ts +0 -10
- package/dist/es/option-types/legend/inactive-items.interface.js +0 -1
- package/dist/es/option-types/legend/item.interface.d.ts +0 -21
- package/dist/es/option-types/legend/item.interface.js +0 -1
- package/dist/es/option-types/legend/legend-title.interface.d.ts +0 -61
- package/dist/es/option-types/legend/legend-title.interface.js +0 -1
- package/dist/es/option-types/legend.interface.d.ts +0 -94
- package/dist/es/option-types/legend.interface.js +0 -2
- package/dist/es/option-types/navigator/hint.interface.d.ts +0 -21
- package/dist/es/option-types/navigator/hint.interface.js +0 -1
- package/dist/es/option-types/navigator/select.interface.d.ts +0 -18
- package/dist/es/option-types/navigator/select.interface.js +0 -1
- package/dist/es/option-types/navigator.interface.d.ts +0 -37
- package/dist/es/option-types/navigator.interface.js +0 -2
- package/dist/es/option-types/pane/title.interface.d.ts +0 -56
- package/dist/es/option-types/pane/title.interface.js +0 -2
- package/dist/es/option-types/pane-defaults/title.interface.d.ts +0 -52
- package/dist/es/option-types/pane-defaults/title.interface.js +0 -2
- package/dist/es/option-types/pane-defaults.interface.d.ts +0 -39
- package/dist/es/option-types/pane-defaults.interface.js +0 -2
- package/dist/es/option-types/pane.interface.d.ts +0 -39
- package/dist/es/option-types/pane.interface.js +0 -2
- package/dist/es/option-types/plot-area.interface.d.ts +0 -26
- package/dist/es/option-types/plot-area.interface.js +0 -2
- package/dist/es/option-types/series-defaults/labels.from.interface.d.ts +0 -51
- package/dist/es/option-types/series-defaults/labels.from.interface.js +0 -2
- package/dist/es/option-types/series-defaults/labels.interface.d.ts +0 -73
- package/dist/es/option-types/series-defaults/labels.interface.js +0 -2
- package/dist/es/option-types/series-defaults/labels.to.interface.d.ts +0 -51
- package/dist/es/option-types/series-defaults/labels.to.interface.js +0 -2
- package/dist/es/option-types/series-defaults/notes.icon.interface.d.ts +0 -32
- package/dist/es/option-types/series-defaults/notes.icon.interface.js +0 -1
- package/dist/es/option-types/series-defaults/notes.interface.d.ts +0 -36
- package/dist/es/option-types/series-defaults/notes.interface.js +0 -1
- package/dist/es/option-types/series-defaults/notes.label.interface.d.ts +0 -46
- package/dist/es/option-types/series-defaults/notes.label.interface.js +0 -2
- package/dist/es/option-types/series-defaults/tooltip.interface.d.ts +0 -41
- package/dist/es/option-types/series-defaults/tooltip.interface.js +0 -2
- package/dist/es/option-types/series-defaults.interface.d.ts +0 -91
- package/dist/es/option-types/series-defaults.interface.js +0 -2
- package/dist/es/option-types/series-item/error-bars.interface.d.ts +0 -55
- package/dist/es/option-types/series-item/error-bars.interface.js +0 -2
- package/dist/es/option-types/series-item/extremes.interface.d.ts +0 -32
- package/dist/es/option-types/series-item/extremes.interface.js +0 -1
- package/dist/es/option-types/series-item/highlight.interface.d.ts +0 -63
- package/dist/es/option-types/series-item/highlight.interface.js +0 -2
- package/dist/es/option-types/series-item/labels.from.interface.d.ts +0 -67
- package/dist/es/option-types/series-item/labels.from.interface.js +0 -2
- package/dist/es/option-types/series-item/labels.interface.d.ts +0 -97
- package/dist/es/option-types/series-item/labels.interface.js +0 -2
- package/dist/es/option-types/series-item/labels.to.interface.d.ts +0 -65
- package/dist/es/option-types/series-item/labels.to.interface.js +0 -2
- package/dist/es/option-types/series-item/markers.interface.d.ts +0 -65
- package/dist/es/option-types/series-item/markers.interface.js +0 -2
- package/dist/es/option-types/series-item/notes.icon.interface.d.ts +0 -32
- package/dist/es/option-types/series-item/notes.icon.interface.js +0 -1
- package/dist/es/option-types/series-item/notes.interface.d.ts +0 -46
- package/dist/es/option-types/series-item/notes.interface.js +0 -1
- package/dist/es/option-types/series-item/notes.label.interface.d.ts +0 -46
- package/dist/es/option-types/series-item/notes.label.interface.js +0 -2
- package/dist/es/option-types/series-item/outliers.interface.d.ts +0 -32
- package/dist/es/option-types/series-item/outliers.interface.js +0 -1
- package/dist/es/option-types/series-item/tooltip.interface.d.ts +0 -42
- package/dist/es/option-types/series-item/tooltip.interface.js +0 -2
- package/dist/es/option-types/series-item/trendline.interface.d.ts +0 -18
- package/dist/es/option-types/series-item/trendline.interface.js +0 -1
- package/dist/es/option-types/series-item.interface.d.ts +0 -453
- package/dist/es/option-types/series-item.interface.js +0 -2
- package/dist/es/option-types/subtitle.interface.d.ts +0 -61
- package/dist/es/option-types/subtitle.interface.js +0 -1
- package/dist/es/option-types/title.interface.d.ts +0 -55
- package/dist/es/option-types/title.interface.js +0 -2
- package/dist/es/option-types/tooltip.interface.d.ts +0 -48
- package/dist/es/option-types/tooltip.interface.js +0 -2
- package/dist/es/option-types/value-axis-item/crosshair.interface.d.ts +0 -26
- package/dist/es/option-types/value-axis-item/crosshair.interface.js +0 -2
- package/dist/es/option-types/value-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/es/option-types/value-axis-item/crosshair.tooltip.interface.js +0 -2
- package/dist/es/option-types/value-axis-item/labels.interface.d.ts +0 -82
- package/dist/es/option-types/value-axis-item/labels.interface.js +0 -2
- package/dist/es/option-types/value-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/es/option-types/value-axis-item/notes.icon.interface.js +0 -1
- package/dist/es/option-types/value-axis-item/notes.interface.d.ts +0 -45
- package/dist/es/option-types/value-axis-item/notes.interface.js +0 -1
- package/dist/es/option-types/value-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/es/option-types/value-axis-item/notes.label.interface.js +0 -2
- package/dist/es/option-types/value-axis-item/title.interface.d.ts +0 -66
- package/dist/es/option-types/value-axis-item/title.interface.js +0 -1
- package/dist/es/option-types/value-axis-item.interface.d.ts +0 -114
- package/dist/es/option-types/value-axis-item.interface.js +0 -2
- package/dist/es/option-types/x-axis-item/crosshair.interface.d.ts +0 -26
- package/dist/es/option-types/x-axis-item/crosshair.interface.js +0 -2
- package/dist/es/option-types/x-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/es/option-types/x-axis-item/crosshair.tooltip.interface.js +0 -2
- package/dist/es/option-types/x-axis-item/labels.interface.d.ts +0 -89
- package/dist/es/option-types/x-axis-item/labels.interface.js +0 -2
- package/dist/es/option-types/x-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/es/option-types/x-axis-item/notes.icon.interface.js +0 -1
- package/dist/es/option-types/x-axis-item/notes.interface.d.ts +0 -46
- package/dist/es/option-types/x-axis-item/notes.interface.js +0 -1
- package/dist/es/option-types/x-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/es/option-types/x-axis-item/notes.label.interface.js +0 -2
- package/dist/es/option-types/x-axis-item/title.interface.d.ts +0 -65
- package/dist/es/option-types/x-axis-item/title.interface.js +0 -2
- package/dist/es/option-types/x-axis-item.interface.d.ts +0 -135
- package/dist/es/option-types/x-axis-item.interface.js +0 -2
- package/dist/es/option-types/y-axis-item/crosshair.interface.d.ts +0 -26
- package/dist/es/option-types/y-axis-item/crosshair.interface.js +0 -2
- package/dist/es/option-types/y-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/es/option-types/y-axis-item/crosshair.tooltip.interface.js +0 -2
- package/dist/es/option-types/y-axis-item/labels.interface.d.ts +0 -89
- package/dist/es/option-types/y-axis-item/labels.interface.js +0 -2
- package/dist/es/option-types/y-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/es/option-types/y-axis-item/notes.icon.interface.js +0 -1
- package/dist/es/option-types/y-axis-item/notes.interface.d.ts +0 -45
- package/dist/es/option-types/y-axis-item/notes.interface.js +0 -1
- package/dist/es/option-types/y-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/es/option-types/y-axis-item/notes.label.interface.js +0 -2
- package/dist/es/option-types/y-axis-item/title.interface.d.ts +0 -66
- package/dist/es/option-types/y-axis-item/title.interface.js +0 -2
- package/dist/es/option-types/y-axis-item.interface.d.ts +0 -131
- package/dist/es/option-types/y-axis-item.interface.js +0 -2
- package/dist/es/option-types/zoomable.interface.d.ts +0 -14
- package/dist/es/option-types/zoomable.interface.js +0 -1
- package/dist/es/package-metadata.d.ts +0 -5
- package/dist/es/package-metadata.js +0 -11
- package/dist/es/store/reducer.d.ts +0 -14
- package/dist/es/store/reducer.js +0 -102
- package/dist/es/store/store.d.ts +0 -26
- package/dist/es/store/store.js +0 -28
- package/dist/es/theming/theme-service.d.ts +0 -6
- package/dist/es/theming/theme-service.js +0 -152
- package/dist/es/tooltip/Context.d.ts +0 -11
- package/dist/es/tooltip/Context.js +0 -1
- package/dist/es/tooltip/Crosshair.d.ts +0 -36
- package/dist/es/tooltip/Crosshair.js +0 -110
- package/dist/es/tooltip/CrosshairContainer.d.ts +0 -28
- package/dist/es/tooltip/CrosshairContainer.js +0 -94
- package/dist/es/tooltip/Point.d.ts +0 -68
- package/dist/es/tooltip/Point.js +0 -35
- package/dist/es/tooltip/Popup.d.ts +0 -31
- package/dist/es/tooltip/Popup.js +0 -83
- package/dist/es/tooltip/Series.d.ts +0 -35
- package/dist/es/tooltip/Series.js +0 -182
- package/dist/es/tooltip/SharedTooltipContent.d.ts +0 -12
- package/dist/es/tooltip/SharedTooltipContent.js +0 -21
- package/dist/es/tooltip/main.d.ts +0 -3
- package/dist/es/tooltip/main.js +0 -2
- package/dist/es/utils/main.d.ts +0 -14
- package/dist/es/utils/main.js +0 -32
- package/dist/npm/BaseChart.d.ts +0 -122
- package/dist/npm/BaseChart.js +0 -451
- package/dist/npm/BaseChartProps.d.ts +0 -196
- package/dist/npm/BaseChartProps.js +0 -3
- package/dist/npm/Chart.d.ts +0 -78
- package/dist/npm/Chart.js +0 -162
- package/dist/npm/ChartBreadcrumb.d.ts +0 -42
- package/dist/npm/ChartBreadcrumb.js +0 -95
- package/dist/npm/ChartContext.d.ts +0 -17
- package/dist/npm/ChartContext.js +0 -9
- package/dist/npm/ChartProps.d.ts +0 -11
- package/dist/npm/ChartProps.js +0 -2
- package/dist/npm/Container.d.ts +0 -9
- package/dist/npm/Container.js +0 -9
- package/dist/npm/DonutCenter.d.ts +0 -37
- package/dist/npm/DonutCenter.js +0 -77
- package/dist/npm/Sparkline.d.ts +0 -87
- package/dist/npm/Sparkline.js +0 -172
- package/dist/npm/SparklineProps.d.ts +0 -14
- package/dist/npm/SparklineProps.js +0 -2
- package/dist/npm/StockChart.d.ts +0 -41
- package/dist/npm/StockChart.js +0 -139
- package/dist/npm/StockChartProps.d.ts +0 -15
- package/dist/npm/StockChartProps.js +0 -3
- package/dist/npm/api-types/axis-range.interface.d.ts +0 -13
- package/dist/npm/api-types/axis-range.interface.js +0 -2
- package/dist/npm/api-types/chart-axis.interface.d.ts +0 -36
- package/dist/npm/api-types/chart-axis.interface.js +0 -3
- package/dist/npm/api-types/chart-drilldown-state.interface.d.ts +0 -24
- package/dist/npm/api-types/chart-drilldown-state.interface.js +0 -2
- package/dist/npm/api-types/chart-pane.interface.d.ts +0 -14
- package/dist/npm/api-types/chart-pane.interface.js +0 -2
- package/dist/npm/api-types/chart-plotarea.interface.d.ts +0 -14
- package/dist/npm/api-types/chart-plotarea.interface.js +0 -2
- package/dist/npm/api-types/event-axis-options.interface.d.ts +0 -9
- package/dist/npm/api-types/event-axis-options.interface.js +0 -2
- package/dist/npm/api-types/event-series-options.interface.d.ts +0 -17
- package/dist/npm/api-types/event-series-options.interface.js +0 -2
- package/dist/npm/api-types/series-point.interface.d.ts +0 -38
- package/dist/npm/api-types/series-point.interface.js +0 -3
- package/dist/npm/argument-types/axis-label-visual-args.interface.d.ts +0 -43
- package/dist/npm/argument-types/axis-label-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/axis-note-visual-args.interface.d.ts +0 -27
- package/dist/npm/argument-types/axis-note-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/drilldown-series-factory-props.interface.d.ts +0 -17
- package/dist/npm/argument-types/drilldown-series-factory-props.interface.js +0 -3
- package/dist/npm/argument-types/error-bars-visual-args.interface.d.ts +0 -31
- package/dist/npm/argument-types/error-bars-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/highlight-toggle-args.interface.d.ts +0 -34
- package/dist/npm/argument-types/highlight-toggle-args.interface.js +0 -2
- package/dist/npm/argument-types/highlight-visual-args.interface.d.ts +0 -51
- package/dist/npm/argument-types/highlight-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/legend-item-visual-args.interface.d.ts +0 -27
- package/dist/npm/argument-types/legend-item-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/legend-labels-content-args.interface.d.ts +0 -21
- package/dist/npm/argument-types/legend-labels-content-args.interface.js +0 -3
- package/dist/npm/argument-types/markers-visual-args.interface.d.ts +0 -39
- package/dist/npm/argument-types/markers-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/plot-band-label-visual-args.interface.d.ts +0 -27
- package/dist/npm/argument-types/plot-band-label-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/series-labels-visual-args.interface.d.ts +0 -27
- package/dist/npm/argument-types/series-labels-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/series-note-visual-args.interface.d.ts +0 -43
- package/dist/npm/argument-types/series-note-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/series-visual-args.interface.d.ts +0 -76
- package/dist/npm/argument-types/series-visual-args.interface.js +0 -2
- package/dist/npm/argument-types/title-visual-args.interface.d.ts +0 -27
- package/dist/npm/argument-types/title-visual-args.interface.js +0 -2
- package/dist/npm/common/api-types.d.ts +0 -8
- package/dist/npm/common/api-types.js +0 -2
- package/dist/npm/common/charts.d.ts +0 -5
- package/dist/npm/common/charts.js +0 -2
- package/dist/npm/common/events.d.ts +0 -22
- package/dist/npm/common/events.js +0 -48
- package/dist/npm/common/property-types.d.ts +0 -132
- package/dist/npm/common/property-types.js +0 -5
- package/dist/npm/components/AxisDefaults.d.ts +0 -9
- package/dist/npm/components/AxisDefaults.js +0 -20
- package/dist/npm/components/CategoryAxis.d.ts +0 -9
- package/dist/npm/components/CategoryAxis.js +0 -27
- package/dist/npm/components/CategoryAxisItem.d.ts +0 -13
- package/dist/npm/components/CategoryAxisItem.js +0 -21
- package/dist/npm/components/ChartArea.d.ts +0 -9
- package/dist/npm/components/ChartArea.js +0 -20
- package/dist/npm/components/Legend.d.ts +0 -13
- package/dist/npm/components/Legend.js +0 -20
- package/dist/npm/components/Navigator.d.ts +0 -13
- package/dist/npm/components/Navigator.js +0 -20
- package/dist/npm/components/Pane.d.ts +0 -9
- package/dist/npm/components/Pane.js +0 -21
- package/dist/npm/components/PaneDefaults.d.ts +0 -13
- package/dist/npm/components/PaneDefaults.js +0 -21
- package/dist/npm/components/Panes.d.ts +0 -9
- package/dist/npm/components/Panes.js +0 -27
- package/dist/npm/components/PlotArea.d.ts +0 -9
- package/dist/npm/components/PlotArea.js +0 -20
- package/dist/npm/components/Series.d.ts +0 -9
- package/dist/npm/components/Series.js +0 -27
- package/dist/npm/components/SeriesDefaults.d.ts +0 -9
- package/dist/npm/components/SeriesDefaults.js +0 -20
- package/dist/npm/components/SeriesItem.d.ts +0 -21
- package/dist/npm/components/SeriesItem.js +0 -32
- package/dist/npm/components/Subtitle.d.ts +0 -9
- package/dist/npm/components/Subtitle.js +0 -20
- package/dist/npm/components/Title.d.ts +0 -9
- package/dist/npm/components/Title.js +0 -20
- package/dist/npm/components/Tooltip.d.ts +0 -11
- package/dist/npm/components/Tooltip.js +0 -20
- package/dist/npm/components/ValueAxis.d.ts +0 -9
- package/dist/npm/components/ValueAxis.js +0 -27
- package/dist/npm/components/ValueAxisItem.d.ts +0 -13
- package/dist/npm/components/ValueAxisItem.js +0 -21
- package/dist/npm/components/XAxis.d.ts +0 -9
- package/dist/npm/components/XAxis.js +0 -27
- package/dist/npm/components/XAxisItem.d.ts +0 -13
- package/dist/npm/components/XAxisItem.js +0 -21
- package/dist/npm/components/YAxis.d.ts +0 -9
- package/dist/npm/components/YAxis.js +0 -27
- package/dist/npm/components/YAxisItem.d.ts +0 -13
- package/dist/npm/components/YAxisItem.js +0 -21
- package/dist/npm/components/Zoomable.d.ts +0 -9
- package/dist/npm/components/Zoomable.js +0 -20
- package/dist/npm/components/axis-defaults/Crosshair.d.ts +0 -9
- package/dist/npm/components/axis-defaults/Crosshair.js +0 -21
- package/dist/npm/components/axis-defaults/CrosshairTooltip.d.ts +0 -9
- package/dist/npm/components/axis-defaults/CrosshairTooltip.js +0 -21
- package/dist/npm/components/axis-defaults/Labels.d.ts +0 -9
- package/dist/npm/components/axis-defaults/Labels.js +0 -21
- package/dist/npm/components/axis-defaults/Title.d.ts +0 -9
- package/dist/npm/components/axis-defaults/Title.js +0 -21
- package/dist/npm/components/axis-defaults/main.d.ts +0 -5
- package/dist/npm/components/axis-defaults/main.js +0 -11
- package/dist/npm/components/base/CollectionConfigurationComponent.d.ts +0 -19
- package/dist/npm/components/base/CollectionConfigurationComponent.js +0 -66
- package/dist/npm/components/base/ConfigurationComponent.d.ts +0 -24
- package/dist/npm/components/base/ConfigurationComponent.js +0 -89
- package/dist/npm/components/category-axis-item/Crosshair.d.ts +0 -13
- package/dist/npm/components/category-axis-item/Crosshair.js +0 -20
- package/dist/npm/components/category-axis-item/CrosshairTooltip.d.ts +0 -9
- package/dist/npm/components/category-axis-item/CrosshairTooltip.js +0 -20
- package/dist/npm/components/category-axis-item/Labels.d.ts +0 -9
- package/dist/npm/components/category-axis-item/Labels.js +0 -20
- package/dist/npm/components/category-axis-item/Notes.d.ts +0 -9
- package/dist/npm/components/category-axis-item/Notes.js +0 -20
- package/dist/npm/components/category-axis-item/NotesIcon.d.ts +0 -9
- package/dist/npm/components/category-axis-item/NotesIcon.js +0 -20
- package/dist/npm/components/category-axis-item/NotesLabel.d.ts +0 -9
- package/dist/npm/components/category-axis-item/NotesLabel.js +0 -20
- package/dist/npm/components/category-axis-item/RangeLabels.d.ts +0 -9
- package/dist/npm/components/category-axis-item/RangeLabels.js +0 -20
- package/dist/npm/components/category-axis-item/Select.d.ts +0 -7
- package/dist/npm/components/category-axis-item/Select.js +0 -19
- package/dist/npm/components/category-axis-item/Title.d.ts +0 -9
- package/dist/npm/components/category-axis-item/Title.js +0 -21
- package/dist/npm/components/category-axis-item/main.d.ts +0 -10
- package/dist/npm/components/category-axis-item/main.js +0 -19
- package/dist/npm/components/legend/InactiveItems.d.ts +0 -9
- package/dist/npm/components/legend/InactiveItems.js +0 -21
- package/dist/npm/components/legend/Item.d.ts +0 -9
- package/dist/npm/components/legend/Item.js +0 -21
- package/dist/npm/components/legend/Title.d.ts +0 -13
- package/dist/npm/components/legend/Title.js +0 -25
- package/dist/npm/components/legend/main.d.ts +0 -4
- package/dist/npm/components/legend/main.js +0 -9
- package/dist/npm/components/main.d.ts +0 -35
- package/dist/npm/components/main.js +0 -74
- package/dist/npm/components/navigator/CategoryAxis.d.ts +0 -9
- package/dist/npm/components/navigator/CategoryAxis.js +0 -21
- package/dist/npm/components/navigator/Hint.d.ts +0 -9
- package/dist/npm/components/navigator/Hint.js +0 -20
- package/dist/npm/components/navigator/Pane.d.ts +0 -9
- package/dist/npm/components/navigator/Pane.js +0 -21
- package/dist/npm/components/navigator/Select.d.ts +0 -9
- package/dist/npm/components/navigator/Select.js +0 -20
- package/dist/npm/components/navigator/Series.d.ts +0 -9
- package/dist/npm/components/navigator/Series.js +0 -27
- package/dist/npm/components/navigator/SeriesItem.d.ts +0 -9
- package/dist/npm/components/navigator/SeriesItem.js +0 -21
- package/dist/npm/components/navigator/category-axis/Crosshair.d.ts +0 -9
- package/dist/npm/components/navigator/category-axis/Crosshair.js +0 -20
- package/dist/npm/components/navigator/category-axis/CrosshairTooltip.d.ts +0 -9
- package/dist/npm/components/navigator/category-axis/CrosshairTooltip.js +0 -20
- package/dist/npm/components/navigator/category-axis/Labels.d.ts +0 -9
- package/dist/npm/components/navigator/category-axis/Labels.js +0 -20
- package/dist/npm/components/navigator/category-axis/Notes.d.ts +0 -9
- package/dist/npm/components/navigator/category-axis/Notes.js +0 -20
- package/dist/npm/components/navigator/category-axis/NotesIcon.d.ts +0 -9
- package/dist/npm/components/navigator/category-axis/NotesIcon.js +0 -20
- package/dist/npm/components/navigator/category-axis/NotesLabel.d.ts +0 -9
- package/dist/npm/components/navigator/category-axis/NotesLabel.js +0 -20
- package/dist/npm/components/navigator/category-axis/Select.d.ts +0 -7
- package/dist/npm/components/navigator/category-axis/Select.js +0 -19
- package/dist/npm/components/navigator/category-axis/Title.d.ts +0 -9
- package/dist/npm/components/navigator/category-axis/Title.js +0 -21
- package/dist/npm/components/navigator/category-axis/main.d.ts +0 -9
- package/dist/npm/components/navigator/category-axis/main.js +0 -17
- package/dist/npm/components/navigator/main.d.ts +0 -10
- package/dist/npm/components/navigator/main.js +0 -32
- package/dist/npm/components/navigator/pane/Title.d.ts +0 -9
- package/dist/npm/components/navigator/pane/Title.js +0 -21
- package/dist/npm/components/navigator/pane/main.d.ts +0 -2
- package/dist/npm/components/navigator/pane/main.js +0 -5
- package/dist/npm/components/navigator/series-item/ErrorBars.d.ts +0 -9
- package/dist/npm/components/navigator/series-item/ErrorBars.js +0 -20
- package/dist/npm/components/navigator/series-item/Extremes.d.ts +0 -9
- package/dist/npm/components/navigator/series-item/Extremes.js +0 -20
- package/dist/npm/components/navigator/series-item/Highlight.d.ts +0 -9
- package/dist/npm/components/navigator/series-item/Highlight.js +0 -20
- package/dist/npm/components/navigator/series-item/Labels.d.ts +0 -9
- package/dist/npm/components/navigator/series-item/Labels.js +0 -20
- package/dist/npm/components/navigator/series-item/LabelsFrom.d.ts +0 -9
- package/dist/npm/components/navigator/series-item/LabelsFrom.js +0 -20
- package/dist/npm/components/navigator/series-item/LabelsTo.d.ts +0 -9
- package/dist/npm/components/navigator/series-item/LabelsTo.js +0 -20
- package/dist/npm/components/navigator/series-item/Markers.d.ts +0 -9
- package/dist/npm/components/navigator/series-item/Markers.js +0 -20
- package/dist/npm/components/navigator/series-item/Notes.d.ts +0 -9
- package/dist/npm/components/navigator/series-item/Notes.js +0 -20
- package/dist/npm/components/navigator/series-item/NotesIcon.d.ts +0 -9
- package/dist/npm/components/navigator/series-item/NotesIcon.js +0 -20
- package/dist/npm/components/navigator/series-item/NotesLabel.d.ts +0 -9
- package/dist/npm/components/navigator/series-item/NotesLabel.js +0 -20
- package/dist/npm/components/navigator/series-item/Outliers.d.ts +0 -9
- package/dist/npm/components/navigator/series-item/Outliers.js +0 -20
- package/dist/npm/components/navigator/series-item/Tooltip.d.ts +0 -11
- package/dist/npm/components/navigator/series-item/Tooltip.js +0 -20
- package/dist/npm/components/navigator/series-item/main.d.ts +0 -13
- package/dist/npm/components/navigator/series-item/main.js +0 -27
- package/dist/npm/components/pane/Title.d.ts +0 -9
- package/dist/npm/components/pane/Title.js +0 -21
- package/dist/npm/components/pane/main.d.ts +0 -2
- package/dist/npm/components/pane/main.js +0 -5
- package/dist/npm/components/pane-defaults/Title.d.ts +0 -9
- package/dist/npm/components/pane-defaults/Title.js +0 -21
- package/dist/npm/components/pane-defaults/main.d.ts +0 -2
- package/dist/npm/components/pane-defaults/main.js +0 -5
- package/dist/npm/components/series-defaults/Labels.d.ts +0 -9
- package/dist/npm/components/series-defaults/Labels.js +0 -20
- package/dist/npm/components/series-defaults/LabelsFrom.d.ts +0 -9
- package/dist/npm/components/series-defaults/LabelsFrom.js +0 -20
- package/dist/npm/components/series-defaults/LabelsTo.d.ts +0 -9
- package/dist/npm/components/series-defaults/LabelsTo.js +0 -20
- package/dist/npm/components/series-defaults/Notes.d.ts +0 -9
- package/dist/npm/components/series-defaults/Notes.js +0 -20
- package/dist/npm/components/series-defaults/NotesIcon.d.ts +0 -9
- package/dist/npm/components/series-defaults/NotesIcon.js +0 -20
- package/dist/npm/components/series-defaults/NotesLabel.d.ts +0 -9
- package/dist/npm/components/series-defaults/NotesLabel.js +0 -20
- package/dist/npm/components/series-defaults/Tooltip.d.ts +0 -11
- package/dist/npm/components/series-defaults/Tooltip.js +0 -20
- package/dist/npm/components/series-defaults/main.d.ts +0 -8
- package/dist/npm/components/series-defaults/main.js +0 -17
- package/dist/npm/components/series-item/ErrorBars.d.ts +0 -9
- package/dist/npm/components/series-item/ErrorBars.js +0 -20
- package/dist/npm/components/series-item/Extremes.d.ts +0 -9
- package/dist/npm/components/series-item/Extremes.js +0 -20
- package/dist/npm/components/series-item/Highlight.d.ts +0 -9
- package/dist/npm/components/series-item/Highlight.js +0 -20
- package/dist/npm/components/series-item/Labels.d.ts +0 -13
- package/dist/npm/components/series-item/Labels.js +0 -20
- package/dist/npm/components/series-item/LabelsFrom.d.ts +0 -9
- package/dist/npm/components/series-item/LabelsFrom.js +0 -20
- package/dist/npm/components/series-item/LabelsTo.d.ts +0 -9
- package/dist/npm/components/series-item/LabelsTo.js +0 -20
- package/dist/npm/components/series-item/Markers.d.ts +0 -9
- package/dist/npm/components/series-item/Markers.js +0 -20
- package/dist/npm/components/series-item/Notes.d.ts +0 -9
- package/dist/npm/components/series-item/Notes.js +0 -20
- package/dist/npm/components/series-item/NotesIcon.d.ts +0 -9
- package/dist/npm/components/series-item/NotesIcon.js +0 -20
- package/dist/npm/components/series-item/NotesLabel.d.ts +0 -9
- package/dist/npm/components/series-item/NotesLabel.js +0 -20
- package/dist/npm/components/series-item/Outliers.d.ts +0 -9
- package/dist/npm/components/series-item/Outliers.js +0 -20
- package/dist/npm/components/series-item/Tooltip.d.ts +0 -11
- package/dist/npm/components/series-item/Tooltip.js +0 -20
- package/dist/npm/components/series-item/main.d.ts +0 -13
- package/dist/npm/components/series-item/main.js +0 -27
- package/dist/npm/components/value-axis-item/Crosshair.d.ts +0 -13
- package/dist/npm/components/value-axis-item/Crosshair.js +0 -20
- package/dist/npm/components/value-axis-item/CrosshairTooltip.d.ts +0 -9
- package/dist/npm/components/value-axis-item/CrosshairTooltip.js +0 -20
- package/dist/npm/components/value-axis-item/Labels.d.ts +0 -9
- package/dist/npm/components/value-axis-item/Labels.js +0 -20
- package/dist/npm/components/value-axis-item/Notes.d.ts +0 -9
- package/dist/npm/components/value-axis-item/Notes.js +0 -20
- package/dist/npm/components/value-axis-item/NotesIcon.d.ts +0 -9
- package/dist/npm/components/value-axis-item/NotesIcon.js +0 -20
- package/dist/npm/components/value-axis-item/NotesLabel.d.ts +0 -9
- package/dist/npm/components/value-axis-item/NotesLabel.js +0 -20
- package/dist/npm/components/value-axis-item/Title.d.ts +0 -9
- package/dist/npm/components/value-axis-item/Title.js +0 -21
- package/dist/npm/components/value-axis-item/main.d.ts +0 -8
- package/dist/npm/components/value-axis-item/main.js +0 -17
- package/dist/npm/components/x-axis-item/Crosshair.d.ts +0 -13
- package/dist/npm/components/x-axis-item/Crosshair.js +0 -20
- package/dist/npm/components/x-axis-item/CrosshairTooltip.d.ts +0 -9
- package/dist/npm/components/x-axis-item/CrosshairTooltip.js +0 -20
- package/dist/npm/components/x-axis-item/Labels.d.ts +0 -9
- package/dist/npm/components/x-axis-item/Labels.js +0 -20
- package/dist/npm/components/x-axis-item/Notes.d.ts +0 -9
- package/dist/npm/components/x-axis-item/Notes.js +0 -20
- package/dist/npm/components/x-axis-item/NotesIcon.d.ts +0 -9
- package/dist/npm/components/x-axis-item/NotesIcon.js +0 -20
- package/dist/npm/components/x-axis-item/NotesLabel.d.ts +0 -9
- package/dist/npm/components/x-axis-item/NotesLabel.js +0 -20
- package/dist/npm/components/x-axis-item/Title.d.ts +0 -9
- package/dist/npm/components/x-axis-item/Title.js +0 -21
- package/dist/npm/components/x-axis-item/main.d.ts +0 -8
- package/dist/npm/components/x-axis-item/main.js +0 -17
- package/dist/npm/components/y-axis-item/Crosshair.d.ts +0 -13
- package/dist/npm/components/y-axis-item/Crosshair.js +0 -20
- package/dist/npm/components/y-axis-item/CrosshairTooltip.d.ts +0 -9
- package/dist/npm/components/y-axis-item/CrosshairTooltip.js +0 -20
- package/dist/npm/components/y-axis-item/Labels.d.ts +0 -9
- package/dist/npm/components/y-axis-item/Labels.js +0 -20
- package/dist/npm/components/y-axis-item/Notes.d.ts +0 -9
- package/dist/npm/components/y-axis-item/Notes.js +0 -20
- package/dist/npm/components/y-axis-item/NotesIcon.d.ts +0 -9
- package/dist/npm/components/y-axis-item/NotesIcon.js +0 -20
- package/dist/npm/components/y-axis-item/NotesLabel.d.ts +0 -9
- package/dist/npm/components/y-axis-item/NotesLabel.js +0 -20
- package/dist/npm/components/y-axis-item/Title.d.ts +0 -9
- package/dist/npm/components/y-axis-item/Title.js +0 -21
- package/dist/npm/components/y-axis-item/main.d.ts +0 -8
- package/dist/npm/components/y-axis-item/main.js +0 -17
- package/dist/npm/defaults.d.ts +0 -1
- package/dist/npm/defaults.js +0 -17
- package/dist/npm/events/axis-label-click-event.d.ts +0 -32
- package/dist/npm/events/axis-label-click-event.js +0 -41
- package/dist/npm/events/base-event.d.ts +0 -14
- package/dist/npm/events/base-event.js +0 -16
- package/dist/npm/events/chart-event-builder.d.ts +0 -6
- package/dist/npm/events/chart-event-builder.js +0 -58
- package/dist/npm/events/dom-event.d.ts +0 -20
- package/dist/npm/events/dom-event.js +0 -21
- package/dist/npm/events/dom-events-builder.d.ts +0 -7
- package/dist/npm/events/dom-events-builder.js +0 -35
- package/dist/npm/events/dom-events.d.ts +0 -24
- package/dist/npm/events/dom-events.js +0 -166
- package/dist/npm/events/drag-end-event.d.ts +0 -22
- package/dist/npm/events/drag-end-event.js +0 -38
- package/dist/npm/events/drag-event.d.ts +0 -22
- package/dist/npm/events/drag-event.js +0 -36
- package/dist/npm/events/drag-start-event.d.ts +0 -22
- package/dist/npm/events/drag-start-event.js +0 -36
- package/dist/npm/events/drilldown-event.d.ts +0 -38
- package/dist/npm/events/drilldown-event.js +0 -41
- package/dist/npm/events/drilldown-state-change-event.d.ts +0 -22
- package/dist/npm/events/drilldown-state-change-event.js +0 -19
- package/dist/npm/events/legend-item-click-event.d.ts +0 -32
- package/dist/npm/events/legend-item-click-event.js +0 -44
- package/dist/npm/events/legend-item-hover-event.d.ts +0 -32
- package/dist/npm/events/legend-item-hover-event.js +0 -44
- package/dist/npm/events/legend-item-leave-event.d.ts +0 -32
- package/dist/npm/events/legend-item-leave-event.js +0 -44
- package/dist/npm/events/navigator-filter-event.d.ts +0 -19
- package/dist/npm/events/navigator-filter-event.js +0 -36
- package/dist/npm/events/note-click-event.d.ts +0 -32
- package/dist/npm/events/note-click-event.js +0 -39
- package/dist/npm/events/note-hover-event.d.ts +0 -32
- package/dist/npm/events/note-hover-event.js +0 -39
- package/dist/npm/events/plot-area-click-event.d.ts +0 -31
- package/dist/npm/events/plot-area-click-event.js +0 -39
- package/dist/npm/events/plot-area-hover-event.d.ts +0 -31
- package/dist/npm/events/plot-area-hover-event.js +0 -39
- package/dist/npm/events/preventable-event.d.ts +0 -18
- package/dist/npm/events/preventable-event.js +0 -49
- package/dist/npm/events/render-event.d.ts +0 -11
- package/dist/npm/events/render-event.js +0 -33
- package/dist/npm/events/select-end-event.d.ts +0 -24
- package/dist/npm/events/select-end-event.js +0 -37
- package/dist/npm/events/select-event.d.ts +0 -24
- package/dist/npm/events/select-event.js +0 -37
- package/dist/npm/events/select-start-event.d.ts +0 -24
- package/dist/npm/events/select-start-event.js +0 -37
- package/dist/npm/events/series-click-event.d.ts +0 -45
- package/dist/npm/events/series-click-event.js +0 -44
- package/dist/npm/events/series-hover-event.d.ts +0 -49
- package/dist/npm/events/series-hover-event.js +0 -45
- package/dist/npm/events/zoom-end-event.d.ts +0 -24
- package/dist/npm/events/zoom-end-event.js +0 -38
- package/dist/npm/events/zoom-event.d.ts +0 -28
- package/dist/npm/events/zoom-event.js +0 -39
- package/dist/npm/events/zoom-start-event.d.ts +0 -22
- package/dist/npm/events/zoom-start-event.js +0 -38
- package/dist/npm/field-types/auto-base-unit-steps.interface.d.ts +0 -39
- package/dist/npm/field-types/auto-base-unit-steps.interface.js +0 -2
- package/dist/npm/field-types/axis-labels-position.d.ts +0 -22
- package/dist/npm/field-types/axis-labels-position.js +0 -2
- package/dist/npm/field-types/axis-line.interface.d.ts +0 -22
- package/dist/npm/field-types/axis-line.interface.js +0 -3
- package/dist/npm/field-types/axis-ticks.interface.d.ts +0 -29
- package/dist/npm/field-types/axis-ticks.interface.js +0 -3
- package/dist/npm/field-types/axis-title-position.d.ts +0 -22
- package/dist/npm/field-types/axis-title-position.js +0 -2
- package/dist/npm/field-types/base-unit.d.ts +0 -34
- package/dist/npm/field-types/base-unit.js +0 -2
- package/dist/npm/field-types/border.interface.d.ts +0 -18
- package/dist/npm/field-types/border.interface.js +0 -3
- package/dist/npm/field-types/bullet-target-line.interface.d.ts +0 -9
- package/dist/npm/field-types/bullet-target-line.interface.js +0 -2
- package/dist/npm/field-types/bullet-target.interface.d.ts +0 -19
- package/dist/npm/field-types/bullet-target.interface.js +0 -3
- package/dist/npm/field-types/category-base-unit.d.ts +0 -35
- package/dist/npm/field-types/category-base-unit.js +0 -2
- package/dist/npm/field-types/dash-type.d.ts +0 -28
- package/dist/npm/field-types/dash-type.js +0 -2
- package/dist/npm/field-types/date-formats.interface.d.ts +0 -39
- package/dist/npm/field-types/date-formats.interface.js +0 -3
- package/dist/npm/field-types/drag-action.interface.d.ts +0 -15
- package/dist/npm/field-types/drag-action.interface.js +0 -2
- package/dist/npm/field-types/error-bar-line.interface.d.ts +0 -14
- package/dist/npm/field-types/error-bar-line.interface.js +0 -2
- package/dist/npm/field-types/grid-lines.interface.d.ts +0 -30
- package/dist/npm/field-types/grid-lines.interface.js +0 -3
- package/dist/npm/field-types/highlight-line.interface.d.ts +0 -22
- package/dist/npm/field-types/highlight-line.interface.js +0 -3
- package/dist/npm/field-types/label-connectors.interface.d.ts +0 -17
- package/dist/npm/field-types/label-connectors.interface.js +0 -2
- package/dist/npm/field-types/label-rotation.interface.d.ts +0 -19
- package/dist/npm/field-types/label-rotation.interface.js +0 -3
- package/dist/npm/field-types/legend-labels.interface.d.ts +0 -28
- package/dist/npm/field-types/legend-labels.interface.js +0 -3
- package/dist/npm/field-types/line-style.d.ts +0 -28
- package/dist/npm/field-types/line-style.js +0 -2
- package/dist/npm/field-types/lock-axis.d.ts +0 -4
- package/dist/npm/field-types/lock-axis.js +0 -2
- package/dist/npm/field-types/margin.interface.d.ts +0 -21
- package/dist/npm/field-types/margin.interface.js +0 -2
- package/dist/npm/field-types/marker-type.d.ts +0 -31
- package/dist/npm/field-types/marker-type.js +0 -2
- package/dist/npm/field-types/modifier-key.d.ts +0 -4
- package/dist/npm/field-types/modifier-key.js +0 -2
- package/dist/npm/field-types/mousewheel-select.interface.d.ts +0 -18
- package/dist/npm/field-types/mousewheel-select.interface.js +0 -3
- package/dist/npm/field-types/mousewheel-zoom.interface.d.ts +0 -18
- package/dist/npm/field-types/mousewheel-zoom.interface.js +0 -2
- package/dist/npm/field-types/negative-bubble-values.interface.d.ts +0 -13
- package/dist/npm/field-types/negative-bubble-values.interface.js +0 -3
- package/dist/npm/field-types/note-label-position.d.ts +0 -29
- package/dist/npm/field-types/note-label-position.js +0 -2
- package/dist/npm/field-types/note-line.interface.d.ts +0 -22
- package/dist/npm/field-types/note-line.interface.js +0 -2
- package/dist/npm/field-types/note-position.d.ts +0 -29
- package/dist/npm/field-types/note-position.js +0 -2
- package/dist/npm/field-types/overlay.interface.d.ts +0 -15
- package/dist/npm/field-types/overlay.interface.js +0 -2
- package/dist/npm/field-types/padding.interface.d.ts +0 -6
- package/dist/npm/field-types/padding.interface.js +0 -2
- package/dist/npm/field-types/plot-band-label.interface.d.ts +0 -87
- package/dist/npm/field-types/plot-band-label.interface.js +0 -2
- package/dist/npm/field-types/plot-band.interface.d.ts +0 -30
- package/dist/npm/field-types/plot-band.interface.js +0 -2
- package/dist/npm/field-types/series-labels-position.d.ts +0 -16
- package/dist/npm/field-types/series-labels-position.js +0 -19
- package/dist/npm/field-types/series-line.interface.d.ts +0 -28
- package/dist/npm/field-types/series-line.interface.js +0 -3
- package/dist/npm/field-types/series-stack.interface.d.ts +0 -17
- package/dist/npm/field-types/series-stack.interface.js +0 -3
- package/dist/npm/field-types/series-type.d.ts +0 -29
- package/dist/npm/field-types/series-type.js +0 -2
- package/dist/npm/field-types/trendline-forecast.interface.d.ts +0 -13
- package/dist/npm/field-types/trendline-forecast.interface.js +0 -2
- package/dist/npm/field-types/week-start-day.enum.d.ts +0 -33
- package/dist/npm/field-types/week-start-day.enum.js +0 -37
- package/dist/npm/main.d.ts +0 -29
- package/dist/npm/main.js +0 -50
- package/dist/npm/methods/index.d.ts +0 -36
- package/dist/npm/methods/index.js +0 -56
- package/dist/npm/option-types/axis-defaults/crosshair.interface.d.ts +0 -41
- package/dist/npm/option-types/axis-defaults/crosshair.interface.js +0 -3
- package/dist/npm/option-types/axis-defaults/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/npm/option-types/axis-defaults/crosshair.tooltip.interface.js +0 -3
- package/dist/npm/option-types/axis-defaults/labels.interface.d.ts +0 -69
- package/dist/npm/option-types/axis-defaults/labels.interface.js +0 -3
- package/dist/npm/option-types/axis-defaults/title.interface.d.ts +0 -67
- package/dist/npm/option-types/axis-defaults/title.interface.js +0 -3
- package/dist/npm/option-types/axis-defaults.interface.d.ts +0 -73
- package/dist/npm/option-types/axis-defaults.interface.js +0 -3
- package/dist/npm/option-types/category-axis-item/crosshair.interface.d.ts +0 -40
- package/dist/npm/option-types/category-axis-item/crosshair.interface.js +0 -3
- package/dist/npm/option-types/category-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/npm/option-types/category-axis-item/crosshair.tooltip.interface.js +0 -3
- package/dist/npm/option-types/category-axis-item/labels.interface.d.ts +0 -104
- package/dist/npm/option-types/category-axis-item/labels.interface.js +0 -3
- package/dist/npm/option-types/category-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/npm/option-types/category-axis-item/notes.icon.interface.js +0 -2
- package/dist/npm/option-types/category-axis-item/notes.interface.d.ts +0 -45
- package/dist/npm/option-types/category-axis-item/notes.interface.js +0 -2
- package/dist/npm/option-types/category-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/npm/option-types/category-axis-item/notes.label.interface.js +0 -3
- package/dist/npm/option-types/category-axis-item/range-labels.interface.d.ts +0 -24
- package/dist/npm/option-types/category-axis-item/range-labels.interface.js +0 -2
- package/dist/npm/option-types/category-axis-item/select.interface.d.ts +0 -26
- package/dist/npm/option-types/category-axis-item/select.interface.js +0 -3
- package/dist/npm/option-types/category-axis-item/title.interface.d.ts +0 -65
- package/dist/npm/option-types/category-axis-item/title.interface.js +0 -3
- package/dist/npm/option-types/category-axis-item.interface.d.ts +0 -159
- package/dist/npm/option-types/category-axis-item.interface.js +0 -3
- package/dist/npm/option-types/chart-area.interface.d.ts +0 -30
- package/dist/npm/option-types/chart-area.interface.js +0 -2
- package/dist/npm/option-types/legend/inactive-items.interface.d.ts +0 -10
- package/dist/npm/option-types/legend/inactive-items.interface.js +0 -2
- package/dist/npm/option-types/legend/item.interface.d.ts +0 -21
- package/dist/npm/option-types/legend/item.interface.js +0 -2
- package/dist/npm/option-types/legend/legend-title.interface.d.ts +0 -61
- package/dist/npm/option-types/legend/legend-title.interface.js +0 -2
- package/dist/npm/option-types/legend.interface.d.ts +0 -94
- package/dist/npm/option-types/legend.interface.js +0 -3
- package/dist/npm/option-types/navigator/hint.interface.d.ts +0 -21
- package/dist/npm/option-types/navigator/hint.interface.js +0 -2
- package/dist/npm/option-types/navigator/select.interface.d.ts +0 -18
- package/dist/npm/option-types/navigator/select.interface.js +0 -2
- package/dist/npm/option-types/navigator.interface.d.ts +0 -37
- package/dist/npm/option-types/navigator.interface.js +0 -3
- package/dist/npm/option-types/pane/title.interface.d.ts +0 -56
- package/dist/npm/option-types/pane/title.interface.js +0 -3
- package/dist/npm/option-types/pane-defaults/title.interface.d.ts +0 -52
- package/dist/npm/option-types/pane-defaults/title.interface.js +0 -3
- package/dist/npm/option-types/pane-defaults.interface.d.ts +0 -39
- package/dist/npm/option-types/pane-defaults.interface.js +0 -3
- package/dist/npm/option-types/pane.interface.d.ts +0 -39
- package/dist/npm/option-types/pane.interface.js +0 -3
- package/dist/npm/option-types/plot-area.interface.d.ts +0 -26
- package/dist/npm/option-types/plot-area.interface.js +0 -3
- package/dist/npm/option-types/series-defaults/labels.from.interface.d.ts +0 -51
- package/dist/npm/option-types/series-defaults/labels.from.interface.js +0 -3
- package/dist/npm/option-types/series-defaults/labels.interface.d.ts +0 -73
- package/dist/npm/option-types/series-defaults/labels.interface.js +0 -3
- package/dist/npm/option-types/series-defaults/labels.to.interface.d.ts +0 -51
- package/dist/npm/option-types/series-defaults/labels.to.interface.js +0 -3
- package/dist/npm/option-types/series-defaults/notes.icon.interface.d.ts +0 -32
- package/dist/npm/option-types/series-defaults/notes.icon.interface.js +0 -2
- package/dist/npm/option-types/series-defaults/notes.interface.d.ts +0 -36
- package/dist/npm/option-types/series-defaults/notes.interface.js +0 -2
- package/dist/npm/option-types/series-defaults/notes.label.interface.d.ts +0 -46
- package/dist/npm/option-types/series-defaults/notes.label.interface.js +0 -3
- package/dist/npm/option-types/series-defaults/tooltip.interface.d.ts +0 -41
- package/dist/npm/option-types/series-defaults/tooltip.interface.js +0 -3
- package/dist/npm/option-types/series-defaults.interface.d.ts +0 -91
- package/dist/npm/option-types/series-defaults.interface.js +0 -3
- package/dist/npm/option-types/series-item/error-bars.interface.d.ts +0 -55
- package/dist/npm/option-types/series-item/error-bars.interface.js +0 -3
- package/dist/npm/option-types/series-item/extremes.interface.d.ts +0 -32
- package/dist/npm/option-types/series-item/extremes.interface.js +0 -2
- package/dist/npm/option-types/series-item/highlight.interface.d.ts +0 -63
- package/dist/npm/option-types/series-item/highlight.interface.js +0 -3
- package/dist/npm/option-types/series-item/labels.from.interface.d.ts +0 -67
- package/dist/npm/option-types/series-item/labels.from.interface.js +0 -3
- package/dist/npm/option-types/series-item/labels.interface.d.ts +0 -97
- package/dist/npm/option-types/series-item/labels.interface.js +0 -3
- package/dist/npm/option-types/series-item/labels.to.interface.d.ts +0 -65
- package/dist/npm/option-types/series-item/labels.to.interface.js +0 -3
- package/dist/npm/option-types/series-item/markers.interface.d.ts +0 -65
- package/dist/npm/option-types/series-item/markers.interface.js +0 -3
- package/dist/npm/option-types/series-item/notes.icon.interface.d.ts +0 -32
- package/dist/npm/option-types/series-item/notes.icon.interface.js +0 -2
- package/dist/npm/option-types/series-item/notes.interface.d.ts +0 -46
- package/dist/npm/option-types/series-item/notes.interface.js +0 -2
- package/dist/npm/option-types/series-item/notes.label.interface.d.ts +0 -46
- package/dist/npm/option-types/series-item/notes.label.interface.js +0 -3
- package/dist/npm/option-types/series-item/outliers.interface.d.ts +0 -32
- package/dist/npm/option-types/series-item/outliers.interface.js +0 -2
- package/dist/npm/option-types/series-item/tooltip.interface.d.ts +0 -42
- package/dist/npm/option-types/series-item/tooltip.interface.js +0 -3
- package/dist/npm/option-types/series-item/trendline.interface.d.ts +0 -18
- package/dist/npm/option-types/series-item/trendline.interface.js +0 -2
- package/dist/npm/option-types/series-item.interface.d.ts +0 -453
- package/dist/npm/option-types/series-item.interface.js +0 -3
- package/dist/npm/option-types/subtitle.interface.d.ts +0 -61
- package/dist/npm/option-types/subtitle.interface.js +0 -2
- package/dist/npm/option-types/title.interface.d.ts +0 -55
- package/dist/npm/option-types/title.interface.js +0 -3
- package/dist/npm/option-types/tooltip.interface.d.ts +0 -48
- package/dist/npm/option-types/tooltip.interface.js +0 -3
- package/dist/npm/option-types/value-axis-item/crosshair.interface.d.ts +0 -26
- package/dist/npm/option-types/value-axis-item/crosshair.interface.js +0 -3
- package/dist/npm/option-types/value-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/npm/option-types/value-axis-item/crosshair.tooltip.interface.js +0 -3
- package/dist/npm/option-types/value-axis-item/labels.interface.d.ts +0 -82
- package/dist/npm/option-types/value-axis-item/labels.interface.js +0 -3
- package/dist/npm/option-types/value-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/npm/option-types/value-axis-item/notes.icon.interface.js +0 -2
- package/dist/npm/option-types/value-axis-item/notes.interface.d.ts +0 -45
- package/dist/npm/option-types/value-axis-item/notes.interface.js +0 -2
- package/dist/npm/option-types/value-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/npm/option-types/value-axis-item/notes.label.interface.js +0 -3
- package/dist/npm/option-types/value-axis-item/title.interface.d.ts +0 -66
- package/dist/npm/option-types/value-axis-item/title.interface.js +0 -2
- package/dist/npm/option-types/value-axis-item.interface.d.ts +0 -114
- package/dist/npm/option-types/value-axis-item.interface.js +0 -3
- package/dist/npm/option-types/x-axis-item/crosshair.interface.d.ts +0 -26
- package/dist/npm/option-types/x-axis-item/crosshair.interface.js +0 -3
- package/dist/npm/option-types/x-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/npm/option-types/x-axis-item/crosshair.tooltip.interface.js +0 -3
- package/dist/npm/option-types/x-axis-item/labels.interface.d.ts +0 -89
- package/dist/npm/option-types/x-axis-item/labels.interface.js +0 -3
- package/dist/npm/option-types/x-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/npm/option-types/x-axis-item/notes.icon.interface.js +0 -2
- package/dist/npm/option-types/x-axis-item/notes.interface.d.ts +0 -46
- package/dist/npm/option-types/x-axis-item/notes.interface.js +0 -2
- package/dist/npm/option-types/x-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/npm/option-types/x-axis-item/notes.label.interface.js +0 -3
- package/dist/npm/option-types/x-axis-item/title.interface.d.ts +0 -65
- package/dist/npm/option-types/x-axis-item/title.interface.js +0 -3
- package/dist/npm/option-types/x-axis-item.interface.d.ts +0 -135
- package/dist/npm/option-types/x-axis-item.interface.js +0 -3
- package/dist/npm/option-types/y-axis-item/crosshair.interface.d.ts +0 -26
- package/dist/npm/option-types/y-axis-item/crosshair.interface.js +0 -3
- package/dist/npm/option-types/y-axis-item/crosshair.tooltip.interface.d.ts +0 -34
- package/dist/npm/option-types/y-axis-item/crosshair.tooltip.interface.js +0 -3
- package/dist/npm/option-types/y-axis-item/labels.interface.d.ts +0 -89
- package/dist/npm/option-types/y-axis-item/labels.interface.js +0 -3
- package/dist/npm/option-types/y-axis-item/notes.icon.interface.d.ts +0 -32
- package/dist/npm/option-types/y-axis-item/notes.icon.interface.js +0 -2
- package/dist/npm/option-types/y-axis-item/notes.interface.d.ts +0 -45
- package/dist/npm/option-types/y-axis-item/notes.interface.js +0 -2
- package/dist/npm/option-types/y-axis-item/notes.label.interface.d.ts +0 -46
- package/dist/npm/option-types/y-axis-item/notes.label.interface.js +0 -3
- package/dist/npm/option-types/y-axis-item/title.interface.d.ts +0 -66
- package/dist/npm/option-types/y-axis-item/title.interface.js +0 -3
- package/dist/npm/option-types/y-axis-item.interface.d.ts +0 -131
- package/dist/npm/option-types/y-axis-item.interface.js +0 -3
- package/dist/npm/option-types/zoomable.interface.d.ts +0 -14
- package/dist/npm/option-types/zoomable.interface.js +0 -2
- package/dist/npm/package-metadata.d.ts +0 -5
- package/dist/npm/package-metadata.js +0 -14
- package/dist/npm/store/reducer.d.ts +0 -14
- package/dist/npm/store/reducer.js +0 -107
- package/dist/npm/store/store.d.ts +0 -26
- package/dist/npm/store/store.js +0 -31
- package/dist/npm/theming/theme-service.d.ts +0 -6
- package/dist/npm/theming/theme-service.js +0 -155
- package/dist/npm/tooltip/Context.d.ts +0 -11
- package/dist/npm/tooltip/Context.js +0 -2
- package/dist/npm/tooltip/Crosshair.d.ts +0 -36
- package/dist/npm/tooltip/Crosshair.js +0 -113
- package/dist/npm/tooltip/CrosshairContainer.d.ts +0 -28
- package/dist/npm/tooltip/CrosshairContainer.js +0 -97
- package/dist/npm/tooltip/Point.d.ts +0 -68
- package/dist/npm/tooltip/Point.js +0 -38
- package/dist/npm/tooltip/Popup.d.ts +0 -31
- package/dist/npm/tooltip/Popup.js +0 -86
- package/dist/npm/tooltip/Series.d.ts +0 -35
- package/dist/npm/tooltip/Series.js +0 -185
- package/dist/npm/tooltip/SharedTooltipContent.d.ts +0 -12
- package/dist/npm/tooltip/SharedTooltipContent.js +0 -24
- package/dist/npm/tooltip/main.d.ts +0 -3
- package/dist/npm/tooltip/main.js +0 -5
- package/dist/npm/utils/main.d.ts +0 -14
- package/dist/npm/utils/main.js +0 -37
- package/dist/systemjs/kendo-react-charts.js +0 -1
- package/e2e-next/chart.basic.tests.ts +0 -24
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import * as React from 'react';
|
|
13
|
-
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
|
-
var ChartNavigatorCategoryAxisCrosshair = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "crosshair" })));
|
|
16
|
-
};
|
|
17
|
-
export { ChartNavigatorCategoryAxisCrosshair };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { CategoryAxisCrosshairTooltip } from '../../../common/property-types';
|
|
3
|
-
/**
|
|
4
|
-
* Represents the props of the KendoReact ChartNavigatorCategoryAxisCrosshairTooltip component.
|
|
5
|
-
*/
|
|
6
|
-
export interface ChartNavigatorCategoryAxisCrosshairTooltipProps extends CategoryAxisCrosshairTooltip {
|
|
7
|
-
}
|
|
8
|
-
declare const ChartNavigatorCategoryAxisCrosshairTooltip: React.FunctionComponent<ChartNavigatorCategoryAxisCrosshairTooltipProps>;
|
|
9
|
-
export { ChartNavigatorCategoryAxisCrosshairTooltip };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import * as React from 'react';
|
|
13
|
-
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
|
-
var ChartNavigatorCategoryAxisCrosshairTooltip = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "tooltip" })));
|
|
16
|
-
};
|
|
17
|
-
export { ChartNavigatorCategoryAxisCrosshairTooltip };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { CategoryAxisLabels } from '../../../common/property-types';
|
|
3
|
-
/**
|
|
4
|
-
* Represents the props of the KendoReact ChartNavigatorCategoryAxisLabels component.
|
|
5
|
-
*/
|
|
6
|
-
export interface ChartNavigatorCategoryAxisLabelsProps extends CategoryAxisLabels {
|
|
7
|
-
}
|
|
8
|
-
declare const ChartNavigatorCategoryAxisLabels: React.FunctionComponent<ChartNavigatorCategoryAxisLabelsProps>;
|
|
9
|
-
export { ChartNavigatorCategoryAxisLabels };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import * as React from 'react';
|
|
13
|
-
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
|
-
var ChartNavigatorCategoryAxisLabels = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "labels" })));
|
|
16
|
-
};
|
|
17
|
-
export { ChartNavigatorCategoryAxisLabels };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { CategoryAxisNotes } from '../../../common/property-types';
|
|
3
|
-
/**
|
|
4
|
-
* Represents the props of the KendoReact ChartNavigatorCategoryAxisNotes component.
|
|
5
|
-
*/
|
|
6
|
-
export interface ChartNavigatorCategoryAxisNotesProps extends CategoryAxisNotes {
|
|
7
|
-
}
|
|
8
|
-
declare const ChartNavigatorCategoryAxisNotes: React.FunctionComponent<ChartNavigatorCategoryAxisNotesProps>;
|
|
9
|
-
export { ChartNavigatorCategoryAxisNotes };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import * as React from 'react';
|
|
13
|
-
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
|
-
var ChartNavigatorCategoryAxisNotes = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "notes" })));
|
|
16
|
-
};
|
|
17
|
-
export { ChartNavigatorCategoryAxisNotes };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { CategoryAxisNotesIcon } from '../../../common/property-types';
|
|
3
|
-
/**
|
|
4
|
-
* Represents the props of the KendoReact ChartNavigatorCategoryAxisNotesIcon component.
|
|
5
|
-
*/
|
|
6
|
-
export interface ChartNavigatorCategoryAxisNotesIconProps extends CategoryAxisNotesIcon {
|
|
7
|
-
}
|
|
8
|
-
declare const ChartNavigatorCategoryAxisNotesIcon: React.FunctionComponent<ChartNavigatorCategoryAxisNotesIconProps>;
|
|
9
|
-
export { ChartNavigatorCategoryAxisNotesIcon };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import * as React from 'react';
|
|
13
|
-
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
|
-
var ChartNavigatorCategoryAxisNotesIcon = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "icon" })));
|
|
16
|
-
};
|
|
17
|
-
export { ChartNavigatorCategoryAxisNotesIcon };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { CategoryAxisNotesLabel } from '../../../common/property-types';
|
|
3
|
-
/**
|
|
4
|
-
* Represents the props of the KendoReact ChartNavigatorCategoryAxisNotesLabel component.
|
|
5
|
-
*/
|
|
6
|
-
export interface ChartNavigatorCategoryAxisNotesLabelProps extends CategoryAxisNotesLabel {
|
|
7
|
-
}
|
|
8
|
-
declare const ChartNavigatorCategoryAxisNotesLabel: React.FunctionComponent<ChartNavigatorCategoryAxisNotesLabelProps>;
|
|
9
|
-
export { ChartNavigatorCategoryAxisNotesLabel };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import * as React from 'react';
|
|
13
|
-
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
|
-
var ChartNavigatorCategoryAxisNotesLabel = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "label" })));
|
|
16
|
-
};
|
|
17
|
-
export { ChartNavigatorCategoryAxisNotesLabel };
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { CategoryAxisSelect } from '../../../common/property-types';
|
|
2
|
-
/**
|
|
3
|
-
* Represents the props of the KendoReact ChartNavigatorCategoryAxisSelect component.
|
|
4
|
-
*/
|
|
5
|
-
export interface ChartNavigatorCategoryAxisSelectProps extends CategoryAxisSelect {
|
|
6
|
-
}
|
|
7
|
-
export { CategoryAxisSelect };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import * as React from 'react';
|
|
13
|
-
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
|
-
var ChartNavigatorCategoryAxisSelect = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "select" })));
|
|
16
|
-
};
|
|
17
|
-
ChartNavigatorCategoryAxisSelect.displayName = 'ChartNavigatorCategoryAxisSelect';
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { CategoryAxisTitle } from '../../../common/property-types';
|
|
3
|
-
/**
|
|
4
|
-
* Represents the props of the KendoReact ChartNavigatorCategoryAxisTitle component.
|
|
5
|
-
*/
|
|
6
|
-
export interface ChartNavigatorCategoryAxisTitleProps extends CategoryAxisTitle {
|
|
7
|
-
}
|
|
8
|
-
declare const ChartNavigatorCategoryAxisTitle: React.FunctionComponent<ChartNavigatorCategoryAxisTitleProps>;
|
|
9
|
-
export { ChartNavigatorCategoryAxisTitle };
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import * as React from 'react';
|
|
13
|
-
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
|
-
var ChartNavigatorCategoryAxisTitle = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "title" })));
|
|
16
|
-
};
|
|
17
|
-
ChartNavigatorCategoryAxisTitle.displayName = 'ChartNavigatorCategoryAxisTitle';
|
|
18
|
-
export { ChartNavigatorCategoryAxisTitle };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { ChartNavigatorCategoryAxisCrosshair, ChartNavigatorCategoryAxisCrosshairProps } from './Crosshair';
|
|
2
|
-
import { ChartNavigatorCategoryAxisCrosshairTooltip, ChartNavigatorCategoryAxisCrosshairTooltipProps } from './CrosshairTooltip';
|
|
3
|
-
import { CategoryAxisSelect, ChartNavigatorCategoryAxisSelectProps } from './Select';
|
|
4
|
-
import { ChartNavigatorCategoryAxisTitle, ChartNavigatorCategoryAxisTitleProps } from './Title';
|
|
5
|
-
import { ChartNavigatorCategoryAxisLabels, ChartNavigatorCategoryAxisLabelsProps } from './Labels';
|
|
6
|
-
import { ChartNavigatorCategoryAxisNotes, ChartNavigatorCategoryAxisNotesProps } from './Notes';
|
|
7
|
-
import { ChartNavigatorCategoryAxisNotesIcon, ChartNavigatorCategoryAxisNotesIconProps } from './NotesIcon';
|
|
8
|
-
import { ChartNavigatorCategoryAxisNotesLabel, ChartNavigatorCategoryAxisNotesLabelProps } from './NotesLabel';
|
|
9
|
-
export { ChartNavigatorCategoryAxisCrosshair, ChartNavigatorCategoryAxisCrosshairProps, ChartNavigatorCategoryAxisCrosshairTooltip, ChartNavigatorCategoryAxisCrosshairTooltipProps, CategoryAxisSelect, ChartNavigatorCategoryAxisSelectProps, ChartNavigatorCategoryAxisTitle, ChartNavigatorCategoryAxisTitleProps, ChartNavigatorCategoryAxisLabels, ChartNavigatorCategoryAxisLabelsProps, ChartNavigatorCategoryAxisNotes, ChartNavigatorCategoryAxisNotesProps, ChartNavigatorCategoryAxisNotesIcon, ChartNavigatorCategoryAxisNotesIconProps, ChartNavigatorCategoryAxisNotesLabel, ChartNavigatorCategoryAxisNotesLabelProps };
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { ChartNavigatorCategoryAxisCrosshair } from './Crosshair';
|
|
2
|
-
import { ChartNavigatorCategoryAxisCrosshairTooltip } from './CrosshairTooltip'; // tslint:disable-line
|
|
3
|
-
import { ChartNavigatorCategoryAxisTitle } from './Title';
|
|
4
|
-
import { ChartNavigatorCategoryAxisLabels } from './Labels';
|
|
5
|
-
import { ChartNavigatorCategoryAxisNotes } from './Notes';
|
|
6
|
-
import { ChartNavigatorCategoryAxisNotesIcon } from './NotesIcon';
|
|
7
|
-
import { ChartNavigatorCategoryAxisNotesLabel } from './NotesLabel';
|
|
8
|
-
export { ChartNavigatorCategoryAxisCrosshair, ChartNavigatorCategoryAxisCrosshairTooltip, ChartNavigatorCategoryAxisTitle, ChartNavigatorCategoryAxisLabels, ChartNavigatorCategoryAxisNotes, ChartNavigatorCategoryAxisNotesIcon, ChartNavigatorCategoryAxisNotesLabel };
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { ChartNavigatorCategoryAxis, ChartNavigatorCategoryAxisProps } from './CategoryAxis';
|
|
2
|
-
import { ChartNavigatorHint, ChartNavigatorHintProps } from './Hint';
|
|
3
|
-
import { ChartNavigatorPane, ChartNavigatorPaneProps } from './Pane';
|
|
4
|
-
import { ChartNavigatorSelect, ChartNavigatorSelectProps } from './Select';
|
|
5
|
-
import { ChartNavigatorSeries, ChartNavigatorSeriesProps } from './Series';
|
|
6
|
-
import { ChartNavigatorSeriesItem, ChartNavigatorSeriesItemProps } from './SeriesItem';
|
|
7
|
-
export * from './category-axis/main';
|
|
8
|
-
export * from './pane/main';
|
|
9
|
-
export * from './series-item/main';
|
|
10
|
-
export { ChartNavigatorCategoryAxis, ChartNavigatorCategoryAxisProps, ChartNavigatorHint, ChartNavigatorHintProps, ChartNavigatorPane, ChartNavigatorPaneProps, ChartNavigatorSelect, ChartNavigatorSelectProps, ChartNavigatorSeries, ChartNavigatorSeriesProps, ChartNavigatorSeriesItem, ChartNavigatorSeriesItemProps };
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { ChartNavigatorCategoryAxis } from './CategoryAxis';
|
|
2
|
-
import { ChartNavigatorHint } from './Hint';
|
|
3
|
-
import { ChartNavigatorPane } from './Pane';
|
|
4
|
-
import { ChartNavigatorSelect } from './Select';
|
|
5
|
-
import { ChartNavigatorSeries } from './Series';
|
|
6
|
-
import { ChartNavigatorSeriesItem } from './SeriesItem';
|
|
7
|
-
export * from './category-axis/main';
|
|
8
|
-
export * from './pane/main';
|
|
9
|
-
export * from './series-item/main';
|
|
10
|
-
export { ChartNavigatorCategoryAxis, ChartNavigatorHint, ChartNavigatorPane, ChartNavigatorSelect, ChartNavigatorSeries, ChartNavigatorSeriesItem };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { PanesTitle } from '../../../common/property-types';
|
|
3
|
-
/**
|
|
4
|
-
* Represents the props of the KendoReact ChartNavigatorPaneTitle component.
|
|
5
|
-
*/
|
|
6
|
-
export interface ChartNavigatorPaneTitleProps extends PanesTitle {
|
|
7
|
-
}
|
|
8
|
-
declare const ChartNavigatorPaneTitle: React.FunctionComponent<ChartNavigatorPaneTitleProps>;
|
|
9
|
-
export { ChartNavigatorPaneTitle };
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import * as React from 'react';
|
|
13
|
-
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
|
-
var ChartNavigatorPaneTitle = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "title" })));
|
|
16
|
-
};
|
|
17
|
-
ChartNavigatorPaneTitle.displayName = 'ChartNavigatorPaneTitle';
|
|
18
|
-
export { ChartNavigatorPaneTitle };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { SeriesErrorBars } from '../../../common/property-types';
|
|
3
|
-
/**
|
|
4
|
-
* Represents the props of the KendoReact ChartNavigatorSeriesErrorBars component.
|
|
5
|
-
*/
|
|
6
|
-
export interface ChartNavigatorSeriesErrorBarsProps extends SeriesErrorBars {
|
|
7
|
-
}
|
|
8
|
-
declare const ChartNavigatorSeriesErrorBars: React.FunctionComponent<ChartNavigatorSeriesErrorBarsProps>;
|
|
9
|
-
export { ChartNavigatorSeriesErrorBars };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import * as React from 'react';
|
|
13
|
-
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
|
-
var ChartNavigatorSeriesErrorBars = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "errorBars" })));
|
|
16
|
-
};
|
|
17
|
-
export { ChartNavigatorSeriesErrorBars };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { SeriesExtremes } from '../../../common/property-types';
|
|
3
|
-
/**
|
|
4
|
-
* Represents the props of the KendoReact ChartNavigatorSeriesExtremes component.
|
|
5
|
-
*/
|
|
6
|
-
export interface ChartNavigatorSeriesExtremesProps extends SeriesExtremes {
|
|
7
|
-
}
|
|
8
|
-
declare const ChartNavigatorSeriesExtremes: React.FunctionComponent<ChartNavigatorSeriesExtremesProps>;
|
|
9
|
-
export { ChartNavigatorSeriesExtremes };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import * as React from 'react';
|
|
13
|
-
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
|
-
var ChartNavigatorSeriesExtremes = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "extremes" })));
|
|
16
|
-
};
|
|
17
|
-
export { ChartNavigatorSeriesExtremes };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { SeriesHighlight } from '../../../common/property-types';
|
|
3
|
-
/**
|
|
4
|
-
* Represents the props of the KendoReact ChartNavigatorSeriesHighlight component.
|
|
5
|
-
*/
|
|
6
|
-
export interface ChartNavigatorSeriesHighlightProps extends SeriesHighlight {
|
|
7
|
-
}
|
|
8
|
-
declare const ChartNavigatorSeriesHighlight: React.FunctionComponent<ChartNavigatorSeriesHighlightProps>;
|
|
9
|
-
export { ChartNavigatorSeriesHighlight };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import * as React from 'react';
|
|
13
|
-
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
|
-
var ChartNavigatorSeriesHighlight = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "highlight" })));
|
|
16
|
-
};
|
|
17
|
-
export { ChartNavigatorSeriesHighlight };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { SeriesLabels } from '../../../common/property-types';
|
|
3
|
-
/**
|
|
4
|
-
* Represents the props of the KendoReact ChartNavigatorSeriesLabels component.
|
|
5
|
-
*/
|
|
6
|
-
export interface ChartNavigatorSeriesLabelsProps extends SeriesLabels {
|
|
7
|
-
}
|
|
8
|
-
declare const ChartNavigatorSeriesLabels: React.FunctionComponent<ChartNavigatorSeriesLabelsProps>;
|
|
9
|
-
export { ChartNavigatorSeriesLabels };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import * as React from 'react';
|
|
13
|
-
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
|
-
var ChartNavigatorSeriesLabels = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, __assign({ visible: true }, props), { _chartKey: "labels" })));
|
|
16
|
-
};
|
|
17
|
-
export { ChartNavigatorSeriesLabels };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { SeriesLabelsFrom } from '../../../common/property-types';
|
|
3
|
-
/**
|
|
4
|
-
* Represents the props of the KendoReact ChartNavigatorSeriesLabelsFrom component.
|
|
5
|
-
*/
|
|
6
|
-
export interface ChartNavigatorSeriesLabelsFromProps extends SeriesLabelsFrom {
|
|
7
|
-
}
|
|
8
|
-
declare const ChartNavigatorSeriesLabelsFrom: React.FunctionComponent<ChartNavigatorSeriesLabelsFromProps>;
|
|
9
|
-
export { ChartNavigatorSeriesLabelsFrom };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import * as React from 'react';
|
|
13
|
-
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
|
-
var ChartNavigatorSeriesLabelsFrom = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "from" })));
|
|
16
|
-
};
|
|
17
|
-
export { ChartNavigatorSeriesLabelsFrom };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { SeriesLabelsTo } from '../../../common/property-types';
|
|
3
|
-
/**
|
|
4
|
-
* Represents the props of the KendoReact ChartNavigatorSeriesLabelsTo component.
|
|
5
|
-
*/
|
|
6
|
-
export interface ChartNavigatorSeriesLabelsToProps extends SeriesLabelsTo {
|
|
7
|
-
}
|
|
8
|
-
declare const ChartNavigatorSeriesLabelsTo: React.FunctionComponent<ChartNavigatorSeriesLabelsToProps>;
|
|
9
|
-
export { ChartNavigatorSeriesLabelsTo };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import * as React from 'react';
|
|
13
|
-
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
|
-
var ChartNavigatorSeriesLabelsTo = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "to" })));
|
|
16
|
-
};
|
|
17
|
-
export { ChartNavigatorSeriesLabelsTo };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { SeriesMarkers } from '../../../common/property-types';
|
|
3
|
-
/**
|
|
4
|
-
* Represents the props of the KendoReact ChartNavigatorSeriesMarkers component.
|
|
5
|
-
*/
|
|
6
|
-
export interface ChartNavigatorSeriesMarkersProps extends SeriesMarkers {
|
|
7
|
-
}
|
|
8
|
-
declare const ChartNavigatorSeriesMarkers: React.FunctionComponent<ChartNavigatorSeriesMarkersProps>;
|
|
9
|
-
export { ChartNavigatorSeriesMarkers };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import * as React from 'react';
|
|
13
|
-
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
|
-
var ChartNavigatorSeriesMarkers = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "markers" })));
|
|
16
|
-
};
|
|
17
|
-
export { ChartNavigatorSeriesMarkers };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { SeriesNotes } from '../../../common/property-types';
|
|
3
|
-
/**
|
|
4
|
-
* Represents the props of the KendoReact ChartNavigatorSeriesNotes component.
|
|
5
|
-
*/
|
|
6
|
-
export interface ChartNavigatorSeriesNotesProps extends SeriesNotes {
|
|
7
|
-
}
|
|
8
|
-
declare const ChartNavigatorSeriesNotes: React.FunctionComponent<ChartNavigatorSeriesNotesProps>;
|
|
9
|
-
export { ChartNavigatorSeriesNotes };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import * as React from 'react';
|
|
13
|
-
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
|
-
var ChartNavigatorSeriesNotes = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "notes" })));
|
|
16
|
-
};
|
|
17
|
-
export { ChartNavigatorSeriesNotes };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { SeriesNotesIcon } from '../../../common/property-types';
|
|
3
|
-
/**
|
|
4
|
-
* Represents the props of the KendoReact ChartNavigatorSeriesNotesIcon component.
|
|
5
|
-
*/
|
|
6
|
-
export interface ChartNavigatorSeriesNotesIconProps extends SeriesNotesIcon {
|
|
7
|
-
}
|
|
8
|
-
declare const ChartNavigatorSeriesNotesIcon: React.FunctionComponent<ChartNavigatorSeriesNotesIconProps>;
|
|
9
|
-
export { ChartNavigatorSeriesNotesIcon };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import * as React from 'react';
|
|
13
|
-
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
|
-
var ChartNavigatorSeriesNotesIcon = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "icon" })));
|
|
16
|
-
};
|
|
17
|
-
export { ChartNavigatorSeriesNotesIcon };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { SeriesNotesLabel } from '../../../common/property-types';
|
|
3
|
-
/**
|
|
4
|
-
* Represents the props of the KendoReact ChartNavigatorSeriesNotesLabel component.
|
|
5
|
-
*/
|
|
6
|
-
export interface ChartNavigatorSeriesNotesLabelProps extends SeriesNotesLabel {
|
|
7
|
-
}
|
|
8
|
-
declare const ChartNavigatorSeriesNotesLabel: React.FunctionComponent<ChartNavigatorSeriesNotesLabelProps>;
|
|
9
|
-
export { ChartNavigatorSeriesNotesLabel };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import * as React from 'react';
|
|
13
|
-
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
|
-
var ChartNavigatorSeriesNotesLabel = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "label" })));
|
|
16
|
-
};
|
|
17
|
-
export { ChartNavigatorSeriesNotesLabel };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { SeriesOutliers } from '../../../common/property-types';
|
|
3
|
-
/**
|
|
4
|
-
* Represents the props of the KendoReact ChartNavigatorSeriesItemOutliers component.
|
|
5
|
-
*/
|
|
6
|
-
export interface ChartNavigatorSeriesItemOutliersProps extends SeriesOutliers {
|
|
7
|
-
}
|
|
8
|
-
declare const ChartNavigatorSeriesItemOutliers: React.FunctionComponent<ChartNavigatorSeriesItemOutliersProps>;
|
|
9
|
-
export { ChartNavigatorSeriesItemOutliers };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import * as React from 'react';
|
|
13
|
-
import { ConfigurationComponent } from './../../base/ConfigurationComponent';
|
|
14
|
-
var ChartNavigatorSeriesItemOutliers = function (props) {
|
|
15
|
-
return (React.createElement(ConfigurationComponent, __assign({}, props, { _chartKey: "outliers" })));
|
|
16
|
-
};
|
|
17
|
-
export { ChartNavigatorSeriesItemOutliers };
|