@progress/kendo-react-charts 7.2.4-develop.2 → 7.2.4-develop.4
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.js +8 -0
- package/BaseChart.mjs +248 -0
- package/Chart.js +8 -0
- package/Chart.mjs +58 -0
- package/ChartBreadcrumb.js +8 -0
- package/ChartBreadcrumb.mjs +77 -0
- package/ChartContext.js +8 -0
- package/ChartContext.mjs +14 -0
- package/Container.js +8 -0
- package/Container.mjs +13 -0
- package/DonutCenter.js +8 -0
- package/DonutCenter.mjs +48 -0
- package/Sparkline.js +8 -0
- package/Sparkline.mjs +60 -0
- package/StockChart.js +8 -0
- package/StockChart.mjs +68 -0
- package/components/AxisDefaults.js +8 -0
- package/components/AxisDefaults.mjs +14 -0
- package/components/CategoryAxis.js +8 -0
- package/components/CategoryAxis.mjs +21 -0
- package/components/CategoryAxisItem.js +8 -0
- package/components/CategoryAxisItem.mjs +15 -0
- package/components/ChartArea.js +8 -0
- package/components/ChartArea.mjs +14 -0
- package/components/Legend.js +8 -0
- package/components/Legend.mjs +14 -0
- package/components/Navigator.js +8 -0
- package/components/Navigator.mjs +14 -0
- package/components/Pane.js +8 -0
- package/components/Pane.mjs +15 -0
- package/components/PaneDefaults.js +8 -0
- package/components/PaneDefaults.mjs +15 -0
- package/components/Panes.js +8 -0
- package/components/Panes.mjs +21 -0
- package/components/PlotArea.js +8 -0
- package/components/PlotArea.mjs +14 -0
- package/components/Series.js +8 -0
- package/components/Series.mjs +21 -0
- package/components/SeriesDefaults.js +8 -0
- package/components/SeriesDefaults.mjs +14 -0
- package/components/SeriesItem.js +8 -0
- package/components/SeriesItem.mjs +30 -0
- package/components/Subtitle.js +8 -0
- package/components/Subtitle.mjs +14 -0
- package/components/Title.js +8 -0
- package/components/Title.mjs +14 -0
- package/components/Tooltip.js +8 -0
- package/components/Tooltip.mjs +14 -0
- package/components/ValueAxis.js +8 -0
- package/components/ValueAxis.mjs +21 -0
- package/components/ValueAxisItem.js +8 -0
- package/components/ValueAxisItem.mjs +15 -0
- package/components/XAxis.js +8 -0
- package/components/XAxis.mjs +21 -0
- package/components/XAxisItem.js +8 -0
- package/components/XAxisItem.mjs +15 -0
- package/components/YAxis.js +8 -0
- package/components/YAxis.mjs +21 -0
- package/components/YAxisItem.js +8 -0
- package/components/YAxisItem.mjs +15 -0
- package/components/Zoomable.js +8 -0
- package/components/Zoomable.mjs +14 -0
- package/components/axis-defaults/Crosshair.js +8 -0
- package/components/axis-defaults/Crosshair.mjs +15 -0
- package/components/axis-defaults/CrosshairTooltip.js +8 -0
- package/components/axis-defaults/CrosshairTooltip.mjs +15 -0
- package/components/axis-defaults/Labels.js +8 -0
- package/components/axis-defaults/Labels.mjs +15 -0
- package/components/axis-defaults/Title.js +8 -0
- package/components/axis-defaults/Title.mjs +15 -0
- package/components/base/CollectionConfigurationComponent.js +8 -0
- package/components/base/CollectionConfigurationComponent.mjs +35 -0
- package/components/base/ConfigurationComponent.js +8 -0
- package/components/base/ConfigurationComponent.mjs +47 -0
- package/components/category-axis-item/Crosshair.js +8 -0
- package/components/category-axis-item/Crosshair.mjs +14 -0
- package/components/category-axis-item/CrosshairTooltip.js +8 -0
- package/components/category-axis-item/CrosshairTooltip.mjs +14 -0
- package/components/category-axis-item/Labels.js +8 -0
- package/components/category-axis-item/Labels.mjs +14 -0
- package/components/category-axis-item/Notes.js +8 -0
- package/components/category-axis-item/Notes.mjs +14 -0
- package/components/category-axis-item/NotesIcon.js +8 -0
- package/components/category-axis-item/NotesIcon.mjs +14 -0
- package/components/category-axis-item/NotesLabel.js +8 -0
- package/components/category-axis-item/NotesLabel.mjs +14 -0
- package/components/category-axis-item/RangeLabels.js +8 -0
- package/components/category-axis-item/RangeLabels.mjs +14 -0
- package/components/category-axis-item/Title.js +8 -0
- package/components/category-axis-item/Title.mjs +15 -0
- package/components/legend/InactiveItems.js +8 -0
- package/components/legend/InactiveItems.mjs +15 -0
- package/components/legend/Item.js +8 -0
- package/components/legend/Item.mjs +15 -0
- package/components/legend/Title.js +8 -0
- package/components/legend/Title.mjs +15 -0
- package/components/navigator/CategoryAxis.js +8 -0
- package/components/navigator/CategoryAxis.mjs +15 -0
- package/components/navigator/Hint.js +8 -0
- package/components/navigator/Hint.mjs +14 -0
- package/components/navigator/Pane.js +8 -0
- package/components/navigator/Pane.mjs +15 -0
- package/components/navigator/Select.js +8 -0
- package/components/navigator/Select.mjs +14 -0
- package/components/navigator/Series.js +8 -0
- package/components/navigator/Series.mjs +21 -0
- package/components/navigator/SeriesItem.js +8 -0
- package/components/navigator/SeriesItem.mjs +15 -0
- package/components/pane-defaults/Title.js +8 -0
- package/components/pane-defaults/Title.mjs +15 -0
- package/components/series-item/ErrorBars.js +8 -0
- package/components/series-item/ErrorBars.mjs +14 -0
- package/components/series-item/Extremes.js +8 -0
- package/components/series-item/Extremes.mjs +14 -0
- package/components/series-item/Highlight.js +8 -0
- package/components/series-item/Highlight.mjs +14 -0
- package/components/series-item/Labels.js +8 -0
- package/components/series-item/Labels.mjs +14 -0
- package/components/series-item/LabelsFrom.js +8 -0
- package/components/series-item/LabelsFrom.mjs +14 -0
- package/components/series-item/LabelsTo.js +8 -0
- package/components/series-item/LabelsTo.mjs +14 -0
- package/components/series-item/Markers.js +8 -0
- package/components/series-item/Markers.mjs +14 -0
- package/components/series-item/Notes.js +8 -0
- package/components/series-item/Notes.mjs +14 -0
- package/components/series-item/NotesIcon.js +8 -0
- package/components/series-item/NotesIcon.mjs +14 -0
- package/components/series-item/NotesLabel.js +8 -0
- package/components/series-item/NotesLabel.mjs +14 -0
- package/components/series-item/Outliers.js +8 -0
- package/components/series-item/Outliers.mjs +14 -0
- package/components/series-item/Tooltip.js +8 -0
- package/components/series-item/Tooltip.mjs +14 -0
- package/components/value-axis-item/Crosshair.js +8 -0
- package/components/value-axis-item/Crosshair.mjs +14 -0
- package/components/value-axis-item/CrosshairTooltip.js +8 -0
- package/components/value-axis-item/CrosshairTooltip.mjs +14 -0
- package/components/value-axis-item/Labels.js +8 -0
- package/components/value-axis-item/Labels.mjs +14 -0
- package/components/value-axis-item/Notes.js +8 -0
- package/components/value-axis-item/Notes.mjs +14 -0
- package/components/value-axis-item/NotesIcon.js +8 -0
- package/components/value-axis-item/NotesIcon.mjs +14 -0
- package/components/value-axis-item/NotesLabel.js +8 -0
- package/components/value-axis-item/NotesLabel.mjs +14 -0
- package/components/value-axis-item/Title.js +8 -0
- package/components/value-axis-item/Title.mjs +15 -0
- package/components/x-axis-item/Crosshair.js +8 -0
- package/components/x-axis-item/Crosshair.mjs +14 -0
- package/components/x-axis-item/CrosshairTooltip.js +8 -0
- package/components/x-axis-item/CrosshairTooltip.mjs +14 -0
- package/components/x-axis-item/Labels.js +8 -0
- package/components/x-axis-item/Labels.mjs +14 -0
- package/components/x-axis-item/Notes.js +8 -0
- package/components/x-axis-item/Notes.mjs +14 -0
- package/components/x-axis-item/NotesIcon.js +8 -0
- package/components/x-axis-item/NotesIcon.mjs +14 -0
- package/components/x-axis-item/NotesLabel.js +8 -0
- package/components/x-axis-item/NotesLabel.mjs +14 -0
- package/components/x-axis-item/Title.js +8 -0
- package/components/x-axis-item/Title.mjs +15 -0
- package/components/y-axis-item/Crosshair.js +8 -0
- package/components/y-axis-item/Crosshair.mjs +14 -0
- package/components/y-axis-item/CrosshairTooltip.js +8 -0
- package/components/y-axis-item/CrosshairTooltip.mjs +14 -0
- package/components/y-axis-item/Labels.js +8 -0
- package/components/y-axis-item/Labels.mjs +14 -0
- package/components/y-axis-item/Notes.js +8 -0
- package/components/y-axis-item/Notes.mjs +14 -0
- package/components/y-axis-item/NotesIcon.js +8 -0
- package/components/y-axis-item/NotesIcon.mjs +14 -0
- package/components/y-axis-item/NotesLabel.js +8 -0
- package/components/y-axis-item/NotesLabel.mjs +14 -0
- package/components/y-axis-item/Title.js +8 -0
- package/components/y-axis-item/Title.mjs +15 -0
- package/dist/cdn/js/kendo-react-charts.js +8 -65
- package/events/axis-label-click-event.js +8 -0
- package/events/axis-label-click-event.mjs +20 -0
- package/events/base-event.js +8 -0
- package/events/base-event.mjs +19 -0
- package/events/chart-event-builder.js +8 -0
- package/events/chart-event-builder.mjs +61 -0
- package/events/dom-event.js +8 -0
- package/events/dom-event.mjs +23 -0
- package/events/dom-events-builder.js +8 -0
- package/events/dom-events-builder.mjs +33 -0
- package/events/dom-events.js +8 -0
- package/events/dom-events.mjs +128 -0
- package/events/drag-end-event.js +8 -0
- package/events/drag-end-event.mjs +20 -0
- package/events/drag-event.js +8 -0
- package/events/drag-event.mjs +20 -0
- package/events/drag-start-event.js +8 -0
- package/events/drag-start-event.mjs +20 -0
- package/events/drilldown-event.js +8 -0
- package/events/drilldown-event.mjs +20 -0
- package/events/drilldown-state-change-event.js +8 -0
- package/events/drilldown-state-change-event.mjs +19 -0
- package/events/legend-item-click-event.js +8 -0
- package/events/legend-item-click-event.mjs +26 -0
- package/events/legend-item-hover-event.js +8 -0
- package/events/legend-item-hover-event.mjs +26 -0
- package/events/legend-item-leave-event.js +8 -0
- package/events/legend-item-leave-event.mjs +26 -0
- package/events/navigator-filter-event.js +8 -0
- package/events/navigator-filter-event.mjs +20 -0
- package/events/note-click-event.js +8 -0
- package/events/note-click-event.mjs +20 -0
- package/events/note-hover-event.js +8 -0
- package/events/note-hover-event.mjs +20 -0
- package/events/plot-area-click-event.js +8 -0
- package/events/plot-area-click-event.mjs +20 -0
- package/events/plot-area-hover-event.js +8 -0
- package/events/plot-area-hover-event.mjs +20 -0
- package/events/preventable-event.js +8 -0
- package/events/preventable-event.mjs +33 -0
- package/events/render-event.js +8 -0
- package/events/render-event.mjs +20 -0
- package/events/select-end-event.js +8 -0
- package/events/select-end-event.mjs +20 -0
- package/events/select-event.js +8 -0
- package/events/select-event.mjs +20 -0
- package/events/select-start-event.js +8 -0
- package/events/select-start-event.mjs +20 -0
- package/events/series-click-event.js +8 -0
- package/events/series-click-event.mjs +21 -0
- package/events/series-hover-event.js +8 -0
- package/events/series-hover-event.mjs +20 -0
- package/events/zoom-end-event.js +8 -0
- package/events/zoom-end-event.mjs +21 -0
- package/events/zoom-event.js +8 -0
- package/events/zoom-event.mjs +21 -0
- package/events/zoom-start-event.js +8 -0
- package/events/zoom-start-event.mjs +21 -0
- package/index.d.mts +8704 -5
- package/index.d.ts +8704 -34
- package/index.js +8 -65
- package/index.mjs +240 -1820
- package/methods/index.js +8 -0
- package/methods/index.mjs +27 -0
- package/package-metadata.js +8 -0
- package/package-metadata.mjs +19 -0
- package/package.json +5 -5
- package/sankey/Sankey.js +8 -0
- package/sankey/Sankey.mjs +65 -0
- package/sankey/propTypes.js +8 -0
- package/sankey/propTypes.mjs +82 -0
- package/sankey/theme-service.js +25 -0
- package/sankey/theme-service.mjs +98 -0
- package/store/reducer.js +8 -0
- package/store/reducer.mjs +59 -0
- package/store/store.js +8 -0
- package/store/store.mjs +20 -0
- package/theming/theme-service.js +51 -0
- package/theming/theme-service.mjs +122 -0
- package/tooltip/Crosshair.js +8 -0
- package/tooltip/Crosshair.mjs +70 -0
- package/tooltip/CrosshairContainer.js +8 -0
- package/tooltip/CrosshairContainer.mjs +65 -0
- package/tooltip/Point.js +8 -0
- package/tooltip/Point.mjs +22 -0
- package/tooltip/Popup.js +8 -0
- package/tooltip/Popup.mjs +69 -0
- package/tooltip/Series.js +8 -0
- package/tooltip/Series.mjs +112 -0
- package/tooltip/SharedTooltipContent.js +8 -0
- package/tooltip/SharedTooltipContent.mjs +22 -0
- package/utils/index.js +8 -0
- package/utils/index.mjs +31 -0
- package/BaseChart.d.ts +0 -125
- package/BaseChartProps.d.ts +0 -199
- package/Chart.d.ts +0 -82
- package/ChartBreadcrumb.d.ts +0 -46
- package/ChartContext.d.ts +0 -21
- package/ChartProps.d.ts +0 -14
- package/Container.d.ts +0 -12
- package/DonutCenter.d.ts +0 -41
- package/Sparkline.d.ts +0 -91
- package/SparklineProps.d.ts +0 -18
- package/StockChart.d.ts +0 -45
- package/StockChartProps.d.ts +0 -19
- package/api-types/axis-range.interface.d.ts +0 -17
- package/api-types/chart-axis.interface.d.ts +0 -40
- package/api-types/chart-drilldown-state.interface.d.ts +0 -28
- package/api-types/chart-pane.interface.d.ts +0 -18
- package/api-types/chart-plotarea.interface.d.ts +0 -18
- package/api-types/event-axis-options.interface.d.ts +0 -13
- package/api-types/event-series-options.interface.d.ts +0 -21
- package/api-types/series-point.interface.d.ts +0 -42
- package/argument-types/axis-label-visual-args.interface.d.ts +0 -47
- package/argument-types/axis-note-visual-args.interface.d.ts +0 -31
- package/argument-types/drilldown-series-factory-props.interface.d.ts +0 -21
- package/argument-types/error-bars-visual-args.interface.d.ts +0 -35
- package/argument-types/highlight-toggle-args.interface.d.ts +0 -38
- package/argument-types/highlight-visual-args.interface.d.ts +0 -55
- package/argument-types/legend-item-visual-args.interface.d.ts +0 -31
- package/argument-types/legend-labels-content-args.interface.d.ts +0 -25
- package/argument-types/markers-visual-args.interface.d.ts +0 -43
- package/argument-types/plot-band-label-visual-args.interface.d.ts +0 -31
- package/argument-types/series-labels-visual-args.interface.d.ts +0 -31
- package/argument-types/series-note-visual-args.interface.d.ts +0 -47
- package/argument-types/series-visual-args.interface.d.ts +0 -80
- package/argument-types/title-visual-args.interface.d.ts +0 -31
- package/common/api-types.d.ts +0 -12
- package/common/charts.d.ts +0 -9
- package/common/events.d.ts +0 -26
- package/common/property-types.d.ts +0 -136
- package/components/AxisDefaults.d.ts +0 -13
- package/components/CategoryAxis.d.ts +0 -13
- package/components/CategoryAxisItem.d.ts +0 -17
- package/components/ChartArea.d.ts +0 -13
- package/components/Legend.d.ts +0 -17
- package/components/Navigator.d.ts +0 -17
- package/components/Pane.d.ts +0 -13
- package/components/PaneDefaults.d.ts +0 -17
- package/components/Panes.d.ts +0 -13
- package/components/PlotArea.d.ts +0 -13
- package/components/Series.d.ts +0 -13
- package/components/SeriesDefaults.d.ts +0 -13
- package/components/SeriesItem.d.ts +0 -25
- package/components/Subtitle.d.ts +0 -13
- package/components/Title.d.ts +0 -13
- package/components/Tooltip.d.ts +0 -15
- package/components/ValueAxis.d.ts +0 -13
- package/components/ValueAxisItem.d.ts +0 -17
- package/components/XAxis.d.ts +0 -13
- package/components/XAxisItem.d.ts +0 -17
- package/components/YAxis.d.ts +0 -13
- package/components/YAxisItem.d.ts +0 -17
- package/components/Zoomable.d.ts +0 -13
- package/components/axis-defaults/Crosshair.d.ts +0 -13
- package/components/axis-defaults/CrosshairTooltip.d.ts +0 -13
- package/components/axis-defaults/Labels.d.ts +0 -13
- package/components/axis-defaults/Title.d.ts +0 -13
- package/components/axis-defaults/index.d.ts +0 -9
- package/components/base/CollectionConfigurationComponent.d.ts +0 -23
- package/components/base/ConfigurationComponent.d.ts +0 -28
- package/components/category-axis-item/Crosshair.d.ts +0 -17
- package/components/category-axis-item/CrosshairTooltip.d.ts +0 -13
- package/components/category-axis-item/Labels.d.ts +0 -13
- package/components/category-axis-item/Notes.d.ts +0 -13
- package/components/category-axis-item/NotesIcon.d.ts +0 -13
- package/components/category-axis-item/NotesLabel.d.ts +0 -13
- package/components/category-axis-item/RangeLabels.d.ts +0 -13
- package/components/category-axis-item/Select.d.ts +0 -11
- package/components/category-axis-item/Title.d.ts +0 -13
- package/components/category-axis-item/index.d.ts +0 -14
- package/components/index.d.ts +0 -39
- package/components/legend/InactiveItems.d.ts +0 -13
- package/components/legend/Item.d.ts +0 -13
- package/components/legend/Title.d.ts +0 -17
- package/components/legend/index.d.ts +0 -8
- package/components/navigator/CategoryAxis.d.ts +0 -13
- package/components/navigator/Hint.d.ts +0 -13
- package/components/navigator/Pane.d.ts +0 -13
- package/components/navigator/Select.d.ts +0 -13
- package/components/navigator/Series.d.ts +0 -13
- package/components/navigator/SeriesItem.d.ts +0 -13
- package/components/navigator/category-axis/Crosshair.d.ts +0 -13
- package/components/navigator/category-axis/CrosshairTooltip.d.ts +0 -13
- package/components/navigator/category-axis/Labels.d.ts +0 -13
- package/components/navigator/category-axis/Notes.d.ts +0 -13
- package/components/navigator/category-axis/NotesIcon.d.ts +0 -13
- package/components/navigator/category-axis/NotesLabel.d.ts +0 -13
- package/components/navigator/category-axis/Select.d.ts +0 -11
- package/components/navigator/category-axis/Title.d.ts +0 -13
- package/components/navigator/category-axis/index.d.ts +0 -13
- package/components/navigator/index.d.ts +0 -14
- package/components/navigator/pane/Title.d.ts +0 -13
- package/components/navigator/pane/index.d.ts +0 -6
- package/components/navigator/series-item/ErrorBars.d.ts +0 -13
- package/components/navigator/series-item/Extremes.d.ts +0 -13
- package/components/navigator/series-item/Highlight.d.ts +0 -13
- package/components/navigator/series-item/Labels.d.ts +0 -13
- package/components/navigator/series-item/LabelsFrom.d.ts +0 -13
- package/components/navigator/series-item/LabelsTo.d.ts +0 -13
- package/components/navigator/series-item/Markers.d.ts +0 -13
- package/components/navigator/series-item/Notes.d.ts +0 -13
- package/components/navigator/series-item/NotesIcon.d.ts +0 -13
- package/components/navigator/series-item/NotesLabel.d.ts +0 -13
- package/components/navigator/series-item/Outliers.d.ts +0 -13
- package/components/navigator/series-item/Tooltip.d.ts +0 -15
- package/components/navigator/series-item/index.d.ts +0 -17
- package/components/pane/Title.d.ts +0 -13
- package/components/pane/index.d.ts +0 -6
- package/components/pane-defaults/Title.d.ts +0 -13
- package/components/pane-defaults/index.d.ts +0 -6
- package/components/series-defaults/Labels.d.ts +0 -13
- package/components/series-defaults/LabelsFrom.d.ts +0 -13
- package/components/series-defaults/LabelsTo.d.ts +0 -13
- package/components/series-defaults/Notes.d.ts +0 -13
- package/components/series-defaults/NotesIcon.d.ts +0 -13
- package/components/series-defaults/NotesLabel.d.ts +0 -13
- package/components/series-defaults/Tooltip.d.ts +0 -15
- package/components/series-defaults/index.d.ts +0 -12
- package/components/series-item/ErrorBars.d.ts +0 -13
- package/components/series-item/Extremes.d.ts +0 -13
- package/components/series-item/Highlight.d.ts +0 -13
- package/components/series-item/Labels.d.ts +0 -17
- package/components/series-item/LabelsFrom.d.ts +0 -13
- package/components/series-item/LabelsTo.d.ts +0 -13
- package/components/series-item/Markers.d.ts +0 -13
- package/components/series-item/Notes.d.ts +0 -13
- package/components/series-item/NotesIcon.d.ts +0 -13
- package/components/series-item/NotesLabel.d.ts +0 -13
- package/components/series-item/Outliers.d.ts +0 -13
- package/components/series-item/Tooltip.d.ts +0 -15
- package/components/series-item/index.d.ts +0 -17
- package/components/value-axis-item/Crosshair.d.ts +0 -17
- package/components/value-axis-item/CrosshairTooltip.d.ts +0 -13
- package/components/value-axis-item/Labels.d.ts +0 -13
- package/components/value-axis-item/Notes.d.ts +0 -13
- package/components/value-axis-item/NotesIcon.d.ts +0 -13
- package/components/value-axis-item/NotesLabel.d.ts +0 -13
- package/components/value-axis-item/Title.d.ts +0 -13
- package/components/value-axis-item/index.d.ts +0 -12
- package/components/x-axis-item/Crosshair.d.ts +0 -17
- package/components/x-axis-item/CrosshairTooltip.d.ts +0 -13
- package/components/x-axis-item/Labels.d.ts +0 -13
- package/components/x-axis-item/Notes.d.ts +0 -13
- package/components/x-axis-item/NotesIcon.d.ts +0 -13
- package/components/x-axis-item/NotesLabel.d.ts +0 -13
- package/components/x-axis-item/Title.d.ts +0 -13
- package/components/x-axis-item/index.d.ts +0 -12
- package/components/y-axis-item/Crosshair.d.ts +0 -17
- package/components/y-axis-item/CrosshairTooltip.d.ts +0 -13
- package/components/y-axis-item/Labels.d.ts +0 -13
- package/components/y-axis-item/Notes.d.ts +0 -13
- package/components/y-axis-item/NotesIcon.d.ts +0 -13
- package/components/y-axis-item/NotesLabel.d.ts +0 -13
- package/components/y-axis-item/Title.d.ts +0 -13
- package/components/y-axis-item/index.d.ts +0 -12
- package/events/axis-label-click-event.d.ts +0 -36
- package/events/base-event.d.ts +0 -18
- package/events/chart-event-builder.d.ts +0 -10
- package/events/dom-event.d.ts +0 -23
- package/events/dom-events-builder.d.ts +0 -11
- package/events/dom-events.d.ts +0 -28
- package/events/drag-end-event.d.ts +0 -26
- package/events/drag-event.d.ts +0 -26
- package/events/drag-start-event.d.ts +0 -26
- package/events/drilldown-event.d.ts +0 -42
- package/events/drilldown-state-change-event.d.ts +0 -26
- package/events/legend-item-click-event.d.ts +0 -36
- package/events/legend-item-hover-event.d.ts +0 -36
- package/events/legend-item-leave-event.d.ts +0 -36
- package/events/navigator-filter-event.d.ts +0 -23
- package/events/note-click-event.d.ts +0 -36
- package/events/note-hover-event.d.ts +0 -36
- package/events/plot-area-click-event.d.ts +0 -35
- package/events/plot-area-hover-event.d.ts +0 -35
- package/events/preventable-event.d.ts +0 -22
- package/events/render-event.d.ts +0 -15
- package/events/select-end-event.d.ts +0 -28
- package/events/select-event.d.ts +0 -28
- package/events/select-start-event.d.ts +0 -28
- package/events/series-click-event.d.ts +0 -49
- package/events/series-hover-event.d.ts +0 -53
- package/events/zoom-end-event.d.ts +0 -28
- package/events/zoom-event.d.ts +0 -32
- package/events/zoom-start-event.d.ts +0 -26
- package/field-types/auto-base-unit-steps.interface.d.ts +0 -43
- package/field-types/axis-labels-position.d.ts +0 -26
- package/field-types/axis-line.interface.d.ts +0 -26
- package/field-types/axis-ticks.interface.d.ts +0 -33
- package/field-types/axis-title-position.d.ts +0 -26
- package/field-types/base-unit.d.ts +0 -38
- package/field-types/border.interface.d.ts +0 -22
- package/field-types/bullet-target-line.interface.d.ts +0 -13
- package/field-types/bullet-target.interface.d.ts +0 -23
- package/field-types/category-base-unit.d.ts +0 -39
- package/field-types/dash-type.d.ts +0 -32
- package/field-types/date-formats.interface.d.ts +0 -43
- package/field-types/drag-action.interface.d.ts +0 -19
- package/field-types/error-bar-line.interface.d.ts +0 -18
- package/field-types/grid-lines.interface.d.ts +0 -34
- package/field-types/highlight-line.interface.d.ts +0 -26
- package/field-types/label-connectors.interface.d.ts +0 -21
- package/field-types/label-rotation.interface.d.ts +0 -23
- package/field-types/legend-labels.interface.d.ts +0 -32
- package/field-types/line-style.d.ts +0 -32
- package/field-types/lock-axis.d.ts +0 -8
- package/field-types/margin.interface.d.ts +0 -25
- package/field-types/marker-type.d.ts +0 -35
- package/field-types/modifier-key.d.ts +0 -8
- package/field-types/mousewheel-select.interface.d.ts +0 -22
- package/field-types/mousewheel-zoom.interface.d.ts +0 -22
- package/field-types/negative-bubble-values.interface.d.ts +0 -17
- package/field-types/note-label-position.d.ts +0 -33
- package/field-types/note-line.interface.d.ts +0 -26
- package/field-types/note-position.d.ts +0 -33
- package/field-types/overlay.interface.d.ts +0 -19
- package/field-types/padding.interface.d.ts +0 -10
- package/field-types/plot-band-label.interface.d.ts +0 -91
- package/field-types/plot-band.interface.d.ts +0 -34
- package/field-types/series-labels-position.d.ts +0 -20
- package/field-types/series-line.interface.d.ts +0 -32
- package/field-types/series-stack.interface.d.ts +0 -21
- package/field-types/series-type.d.ts +0 -73
- package/field-types/trendline-forecast.interface.d.ts +0 -17
- package/field-types/week-start-day.enum.d.ts +0 -37
- package/methods/index.d.ts +0 -40
- package/option-types/axis-defaults/crosshair.interface.d.ts +0 -45
- package/option-types/axis-defaults/crosshair.tooltip.interface.d.ts +0 -38
- package/option-types/axis-defaults/labels.interface.d.ts +0 -73
- package/option-types/axis-defaults/title.interface.d.ts +0 -71
- package/option-types/axis-defaults.interface.d.ts +0 -77
- package/option-types/category-axis-item/crosshair.interface.d.ts +0 -44
- package/option-types/category-axis-item/crosshair.tooltip.interface.d.ts +0 -38
- package/option-types/category-axis-item/labels.interface.d.ts +0 -108
- package/option-types/category-axis-item/notes.icon.interface.d.ts +0 -36
- package/option-types/category-axis-item/notes.interface.d.ts +0 -49
- package/option-types/category-axis-item/notes.label.interface.d.ts +0 -50
- package/option-types/category-axis-item/range-labels.interface.d.ts +0 -28
- package/option-types/category-axis-item/select.interface.d.ts +0 -30
- package/option-types/category-axis-item/title.interface.d.ts +0 -69
- package/option-types/category-axis-item.interface.d.ts +0 -163
- package/option-types/chart-area.interface.d.ts +0 -34
- package/option-types/legend/inactive-items.interface.d.ts +0 -14
- package/option-types/legend/item.interface.d.ts +0 -121
- package/option-types/legend/legend-title.interface.d.ts +0 -65
- package/option-types/legend.interface.d.ts +0 -98
- package/option-types/navigator/hint.interface.d.ts +0 -25
- package/option-types/navigator/select.interface.d.ts +0 -22
- package/option-types/navigator.interface.d.ts +0 -41
- package/option-types/pane/title.interface.d.ts +0 -60
- package/option-types/pane-defaults/title.interface.d.ts +0 -56
- package/option-types/pane-defaults.interface.d.ts +0 -43
- package/option-types/pane.interface.d.ts +0 -43
- package/option-types/plot-area.interface.d.ts +0 -30
- package/option-types/series-defaults/labels.from.interface.d.ts +0 -55
- package/option-types/series-defaults/labels.interface.d.ts +0 -77
- package/option-types/series-defaults/labels.to.interface.d.ts +0 -55
- package/option-types/series-defaults/notes.icon.interface.d.ts +0 -36
- package/option-types/series-defaults/notes.interface.d.ts +0 -40
- package/option-types/series-defaults/notes.label.interface.d.ts +0 -50
- package/option-types/series-defaults/tooltip.interface.d.ts +0 -45
- package/option-types/series-defaults.interface.d.ts +0 -95
- package/option-types/series-item/error-bars.interface.d.ts +0 -59
- package/option-types/series-item/extremes.interface.d.ts +0 -36
- package/option-types/series-item/highlight.interface.d.ts +0 -67
- package/option-types/series-item/labels.from.interface.d.ts +0 -71
- package/option-types/series-item/labels.interface.d.ts +0 -101
- package/option-types/series-item/labels.to.interface.d.ts +0 -69
- package/option-types/series-item/markers.interface.d.ts +0 -69
- package/option-types/series-item/notes.icon.interface.d.ts +0 -36
- package/option-types/series-item/notes.interface.d.ts +0 -50
- package/option-types/series-item/notes.label.interface.d.ts +0 -50
- package/option-types/series-item/outliers.interface.d.ts +0 -36
- package/option-types/series-item/tooltip.interface.d.ts +0 -46
- package/option-types/series-item/trendline.interface.d.ts +0 -34
- package/option-types/series-item.interface.d.ts +0 -474
- package/option-types/subtitle.interface.d.ts +0 -65
- package/option-types/title.interface.d.ts +0 -59
- package/option-types/tooltip.interface.d.ts +0 -52
- package/option-types/value-axis-item/crosshair.interface.d.ts +0 -30
- package/option-types/value-axis-item/crosshair.tooltip.interface.d.ts +0 -38
- package/option-types/value-axis-item/labels.interface.d.ts +0 -86
- package/option-types/value-axis-item/notes.icon.interface.d.ts +0 -36
- package/option-types/value-axis-item/notes.interface.d.ts +0 -49
- package/option-types/value-axis-item/notes.label.interface.d.ts +0 -50
- package/option-types/value-axis-item/title.interface.d.ts +0 -70
- package/option-types/value-axis-item.interface.d.ts +0 -118
- package/option-types/x-axis-item/crosshair.interface.d.ts +0 -30
- package/option-types/x-axis-item/crosshair.tooltip.interface.d.ts +0 -38
- package/option-types/x-axis-item/labels.interface.d.ts +0 -93
- package/option-types/x-axis-item/notes.icon.interface.d.ts +0 -36
- package/option-types/x-axis-item/notes.interface.d.ts +0 -50
- package/option-types/x-axis-item/notes.label.interface.d.ts +0 -50
- package/option-types/x-axis-item/title.interface.d.ts +0 -69
- package/option-types/x-axis-item.interface.d.ts +0 -139
- package/option-types/y-axis-item/crosshair.interface.d.ts +0 -30
- package/option-types/y-axis-item/crosshair.tooltip.interface.d.ts +0 -38
- package/option-types/y-axis-item/labels.interface.d.ts +0 -93
- package/option-types/y-axis-item/notes.icon.interface.d.ts +0 -36
- package/option-types/y-axis-item/notes.interface.d.ts +0 -49
- package/option-types/y-axis-item/notes.label.interface.d.ts +0 -50
- package/option-types/y-axis-item/title.interface.d.ts +0 -70
- package/option-types/y-axis-item.interface.d.ts +0 -135
- package/option-types/zoomable.interface.d.ts +0 -18
- package/package-metadata.d.ts +0 -9
- package/sankey/Sankey.d.ts +0 -10
- package/sankey/index.d.ts +0 -7
- package/sankey/propTypes.d.ts +0 -117
- package/sankey/theme-service.d.ts +0 -9
- package/sankey/types.d.ts +0 -124
- package/store/reducer.d.ts +0 -18
- package/store/store.d.ts +0 -30
- package/theming/theme-service.d.ts +0 -10
- package/tooltip/Context.d.ts +0 -15
- package/tooltip/Crosshair.d.ts +0 -40
- package/tooltip/CrosshairContainer.d.ts +0 -32
- package/tooltip/Point.d.ts +0 -72
- package/tooltip/Popup.d.ts +0 -35
- package/tooltip/Series.d.ts +0 -39
- package/tooltip/SharedTooltipContent.d.ts +0 -15
- package/tooltip/index.d.ts +0 -7
- package/utils/index.d.ts +0 -17
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { MousewheelSelect } from '../../common/property-types';
|
|
6
|
-
/**
|
|
7
|
-
* @hidden
|
|
8
|
-
*/
|
|
9
|
-
export interface CategoryAxisSelect {
|
|
10
|
-
/**
|
|
11
|
-
* The lower boundary of the selected range.
|
|
12
|
-
*/
|
|
13
|
-
from?: any;
|
|
14
|
-
/**
|
|
15
|
-
* The maximum value which the user can select.
|
|
16
|
-
*/
|
|
17
|
-
max?: any;
|
|
18
|
-
/**
|
|
19
|
-
* The minimum value which the user can select.
|
|
20
|
-
*/
|
|
21
|
-
min?: any;
|
|
22
|
-
/**
|
|
23
|
-
* The mousewheel configuration of the selection. If set to `false`, the mousewheel does not update the selection.
|
|
24
|
-
*/
|
|
25
|
-
mousewheel?: boolean | MousewheelSelect;
|
|
26
|
-
/**
|
|
27
|
-
* The upper boundary of the selected range. The category with the specified index (date) is not included in the selected range unless the axis is justified. To select all categories, set a value that is larger than the last category index (date).
|
|
28
|
-
*/
|
|
29
|
-
to?: any;
|
|
30
|
-
}
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { drawing } from '@progress/kendo-drawing';
|
|
6
|
-
import { AxisTitlePosition, Border, Margin, Padding, TitleVisualArgs } from '../../common/property-types';
|
|
7
|
-
/**
|
|
8
|
-
* @hidden
|
|
9
|
-
*/
|
|
10
|
-
export interface CategoryAxisTitle {
|
|
11
|
-
/**
|
|
12
|
-
* The background color of the title. Accepts a valid CSS color string, including hex and rgb.
|
|
13
|
-
*/
|
|
14
|
-
background?: string;
|
|
15
|
-
/**
|
|
16
|
-
* The border of the title.
|
|
17
|
-
*/
|
|
18
|
-
border?: Border;
|
|
19
|
-
/**
|
|
20
|
-
* The text color of the title. Accepts a valid CSS color string, including hex and rgb.
|
|
21
|
-
*/
|
|
22
|
-
color?: string;
|
|
23
|
-
/**
|
|
24
|
-
* The font style of the title.
|
|
25
|
-
*/
|
|
26
|
-
font?: string;
|
|
27
|
-
/**
|
|
28
|
-
* The margin of the title. A numeric value sets all margins.
|
|
29
|
-
*/
|
|
30
|
-
margin?: Margin | number;
|
|
31
|
-
/**
|
|
32
|
-
* The padding of the title. A numeric value sets all paddings.
|
|
33
|
-
*/
|
|
34
|
-
padding?: Padding | number;
|
|
35
|
-
/**
|
|
36
|
-
* The position of the title.
|
|
37
|
-
*
|
|
38
|
-
* The supported values are:
|
|
39
|
-
* - `"top"`—The axis title is positioned on the top (applicable to the vertical axis).
|
|
40
|
-
* - `"bottom"`—The axis title is positioned on the bottom (applicable to the vertical axis).
|
|
41
|
-
* - `"left"`—The axis title is positioned on the left (applicable to the horizontal axis).
|
|
42
|
-
* - `"right"`—The axis title is positioned on the right (applicable to the horizontal axis).
|
|
43
|
-
* - `"center"`—The axis title is positioned in the center.
|
|
44
|
-
*/
|
|
45
|
-
position?: AxisTitlePosition;
|
|
46
|
-
/**
|
|
47
|
-
* The rotation angle of the title. By default, the title is not rotated.
|
|
48
|
-
*/
|
|
49
|
-
rotation?: number;
|
|
50
|
-
/**
|
|
51
|
-
* The text of the title. The text can be split into multiple lines by using the line feed characters (`"\n"`).
|
|
52
|
-
*/
|
|
53
|
-
text?: string;
|
|
54
|
-
/**
|
|
55
|
-
* If set to `true`, the Chart displays the category axis title. By default, the category axis title is visible.
|
|
56
|
-
*/
|
|
57
|
-
visible?: boolean;
|
|
58
|
-
/**
|
|
59
|
-
* A function that can be used to create a custom visual for the title.
|
|
60
|
-
*
|
|
61
|
-
* The available argument fields are:
|
|
62
|
-
* - `text`—The label text.
|
|
63
|
-
* - `rect`—The geometry [`Rect`]({% slug api_kendo-drawing_geometry_rect %}) that defines where the visual has to be rendered.
|
|
64
|
-
* - `sender`—The Chart instance (can be `undefined`).
|
|
65
|
-
* - `options`—The label options.
|
|
66
|
-
* - `createVisual`—A function for getting the default visual.
|
|
67
|
-
*/
|
|
68
|
-
visual?: (e: TitleVisualArgs) => drawing.Element;
|
|
69
|
-
}
|
|
@@ -1,163 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { AutoBaseUnitSteps, AxisLine, AxisTicks, CategoryBaseUnit, GridLines, PlotBand, WeekStartDay } from '../common/property-types';
|
|
6
|
-
import { CategoryAxisCrosshair } from './category-axis-item/crosshair.interface';
|
|
7
|
-
import { CategoryAxisLabels } from './category-axis-item/labels.interface';
|
|
8
|
-
import { CategoryAxisNotes } from './category-axis-item/notes.interface';
|
|
9
|
-
import { CategoryAxisRangeLabels } from './category-axis-item/range-labels.interface';
|
|
10
|
-
import { CategoryAxisSelect } from './category-axis-item/select.interface';
|
|
11
|
-
import { CategoryAxisTitle } from './category-axis-item/title.interface';
|
|
12
|
-
/**
|
|
13
|
-
* @hidden
|
|
14
|
-
*/
|
|
15
|
-
export interface CategoryAxis {
|
|
16
|
-
/**
|
|
17
|
-
* The time-interval steps when `baseUnit` is set either to `"fit"` or `"auto"`. The axis will try to divide the active period into the smallest possible units that yield `maxDateGroups` or less discrete intervals.
|
|
18
|
-
*/
|
|
19
|
-
autoBaseUnitSteps?: AutoBaseUnitSteps;
|
|
20
|
-
/**
|
|
21
|
-
* The category index or the date (for date category axis) at which the first value axis crosses this axis. The category indices or the date (for date category axis) at which the value axes cross the category axis (when set as an array). To denote the far end of the axis, set an index greater than or equal to the number of categories.
|
|
22
|
-
*/
|
|
23
|
-
axisCrossingValue?: any | any[];
|
|
24
|
-
/**
|
|
25
|
-
* The background color of the axis.
|
|
26
|
-
*/
|
|
27
|
-
background?: string;
|
|
28
|
-
/**
|
|
29
|
-
* The base time interval for the date axis ([see example]({% slug axes_chart_charts %}#toc-selecting-time-intervals)). The default base unit is automatically determined by the minimum difference between subsequent categories.
|
|
30
|
-
*
|
|
31
|
-
* The supported values are:
|
|
32
|
-
* - `"fit"`
|
|
33
|
-
* - `"milliseconds"`
|
|
34
|
-
* - `"seconds"`
|
|
35
|
-
* - `"minutes"`
|
|
36
|
-
* - `"hours"`
|
|
37
|
-
* - `"days"`
|
|
38
|
-
* - `"weeks"`
|
|
39
|
-
* - `"months"`
|
|
40
|
-
* - `"years"`
|
|
41
|
-
*
|
|
42
|
-
* Setting `baseUnit` to `"fit"` sets such a base unit and [`categoryAxis.baseUnitStep`]({% slug api_charts_chartcategoryaxisitemprops %}#toc-baseunitstep) that the total number of categories does not exceed [`categoryAxis.maxDateGroups`]({% slug api_charts_chartcategoryaxisitemprops %}#toc-maxdategroups).
|
|
43
|
-
*
|
|
44
|
-
* Series data is aggregated for the specified base unit by using the [`series.aggregate`]({% slug api_charts_chartseriesitemprops %}#toc-aggregate) function.
|
|
45
|
-
*/
|
|
46
|
-
baseUnit?: CategoryBaseUnit;
|
|
47
|
-
/**
|
|
48
|
-
* The step (interval) between the categories in base units ([see example]({% slug axes_chart_charts %}#toc-selecting-time-intervals)). Setting it to `"auto"` sets the step to such a value that the total number of categories does not exceed [`categoryAxis.maxDateGroups`]({% slug api_charts_chartcategoryaxisitemprops %}#toc-maxdategroups). The option is ignored if [`categoryAxis.baseUnit`]({% slug api_charts_chartcategoryaxisitemprops %}#toc-baseunit) is set to `"fit"`.
|
|
49
|
-
*/
|
|
50
|
-
baseUnitStep?: number | 'auto';
|
|
51
|
-
/**
|
|
52
|
-
* The category names. The Chart creates a category for every item of the array.
|
|
53
|
-
*/
|
|
54
|
-
categories?: any[];
|
|
55
|
-
/**
|
|
56
|
-
* The color to apply to all axis elements. Accepts a valid CSS color string, including hex and rgb. Can be overridden by [`categoryAxis.labels.color`]({% slug api_charts_chartcategoryaxislabels %}#toc-color) and [`categoryAxis.line.color`]({% slug api_charts_axisline %}#toc-color).
|
|
57
|
-
*/
|
|
58
|
-
color?: string;
|
|
59
|
-
/**
|
|
60
|
-
* If set to `true`, the Chart positions categories and series points on major ticks. This removes the empty space before and after the series. The default value is `false` except for `"area"`, `"verticalArea"`, `"rangeArea"`, and `"verticalRangeArea"`. The option is ignored if the [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) option is set to `"bar"`, `"column"`, `"boxPlot"`, `"ohlc"`, `"candlestick"`, or `"waterfall"`.
|
|
61
|
-
*/
|
|
62
|
-
justified?: boolean;
|
|
63
|
-
/**
|
|
64
|
-
* The configuration of the axis lines. Also affects the major and minor ticks, but not the grid lines.
|
|
65
|
-
*/
|
|
66
|
-
line?: AxisLine;
|
|
67
|
-
/**
|
|
68
|
-
* The configuration of the major grid lines. These are the lines that are an extension of the major ticks through the body of the Chart.
|
|
69
|
-
*/
|
|
70
|
-
majorGridLines?: GridLines;
|
|
71
|
-
/**
|
|
72
|
-
* The configuration of the category axis major ticks.
|
|
73
|
-
*/
|
|
74
|
-
majorTicks?: AxisTicks;
|
|
75
|
-
/**
|
|
76
|
-
* The last date displayed on a date category axis or the index of the last category displayed on a category axis ([see example]({% slug appearance_chart_charts %}#toc-limiting-the-displayed-range)). By default, the max value is the same as the last category. This is often used in combination with the [`categoryAxis.min`]({% slug api_charts_chartcategoryaxisitemprops %}#toc-min) and [`categoryAxis.roundToBaseUnit`]({% slug api_charts_chartcategoryaxisitemprops %}#toc-roundtobaseunit) options to set up a fixed date range.
|
|
77
|
-
*/
|
|
78
|
-
max?: any;
|
|
79
|
-
/**
|
|
80
|
-
* The maximum number of groups (categories) to display when [`categoryAxis.baseUnit`]({% slug api_charts_chartcategoryaxisitemprops %}#toc-baseunit) is set to `"fit"` or [`categoryAxis.baseUnitStep`]({% slug api_charts_chartcategoryaxisitemprops %}#toc-baseunitstep) is set to `"auto"`([see example]({% slug axes_chart_charts %}#toc-selecting-time-intervals)).
|
|
81
|
-
*/
|
|
82
|
-
maxDateGroups?: number;
|
|
83
|
-
/**
|
|
84
|
-
* The maximum number of ticks and labels to display. Applicabable for date category axis ([see example]({% slug axes_chart_charts %}#toc-limiting-the-number-of-labels)).
|
|
85
|
-
*/
|
|
86
|
-
maxDivisions?: number;
|
|
87
|
-
/**
|
|
88
|
-
* The first date which is displayed on a date category axis or the index of the first category which is displayed on a category axis ([see example]({% slug appearance_chart_charts %}#toc-limiting-the-displayed-range)). By default, the min value is the same as the first category. This is often used in combination with the [`categoryAxis.max`]({% slug api_charts_chartcategoryaxisitemprops %}#toc-max) and [`categoryAxis.roundToBaseUnit`]({% slug api_charts_chartcategoryaxisitemprops %}#toc-roundtobaseunit) options to set up a fixed date range.
|
|
89
|
-
*/
|
|
90
|
-
min?: any;
|
|
91
|
-
/**
|
|
92
|
-
* The configuration of the minor grid lines. These are the lines that are an extension of the minor ticks through the body of the Chart.
|
|
93
|
-
*/
|
|
94
|
-
minorGridLines?: GridLines;
|
|
95
|
-
/**
|
|
96
|
-
* The configuration of the category axis minor ticks.
|
|
97
|
-
*/
|
|
98
|
-
minorTicks?: AxisTicks;
|
|
99
|
-
/**
|
|
100
|
-
* The unique axis name. Used to associate a series with a category axis, which utilizes the [`series.categoryAxis`]({% slug api_charts_chartseriesitemprops %}#toc-categoryaxis) option.
|
|
101
|
-
*/
|
|
102
|
-
name?: string;
|
|
103
|
-
/**
|
|
104
|
-
* The configuration of the date axis date range labels.
|
|
105
|
-
*/
|
|
106
|
-
rangeLabels?: CategoryAxisRangeLabels;
|
|
107
|
-
/**
|
|
108
|
-
* The name of the pane in which the category axis has to be rendered. If not set, the axis will be rendered in the first (default) pane.
|
|
109
|
-
*/
|
|
110
|
-
pane?: string;
|
|
111
|
-
/**
|
|
112
|
-
* The plot bands of the category axis.
|
|
113
|
-
*/
|
|
114
|
-
plotBands?: PlotBand[];
|
|
115
|
-
/**
|
|
116
|
-
* If set to `true`, the category axis direction is reversed. By default, categories are listed from left to right and from bottom to top.
|
|
117
|
-
*/
|
|
118
|
-
reverse?: boolean;
|
|
119
|
-
/**
|
|
120
|
-
* If set to `true`, the Chart rounds the first and last date to the nearest base unit.
|
|
121
|
-
*/
|
|
122
|
-
roundToBaseUnit?: boolean;
|
|
123
|
-
/**
|
|
124
|
-
* The angle (degrees) of the first category on the axis. Angles increase clockwise with zero to the left. Negative values are acceptable.
|
|
125
|
-
*/
|
|
126
|
-
startAngle?: number;
|
|
127
|
-
/**
|
|
128
|
-
* The category axis type.
|
|
129
|
-
*
|
|
130
|
-
* The supported values are:
|
|
131
|
-
* - `"category"`—Discrete category axis.
|
|
132
|
-
* - `"date"`—Specialized axis for displaying chronological data.
|
|
133
|
-
*/
|
|
134
|
-
type?: 'category' | 'date';
|
|
135
|
-
/**
|
|
136
|
-
* If set to `true`, the Chart displays the category axis. By default, the category axis is visible.
|
|
137
|
-
*/
|
|
138
|
-
visible?: boolean;
|
|
139
|
-
/**
|
|
140
|
-
* The week start day when the `baseUnit` is set to `"weeks"`.
|
|
141
|
-
*/
|
|
142
|
-
weekStartDay?: WeekStartDay;
|
|
143
|
-
/**
|
|
144
|
-
* The configuration options of the crosshair. The crosshair is displayed when the [`categoryAxis.crosshair.visible`]({% slug api_charts_chartcategoryaxiscrosshairprops %}#toc-visible) option is set to `true`.
|
|
145
|
-
*/
|
|
146
|
-
crosshair?: CategoryAxisCrosshair;
|
|
147
|
-
/**
|
|
148
|
-
* The configuration of the axis labels.
|
|
149
|
-
*/
|
|
150
|
-
labels?: CategoryAxisLabels;
|
|
151
|
-
/**
|
|
152
|
-
* The configuration of the category axis notes.
|
|
153
|
-
*/
|
|
154
|
-
notes?: CategoryAxisNotes;
|
|
155
|
-
/**
|
|
156
|
-
* The selected axis range ([see example]({% slug selection_chart_charts %})). If set, the axis selection is enabled. The range is index-based, starting from zero. Categories with indexes in the range (`select.from`, `select.to`) will be selected. That is, the last category in the range will not be included in the selection. If the categories are dates, the range has to be also specified with date values. Selection is only supported if the axis is horizontal.
|
|
157
|
-
*/
|
|
158
|
-
select?: CategoryAxisSelect;
|
|
159
|
-
/**
|
|
160
|
-
* The title configuration of the category axis. To display the title, set the [`categoryAxis.title.text`]({% slug api_charts_chartcategoryaxisitemprops %}#toc-text) option.
|
|
161
|
-
*/
|
|
162
|
-
title?: CategoryAxisTitle;
|
|
163
|
-
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { Border, Margin } from '../common/property-types';
|
|
6
|
-
/**
|
|
7
|
-
* @hidden
|
|
8
|
-
*/
|
|
9
|
-
export interface ChartingArea {
|
|
10
|
-
/**
|
|
11
|
-
* The background color of the Chart area. Accepts a valid CSS color string, including hex and rgb.
|
|
12
|
-
*/
|
|
13
|
-
background?: string;
|
|
14
|
-
/**
|
|
15
|
-
* The border of the Chart area.
|
|
16
|
-
*/
|
|
17
|
-
border?: Border;
|
|
18
|
-
/**
|
|
19
|
-
* The height of the Chart area.
|
|
20
|
-
*/
|
|
21
|
-
height?: number;
|
|
22
|
-
/**
|
|
23
|
-
* The margin of the Chart area. A numeric value sets all margins.
|
|
24
|
-
*/
|
|
25
|
-
margin?: Margin | number;
|
|
26
|
-
/**
|
|
27
|
-
* The background opacity of the Chart area. By default, the background is opaque.
|
|
28
|
-
*/
|
|
29
|
-
opacity?: number;
|
|
30
|
-
/**
|
|
31
|
-
* The width of the Chart area.
|
|
32
|
-
*/
|
|
33
|
-
width?: number;
|
|
34
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { LegendLabels } from '../../common/property-types';
|
|
6
|
-
/**
|
|
7
|
-
* @hidden
|
|
8
|
-
*/
|
|
9
|
-
export interface LegendInactiveItems {
|
|
10
|
-
/**
|
|
11
|
-
* The label configuration of the Chart legend.
|
|
12
|
-
*/
|
|
13
|
-
labels?: LegendLabels;
|
|
14
|
-
}
|
|
@@ -1,121 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { drawing } from '@progress/kendo-drawing';
|
|
6
|
-
import { Border, DashType, LegendItemVisualArgs } from '../../common/property-types';
|
|
7
|
-
import { SeriesMarkers } from './../series-item/markers.interface';
|
|
8
|
-
/**
|
|
9
|
-
* The configuration of the Chart legend item.
|
|
10
|
-
*/
|
|
11
|
-
export interface LegendItem {
|
|
12
|
-
/**
|
|
13
|
-
* The cursor style of the legend item.
|
|
14
|
-
*/
|
|
15
|
-
cursor?: string;
|
|
16
|
-
/**
|
|
17
|
-
* Sets the type of the legend item.
|
|
18
|
-
* The default value is based on the series type.
|
|
19
|
-
*/
|
|
20
|
-
type?: LegendItemType;
|
|
21
|
-
/**
|
|
22
|
-
* Sets the configuration of the legend items of type `line`.
|
|
23
|
-
* This is the default legend item type for all line and scatter series.
|
|
24
|
-
*/
|
|
25
|
-
line?: LegendItemLine;
|
|
26
|
-
/**
|
|
27
|
-
* Sets the configuration of the legend items of type `area`.
|
|
28
|
-
* By default, all series except line and scatter use this legend type.
|
|
29
|
-
*/
|
|
30
|
-
area?: LegendItemArea;
|
|
31
|
-
/**
|
|
32
|
-
* The markers configuration of the legend item.
|
|
33
|
-
* Defaults to the series options.
|
|
34
|
-
*/
|
|
35
|
-
markers?: LegendItemMarkers;
|
|
36
|
-
/**
|
|
37
|
-
* The highlight configuration of the legend item.
|
|
38
|
-
*/
|
|
39
|
-
highlight?: LegendItemHighlight;
|
|
40
|
-
/**
|
|
41
|
-
* A function for creating a custom visual for the legend items.
|
|
42
|
-
*
|
|
43
|
-
* The available argument fields are:
|
|
44
|
-
* - `options`—The item options.
|
|
45
|
-
* - `createVisual`—A function for getting the default visual.
|
|
46
|
-
* - `series`—The item series.
|
|
47
|
-
* - `pointIndex`—The index of the point in the series. Available for the Pie, Donut, and Funnel series.
|
|
48
|
-
*/
|
|
49
|
-
visual?: (e: LegendItemVisualArgs) => drawing.Element;
|
|
50
|
-
}
|
|
51
|
-
/**
|
|
52
|
-
* The configuration of the Chart legend item markers border.
|
|
53
|
-
*/
|
|
54
|
-
export interface LegendItemMarkersBorder extends Omit<Border, 'width'> {
|
|
55
|
-
}
|
|
56
|
-
/**
|
|
57
|
-
* The configuration of the Chart legend item markers.
|
|
58
|
-
*/
|
|
59
|
-
export interface LegendItemMarkers extends Omit<SeriesMarkers, 'size' | 'border' | 'rotation' | 'from' | 'to'> {
|
|
60
|
-
/**
|
|
61
|
-
* The border of the markers.
|
|
62
|
-
*/
|
|
63
|
-
border?: LegendItemMarkersBorder;
|
|
64
|
-
}
|
|
65
|
-
/**
|
|
66
|
-
* The configuration of the Chart legend item highlight state.
|
|
67
|
-
*/
|
|
68
|
-
export interface LegendItemHighlight {
|
|
69
|
-
/**
|
|
70
|
-
* If set to `false`, the hover effect of the legend item is disabled.
|
|
71
|
-
*/
|
|
72
|
-
visible?: boolean;
|
|
73
|
-
/**
|
|
74
|
-
* The `markers` configuration of the legend item when it is hovered.
|
|
75
|
-
*/
|
|
76
|
-
markers?: LegendItemMarkers;
|
|
77
|
-
}
|
|
78
|
-
/**
|
|
79
|
-
* The configuration of the Chart legend item of type `line`.
|
|
80
|
-
* Defaults to the series options.
|
|
81
|
-
*/
|
|
82
|
-
export interface LegendItemLine {
|
|
83
|
-
/**
|
|
84
|
-
* The color of the legend item. Accepts a valid CSS color string, including HEX and RGB.
|
|
85
|
-
* Defaults to the series color.
|
|
86
|
-
*/
|
|
87
|
-
color?: string;
|
|
88
|
-
/**
|
|
89
|
-
* The opacity of the legend item.
|
|
90
|
-
* Defaults to the series opacity.
|
|
91
|
-
*/
|
|
92
|
-
opacity?: number;
|
|
93
|
-
/**
|
|
94
|
-
* The dash type of the legend item.
|
|
95
|
-
* Defaults to the series dash type.
|
|
96
|
-
*/
|
|
97
|
-
dashType?: DashType;
|
|
98
|
-
}
|
|
99
|
-
/**
|
|
100
|
-
* The configuration of the Chart legend items of type `area`.
|
|
101
|
-
* Defaults to the series options.
|
|
102
|
-
*/
|
|
103
|
-
export interface LegendItemArea {
|
|
104
|
-
/**
|
|
105
|
-
* The background color of the legend item. Accepts a valid CSS color string, including HEX and RGB.
|
|
106
|
-
* Defaults to the series color.
|
|
107
|
-
*/
|
|
108
|
-
background?: string;
|
|
109
|
-
/**
|
|
110
|
-
* The opacity of the legend item.
|
|
111
|
-
* Defaults to the series opacity.
|
|
112
|
-
*/
|
|
113
|
-
opacity?: number;
|
|
114
|
-
}
|
|
115
|
-
/**
|
|
116
|
-
* The type of the Chart legend item.
|
|
117
|
-
*
|
|
118
|
-
* - `"line"`—the legend items are rendered as a line. This is the default value for line charts.
|
|
119
|
-
* - `"area"`—the legend items are rendered as a filled rectangle. This is the default value for area charts.
|
|
120
|
-
*/
|
|
121
|
-
export type LegendItemType = 'line' | 'area';
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { Element } from '@progress/kendo-drawing';
|
|
6
|
-
import { Border, Margin, Padding, TitleVisualArgs } from '../../common/property-types';
|
|
7
|
-
/**
|
|
8
|
-
* @hidden
|
|
9
|
-
*/
|
|
10
|
-
export interface LegendTitle {
|
|
11
|
-
/**
|
|
12
|
-
* The alignment of the title.
|
|
13
|
-
*
|
|
14
|
-
* The available options are:
|
|
15
|
-
* - `"center"`—The text is aligned to the middle.
|
|
16
|
-
* - `"left"`—The text is aligned to the left.
|
|
17
|
-
* - `"right"`—The text is aligned to the right.
|
|
18
|
-
*/
|
|
19
|
-
align?: 'center' | 'left' | 'right';
|
|
20
|
-
/**
|
|
21
|
-
* The background color of the title. Accepts a valid CSS color string, including hex and rgb.
|
|
22
|
-
*/
|
|
23
|
-
background?: string;
|
|
24
|
-
/**
|
|
25
|
-
* The border of the title.
|
|
26
|
-
*/
|
|
27
|
-
border?: Border;
|
|
28
|
-
/**
|
|
29
|
-
* The text color of the title. Accepts a valid CSS color string, including hex and rgb.
|
|
30
|
-
*/
|
|
31
|
-
color?: string;
|
|
32
|
-
/**
|
|
33
|
-
* The font of the title.
|
|
34
|
-
*/
|
|
35
|
-
font?: string;
|
|
36
|
-
/**
|
|
37
|
-
* The margin of the title. A numeric value sets all margins.
|
|
38
|
-
*/
|
|
39
|
-
margin?: Margin | number;
|
|
40
|
-
/**
|
|
41
|
-
* The padding of the title. A numeric value sets all margins.
|
|
42
|
-
*/
|
|
43
|
-
padding?: Padding | number;
|
|
44
|
-
/**
|
|
45
|
-
* The position of the title.
|
|
46
|
-
*
|
|
47
|
-
* The available options are:
|
|
48
|
-
* - `"bottom"`—The title is positioned beneath the legend.
|
|
49
|
-
* - `"top"`—The title is positioned above the legend.
|
|
50
|
-
*/
|
|
51
|
-
position?: 'top' | 'bottom';
|
|
52
|
-
/**
|
|
53
|
-
* The text of the title.
|
|
54
|
-
* You can split the text into multiple lines by using the line feed characters ("\n").
|
|
55
|
-
*/
|
|
56
|
-
text?: string;
|
|
57
|
-
/**
|
|
58
|
-
* If set to `true`, the Chart displays the Legend title. By default, the title is displayed.
|
|
59
|
-
*/
|
|
60
|
-
visible?: boolean;
|
|
61
|
-
/**
|
|
62
|
-
* A function for creating a custom visual for the title.
|
|
63
|
-
*/
|
|
64
|
-
visual?: (args: TitleVisualArgs) => Element;
|
|
65
|
-
}
|
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { Border, LegendLabels, Margin, Padding } from '../common/property-types';
|
|
6
|
-
import { LegendInactiveItems } from './legend/inactive-items.interface';
|
|
7
|
-
import { LegendItem } from './legend/item.interface';
|
|
8
|
-
import { LegendTitle } from './legend/legend-title.interface';
|
|
9
|
-
/**
|
|
10
|
-
* @hidden
|
|
11
|
-
*/
|
|
12
|
-
export interface Legend {
|
|
13
|
-
/**
|
|
14
|
-
* The legend is horizontally aligned when [`legend.position`]({% slug api_charts_chartlegendprops %}#toc-position) is set to `"top"` or `"bottom"`. The legend is vertically aligned when [`legend.position`]({% slug api_charts_chartlegendprops %}#toc-position) is set to `"left"` or `"right"`.
|
|
15
|
-
*
|
|
16
|
-
* The supported values are:
|
|
17
|
-
* - `"start"`—The legend is aligned to the start.
|
|
18
|
-
* - `"center"`—The legend is aligned to the center.
|
|
19
|
-
* - `"end"`—The legend is aligned to the end.
|
|
20
|
-
*/
|
|
21
|
-
align?: 'start' | 'center' | 'end';
|
|
22
|
-
/**
|
|
23
|
-
* The background color of the legend. Accepts a valid CSS color string, including hex and rgb.
|
|
24
|
-
*/
|
|
25
|
-
background?: string;
|
|
26
|
-
/**
|
|
27
|
-
* The border of the legend.
|
|
28
|
-
*/
|
|
29
|
-
border?: Border;
|
|
30
|
-
/**
|
|
31
|
-
* The height of the legend when [`legend.orientation`]({% slug api_charts_chartlegendprops %}#toc-orientation) is set to `"vertical"`.
|
|
32
|
-
*/
|
|
33
|
-
height?: number;
|
|
34
|
-
/**
|
|
35
|
-
* The label configuration of the Chart legend.
|
|
36
|
-
*/
|
|
37
|
-
labels?: LegendLabels;
|
|
38
|
-
/**
|
|
39
|
-
* The margin of the Chart legend. A numeric value sets all paddings.
|
|
40
|
-
*/
|
|
41
|
-
margin?: Margin | number;
|
|
42
|
-
/**
|
|
43
|
-
* The X offset of the Chart legend. The offset is relative to the default position of the legend. For example, a value of `20` moves the legend 20 pixels to the right of its initial position. Negative values move the legend to the left of its current position.
|
|
44
|
-
*/
|
|
45
|
-
offsetX?: number;
|
|
46
|
-
/**
|
|
47
|
-
* The Y offset of the chart legend. The offset is relative to the current position of the legend. For example, a value of `20` moves the legend 20 pixels down from its initial position. Negative values move the legend upwards from its current position.
|
|
48
|
-
*/
|
|
49
|
-
offsetY?: number;
|
|
50
|
-
/**
|
|
51
|
-
* The orientation of the legend items.
|
|
52
|
-
*
|
|
53
|
-
* The supported values are:
|
|
54
|
-
* - `"vertical"`—The legend items are added vertically.
|
|
55
|
-
* - `"horizontal"`—The legend items are added horizontally.
|
|
56
|
-
*/
|
|
57
|
-
orientation?: 'vertical' | 'horizontal';
|
|
58
|
-
/**
|
|
59
|
-
* The padding of the Chart legend. A numeric value sets all paddings.
|
|
60
|
-
*/
|
|
61
|
-
padding?: Padding | number;
|
|
62
|
-
/**
|
|
63
|
-
* The positions of the Chart legend.
|
|
64
|
-
*
|
|
65
|
-
* The supported values are:
|
|
66
|
-
* - `"top"`—The legend is positioned on the top.
|
|
67
|
-
* - `"bottom"`—The legend is positioned on the bottom.
|
|
68
|
-
* - `"left"`—The legend is positioned on the left.
|
|
69
|
-
* - `"right"`—The legend is positioned on the right.
|
|
70
|
-
* - `"custom"`—The legend is positioned by using [`legend.offsetX`]({% slug api_charts_chartlegendprops %}#toc-offsetx) and [`legend.offsetY`]({% slug api_charts_chartlegendprops %}#toc-offsety).
|
|
71
|
-
*/
|
|
72
|
-
position?: 'top' | 'bottom' | 'left' | 'right' | 'custom';
|
|
73
|
-
/**
|
|
74
|
-
* If set to `true`, the legend items are reversed.
|
|
75
|
-
*/
|
|
76
|
-
reverse?: boolean;
|
|
77
|
-
/**
|
|
78
|
-
* If set to `true`, the Chart displays the legend ([see example]({% slug legend_chart_charts %}#toc-hiding-the-legend)). By default, the Chart legend is visible.
|
|
79
|
-
*/
|
|
80
|
-
visible?: boolean;
|
|
81
|
-
/**
|
|
82
|
-
* The legend width when the [`legend.orientation`]({% slug api_charts_chartlegendprops %}#toc-orientation) is set to `"horizontal"`.
|
|
83
|
-
*/
|
|
84
|
-
width?: number;
|
|
85
|
-
/**
|
|
86
|
-
* The configuration of the Chart inactive legend items.
|
|
87
|
-
*/
|
|
88
|
-
inactiveItems?: LegendInactiveItems;
|
|
89
|
-
/**
|
|
90
|
-
* The configuration of the Chart legend item.
|
|
91
|
-
*/
|
|
92
|
-
item?: LegendItem;
|
|
93
|
-
/**
|
|
94
|
-
* The title of the Chart legend.
|
|
95
|
-
* By default, the Chart will not render a legend title.
|
|
96
|
-
*/
|
|
97
|
-
title?: LegendTitle;
|
|
98
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
/**
|
|
6
|
-
* @hidden
|
|
7
|
-
*/
|
|
8
|
-
export interface NavigatorHint {
|
|
9
|
-
/**
|
|
10
|
-
* The function that returns the content of the hint.
|
|
11
|
-
*
|
|
12
|
-
* The available fields in the event argument are:
|
|
13
|
-
* - `from`—The lower boundary of the selected range.
|
|
14
|
-
* - `to`—The upper boundary of the selected range.
|
|
15
|
-
*/
|
|
16
|
-
content?: (e: any) => string;
|
|
17
|
-
/**
|
|
18
|
-
* The format of the hint.
|
|
19
|
-
*/
|
|
20
|
-
format?: string;
|
|
21
|
-
/**
|
|
22
|
-
* The visibility of the hint.
|
|
23
|
-
*/
|
|
24
|
-
visible?: boolean;
|
|
25
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { MousewheelSelect } from '../../common/property-types';
|
|
6
|
-
/**
|
|
7
|
-
* @hidden
|
|
8
|
-
*/
|
|
9
|
-
export interface NavigatorSelect {
|
|
10
|
-
/**
|
|
11
|
-
* The lower boundary of the selected range.
|
|
12
|
-
*/
|
|
13
|
-
from?: Date;
|
|
14
|
-
/**
|
|
15
|
-
* The configuration of the mousewheel selection. If set to `false`, the mousewheel does not update the selection.
|
|
16
|
-
*/
|
|
17
|
-
mousewheel?: boolean | MousewheelSelect;
|
|
18
|
-
/**
|
|
19
|
-
* The upper boundary of the selected range.
|
|
20
|
-
*/
|
|
21
|
-
to?: Date;
|
|
22
|
-
}
|