@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,95 +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, Overlay, SeriesStack, SeriesType, SeriesVisualArgs } from '../common/property-types';
|
|
7
|
-
import { SeriesDefaultsLabels } from './series-defaults/labels.interface';
|
|
8
|
-
import { SeriesDefaultsNotes } from './series-defaults/notes.interface';
|
|
9
|
-
import { SeriesDefaultsTooltip } from './series-defaults/tooltip.interface';
|
|
10
|
-
/**
|
|
11
|
-
* @hidden
|
|
12
|
-
*/
|
|
13
|
-
export interface SeriesDefaults {
|
|
14
|
-
/**
|
|
15
|
-
* The border of the series.
|
|
16
|
-
*/
|
|
17
|
-
border?: Border;
|
|
18
|
-
/**
|
|
19
|
-
* The distance between category clusters.
|
|
20
|
-
*/
|
|
21
|
-
gap?: number;
|
|
22
|
-
/**
|
|
23
|
-
* The Chart series overlay options.
|
|
24
|
-
*/
|
|
25
|
-
overlay?: Overlay;
|
|
26
|
-
/**
|
|
27
|
-
* The space between the Chart series as a proportion of the series width. The `spacing` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"bar"`, `"column"`, `"candlestick"`, `"ohlc"`, and `"waterfall"`.
|
|
28
|
-
*/
|
|
29
|
-
spacing?: number;
|
|
30
|
-
/**
|
|
31
|
-
* A Boolean value which indicates if the series has to be stacked. The stack option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"bar"`, `"column"`, `"line"`, `"area"`, `"verticalLine"`, `"verticalArea"`, `"radarLine"`, `"radarArea"`, and `"radarColumn"`.
|
|
32
|
-
*/
|
|
33
|
-
stack?: boolean | string | SeriesStack;
|
|
34
|
-
/**
|
|
35
|
-
* The default type of the series.
|
|
36
|
-
*
|
|
37
|
-
* The supported values are:
|
|
38
|
-
* - `area`
|
|
39
|
-
* - `bar`
|
|
40
|
-
* - `bubble`
|
|
41
|
-
* - `bullet`
|
|
42
|
-
* - `candlestick`
|
|
43
|
-
* - `column`
|
|
44
|
-
* - `donut`
|
|
45
|
-
* - `funnel`
|
|
46
|
-
* - `pyramid`
|
|
47
|
-
* - `line`
|
|
48
|
-
* - `ohlc`
|
|
49
|
-
* - `pie`
|
|
50
|
-
* - `polarArea`
|
|
51
|
-
* - `polarLine`
|
|
52
|
-
* - `polarScatter`
|
|
53
|
-
* - `radarArea`
|
|
54
|
-
* - `radarColumn`
|
|
55
|
-
* - `radarLine`
|
|
56
|
-
* - `rangeArea`
|
|
57
|
-
* - `rangeBar`
|
|
58
|
-
* - `rangeColumn`
|
|
59
|
-
* - `scatter`
|
|
60
|
-
* - `scatterLine`
|
|
61
|
-
* - `waterfall`
|
|
62
|
-
* - `verticalArea`
|
|
63
|
-
* - `verticalBullet`
|
|
64
|
-
* - `verticalLine`
|
|
65
|
-
* - `verticalRangeArea`
|
|
66
|
-
* - `waterfall`
|
|
67
|
-
*/
|
|
68
|
-
type?: SeriesType;
|
|
69
|
-
/**
|
|
70
|
-
* A function for creating custom visuals for the points. Applicable for the Bar and Column series.
|
|
71
|
-
*
|
|
72
|
-
* The available argument fields are:
|
|
73
|
-
* - `rect`—The geometry [`Rect`]({% slug api_kendo-drawing_geometry_rect %}) that defines where the visual has to be rendered.
|
|
74
|
-
* - `options`—The point options.
|
|
75
|
-
* - `createVisual`—A function that can be used to get the default visual.
|
|
76
|
-
* - `category`—The point category.
|
|
77
|
-
* - `dataItem`—The point `dataItem`.
|
|
78
|
-
* - `value`—The point value.
|
|
79
|
-
* - `sender`—The Chart instance.
|
|
80
|
-
* - `series`—The point series.
|
|
81
|
-
*/
|
|
82
|
-
visual?: (e: SeriesVisualArgs) => drawing.Element;
|
|
83
|
-
/**
|
|
84
|
-
* The label configuration of the Chart series. The Chart displays the series labels when the [`seriesDefaults.labels.visible`]({% slug api_charts_chartseriesdefaultslabelsprops %}#toc-visible) option is set to `true`.
|
|
85
|
-
*/
|
|
86
|
-
labels?: SeriesDefaultsLabels;
|
|
87
|
-
/**
|
|
88
|
-
* The `seriesDefaults` notes configuration.
|
|
89
|
-
*/
|
|
90
|
-
notes?: SeriesDefaultsNotes;
|
|
91
|
-
/**
|
|
92
|
-
* The configuration options of the Chart series tooltip.
|
|
93
|
-
*/
|
|
94
|
-
tooltip?: SeriesDefaultsTooltip;
|
|
95
|
-
}
|
|
@@ -1,59 +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 { ErrorBarLine, ErrorBarsVisualArgs } from '../../common/property-types';
|
|
7
|
-
/**
|
|
8
|
-
* @hidden
|
|
9
|
-
*/
|
|
10
|
-
export interface SeriesErrorBars {
|
|
11
|
-
/**
|
|
12
|
-
* The color of the error bars. Accepts a valid CSS color string, including hex and rgb.
|
|
13
|
-
*/
|
|
14
|
-
color?: string;
|
|
15
|
-
/**
|
|
16
|
-
* If set to `false`, the caps of the error bars are not displayed. By default, the caps are visible.
|
|
17
|
-
*/
|
|
18
|
-
endCaps?: boolean;
|
|
19
|
-
/**
|
|
20
|
-
* The error bars line options.
|
|
21
|
-
*/
|
|
22
|
-
line?: ErrorBarLine;
|
|
23
|
-
/**
|
|
24
|
-
* The error bars value ([see example]({% slug errorbars_chart_charts %}#toc-calculating-values-based-on-data)). The value option is supported when [series.type]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"bar"`, `"column"`, `"line"`, or `"area"`.
|
|
25
|
-
*
|
|
26
|
-
* The following value types are supported:
|
|
27
|
-
* - `"stderr"`—The standard error of the series values will be used to calculate the point low and high values.
|
|
28
|
-
* - `"stddev(n)"`—The standard deviation of the series values will be used to calculate the point low and high values. Between the parentheses, a number can be specified that will be multiplied by the calculated standard deviation.
|
|
29
|
-
* - `"percentage(n)"`—A percentage of the point value.
|
|
30
|
-
* - A number that will be subtracted or added to the point value.
|
|
31
|
-
* - An array that holds the low and high difference from the point value.
|
|
32
|
-
* - A function that returns the `errorBars` point value.
|
|
33
|
-
*/
|
|
34
|
-
value?: string;
|
|
35
|
-
/**
|
|
36
|
-
* A function that for creating custom visuals for the error bars.
|
|
37
|
-
*
|
|
38
|
-
* The available argument fields are:
|
|
39
|
-
* - `rect`—The geometry [`Rect`]({% slug api_kendo-drawing_geometry_rect %}) that defines where the visual has to be rendered.
|
|
40
|
-
* - `options`—The error bar options.
|
|
41
|
-
* - `createVisual`—A function that can be used to get the default visual.
|
|
42
|
-
* - `low`—The error bar low value.
|
|
43
|
-
* - `high`—The error bar high value.
|
|
44
|
-
* - `sender`—The Chart instance.
|
|
45
|
-
*/
|
|
46
|
-
visual?: (e: ErrorBarsVisualArgs) => drawing.Element;
|
|
47
|
-
/**
|
|
48
|
-
* The value of the [`xAxis`]({% slug api_charts_chartxaxisitemprops %}) error bars ([see example]({% slug errorbars_chart_charts %}#toc-calculating-values-based-on-data)).
|
|
49
|
-
*
|
|
50
|
-
* For a list of the supported value types, refer to the [`series.errorBars.value`]({% slug api_charts_chartserieserrorbarsprops %}#toc-value) option. The `xValue` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"scatter"`, `"scatterLine"`, or `"bubble"`.
|
|
51
|
-
*/
|
|
52
|
-
xValue?: string;
|
|
53
|
-
/**
|
|
54
|
-
* The value of the [`yAxis`]({% slug api_charts_chartyaxisitemprops %}) error bars ([see example]({% slug errorbars_chart_charts %}#toc-calculating-values-based-on-data)).
|
|
55
|
-
*
|
|
56
|
-
* For a list of supported value types, refer to the [`series.errorBars.value`]({% slug api_charts_chartserieserrorbarsprops %}#toc-value) option. The `yValue` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"scatter"`, `"scatterLine"`, or `"bubble"`.
|
|
57
|
-
*/
|
|
58
|
-
yValue?: string;
|
|
59
|
-
}
|
|
@@ -1,36 +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, MarkerType } from '../../common/property-types';
|
|
6
|
-
/**
|
|
7
|
-
* @hidden
|
|
8
|
-
*/
|
|
9
|
-
export interface SeriesExtremes {
|
|
10
|
-
/**
|
|
11
|
-
* The background color of the series extremes.
|
|
12
|
-
*/
|
|
13
|
-
background?: string;
|
|
14
|
-
/**
|
|
15
|
-
* The border of the extremes.
|
|
16
|
-
*/
|
|
17
|
-
border?: Border;
|
|
18
|
-
/**
|
|
19
|
-
* The rotation angle of the extremes.
|
|
20
|
-
*/
|
|
21
|
-
rotation?: number;
|
|
22
|
-
/**
|
|
23
|
-
* The extremes size in pixels.
|
|
24
|
-
*/
|
|
25
|
-
size?: number;
|
|
26
|
-
/**
|
|
27
|
-
* The shape of the series extremes.
|
|
28
|
-
*
|
|
29
|
-
* The supported values are:
|
|
30
|
-
* * `"circle"`—The marker shape is a circle.
|
|
31
|
-
* * `"square"`—The marker shape is a square.
|
|
32
|
-
* * `"triangle"`—The marker shape is a triangle.
|
|
33
|
-
* * `"cross"`—The marker shape is a cross.
|
|
34
|
-
*/
|
|
35
|
-
type?: MarkerType;
|
|
36
|
-
}
|
|
@@ -1,67 +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, HighlightLine, HighlightVisualArgs, HighlightToggleArgs } from '../../common/property-types';
|
|
7
|
-
/**
|
|
8
|
-
* @hidden
|
|
9
|
-
*/
|
|
10
|
-
export interface SeriesHighlight {
|
|
11
|
-
/**
|
|
12
|
-
* The border of the highlighted Chart series.
|
|
13
|
-
*
|
|
14
|
-
* The color is computed automatically from the base point color. The border option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"donut"`, `"bubble"`, `"pie"`, `"candlestick"`, or `"ohlc"`.
|
|
15
|
-
*/
|
|
16
|
-
border?: Border;
|
|
17
|
-
/**
|
|
18
|
-
* The highlight color. Accepts a valid CSS color string, including hex and rgb. The color option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"donut"` or `"pie"`.
|
|
19
|
-
*/
|
|
20
|
-
color?: string;
|
|
21
|
-
/**
|
|
22
|
-
* The line of the highlighted Chart series. The color is computed automatically from the base point color. The line option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"candlestick"` or `"ohlc"`.
|
|
23
|
-
*/
|
|
24
|
-
line?: HighlightLine;
|
|
25
|
-
/**
|
|
26
|
-
* The opacity of the highlighted points. The opacity option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"bubble"`, `"pie"`, or `"donut"`.
|
|
27
|
-
*/
|
|
28
|
-
opacity?: number;
|
|
29
|
-
/**
|
|
30
|
-
* A function for handling the toggling of the points highlight.
|
|
31
|
-
*
|
|
32
|
-
* The available argument fields are:
|
|
33
|
-
* - `preventDefault`—A function that can be used to prevent the showing of the default highlight overlay.
|
|
34
|
-
* - `show`—A Boolean value indicating whether the highlight has to be shown.
|
|
35
|
-
* - `visual`—The visual element that needs to be highlighted.
|
|
36
|
-
* - `category`—The point category.
|
|
37
|
-
* - `dataItem`—The point `dataItem`.
|
|
38
|
-
* - `value`—The point value.
|
|
39
|
-
* - `series`—The point series.
|
|
40
|
-
*/
|
|
41
|
-
toggle?: (e: HighlightToggleArgs) => void;
|
|
42
|
-
/**
|
|
43
|
-
* If set to `true`, the Chart highlights the series when the user hovers over it with the mouse. By default, the highlighting of the Chart series is enabled.
|
|
44
|
-
*/
|
|
45
|
-
visible?: boolean;
|
|
46
|
-
/**
|
|
47
|
-
* A function for setting custom visuals for the point highlights.
|
|
48
|
-
*
|
|
49
|
-
* The available argument fields are:
|
|
50
|
-
* - `createVisual`—A function that can be used to get the default highlight visual.
|
|
51
|
-
* - `rect`—The geometry [`Rect`]({% slug api_kendo-drawing_geometry_rect %}) that defines where the visual has to be rendered.
|
|
52
|
-
* - `visual`—The visual element that needs to be highlighted.
|
|
53
|
-
* - `options`—The point options.
|
|
54
|
-
* - `category`—The point category.
|
|
55
|
-
* - `dataItem`—The point `dataItem`.
|
|
56
|
-
* - `value`—The point value.
|
|
57
|
-
* - `sender`—The Chart instance.
|
|
58
|
-
* - `series`—The point series.
|
|
59
|
-
* - `stackValue`—The cumulative point value on the stack. Available only for the stackable series.
|
|
60
|
-
* - `percentage`—The point value represented as a percentage value. Available only for the Donut, Pie, and 100% stacked charts.
|
|
61
|
-
* - `runningTotal`—The sum of point values since the last `"runningTotal"` summary point. Available for the Waterfall series.
|
|
62
|
-
* - `total`—The sum of all previous series values. Available for the Waterfall series.
|
|
63
|
-
* - `from`—The `from` point highlight visual options. Available for the RangeArea and VerticalRangeArea series.
|
|
64
|
-
* - `to`—The `to` point highlight visual options. Available for the RangeArea and VerticalRangeArea series.
|
|
65
|
-
*/
|
|
66
|
-
visual?: (e: HighlightVisualArgs) => drawing.Element;
|
|
67
|
-
}
|
|
@@ -1,71 +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, Padding } from '../../common/property-types';
|
|
6
|
-
/**
|
|
7
|
-
* @hidden
|
|
8
|
-
*/
|
|
9
|
-
export interface SeriesLabelsFrom {
|
|
10
|
-
/**
|
|
11
|
-
* The background color of the `from` labels. Accepts a valid CSS color string, including hex and rgb.
|
|
12
|
-
*/
|
|
13
|
-
background?: string;
|
|
14
|
-
/**
|
|
15
|
-
* The border of the `from` labels.
|
|
16
|
-
*/
|
|
17
|
-
border?: Border;
|
|
18
|
-
/**
|
|
19
|
-
* The text color of the `from` labels. Accepts a valid CSS color string, including hex and rgb.
|
|
20
|
-
*/
|
|
21
|
-
color?: string;
|
|
22
|
-
/**
|
|
23
|
-
* The function which returns the Chart series `from` label content.
|
|
24
|
-
*
|
|
25
|
-
* The fields available in the function argument are:
|
|
26
|
-
* - `category`—The category name. Available for the Area, Bar, Column, Bubble, Donut, Line, Pie, and Waterfall series.
|
|
27
|
-
* - `dataItem`—The original data item used to construct the point. If binding to an array, it will be `null`.
|
|
28
|
-
* - `percentage`—The point value represented as a percentage value. Available only for the Donut, Pie, and 100% stacked charts.
|
|
29
|
-
* - `series`—The data series.
|
|
30
|
-
* - `value`—The point value. Can be a number or object containing each bound field.
|
|
31
|
-
* - `runningTotal`—The sum of point values since the last `"runningTotal"` summary point. Available for the Waterfall series.
|
|
32
|
-
* - `total`—The sum of all previous series values. Available for the Waterfall series.
|
|
33
|
-
*
|
|
34
|
-
* The text can be split into multiple lines by using the line feed characters (`"\n"`).
|
|
35
|
-
*/
|
|
36
|
-
content?: (e: any) => string;
|
|
37
|
-
/**
|
|
38
|
-
* The font style of the `from` labels.
|
|
39
|
-
*/
|
|
40
|
-
font?: string;
|
|
41
|
-
/**
|
|
42
|
-
* The format of the `from` labels. Uses the IntlService [`format`]({% slug api_intl_intlservice %}#toc-format) method.
|
|
43
|
-
*/
|
|
44
|
-
format?: string;
|
|
45
|
-
/**
|
|
46
|
-
* The margin of the `from` labels. A numeric value sets all margins.
|
|
47
|
-
*/
|
|
48
|
-
margin?: Margin | number;
|
|
49
|
-
/**
|
|
50
|
-
* The padding of the `from` labels. A numeric value sets all paddings.
|
|
51
|
-
*/
|
|
52
|
-
padding?: Padding | number;
|
|
53
|
-
/**
|
|
54
|
-
* The position of the `from` labels.
|
|
55
|
-
*
|
|
56
|
-
* The supported values are:
|
|
57
|
-
* - `"center"`—The label is positioned at the point center.
|
|
58
|
-
* - `"insideBase"`—The label is positioned inside, near the base of the bar.
|
|
59
|
-
* - `"insideEnd"`—The label is positioned inside, near the end of the point.
|
|
60
|
-
* - `"outsideEnd"`—The label is positioned outside, near the end of the point.
|
|
61
|
-
* - `"above"`—the label is positioned at the top of the marker. Applicable for `"rangeArea"` and `"verticalRangeArea"` series.
|
|
62
|
-
* - `"below"`—the label is positioned at the bottom of the marker. Applicable for `"rangeArea"` and `"verticalRangeArea"` series.
|
|
63
|
-
* - `"left"`—the label is positioned to the left of the marker. Applicable for `"rangeArea"` and `"verticalRangeArea"` series.
|
|
64
|
-
* - `"right"`—the label is positioned to the right of the marker. Applicable for `"rangeArea"` and `"verticalRangeArea"` series.
|
|
65
|
-
*/
|
|
66
|
-
position?: 'center' | 'insideBase' | 'insideEnd' | 'outsideEnd';
|
|
67
|
-
/**
|
|
68
|
-
* If set to `true`, the Chart displays the series `from` labels. By default, the Chart series `from` labels are not displayed.
|
|
69
|
-
*/
|
|
70
|
-
visible?: boolean;
|
|
71
|
-
}
|
|
@@ -1,101 +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, Margin, Padding, SeriesLabelsVisualArgs } from '../../common/property-types';
|
|
7
|
-
import { SeriesLabelsPosition } from '../../common/property-types';
|
|
8
|
-
import { SeriesLabelsFrom } from './labels.from.interface';
|
|
9
|
-
import { SeriesLabelsTo } from './labels.to.interface';
|
|
10
|
-
/**
|
|
11
|
-
* @hidden
|
|
12
|
-
*/
|
|
13
|
-
export interface SeriesLabels {
|
|
14
|
-
/**
|
|
15
|
-
* The alignment of the label when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"donut"`, `"funnel"`, `"pyramid"` or `"pie"`.
|
|
16
|
-
*
|
|
17
|
-
* The supported values for `"donut"` and `"pie"` are:
|
|
18
|
-
* - `"circle"`—The labels are positioned in circle around the Chart.
|
|
19
|
-
* - `"column"`—The labels are positioned in columns to the left and right of the Chart.
|
|
20
|
-
*
|
|
21
|
-
* The supported values for `"funnel"` and `"pyramid"` are:
|
|
22
|
-
* - `"center"`—The labels are positioned in the center over the funnel segment.
|
|
23
|
-
* - `"right"`—The labels are positioned on the right side of the Chart and, if there is enough space, do not overlap the funnel segments.
|
|
24
|
-
* - `"left"`—The labels are positioned on the left side of the Chart and, if there is enough space, do not overlap the funnel segments.
|
|
25
|
-
*/
|
|
26
|
-
align?: 'circle' | 'column' | 'center' | 'right' | 'left';
|
|
27
|
-
/**
|
|
28
|
-
* The background color of the labels. Accepts a valid CSS color string, including hex and rgb.
|
|
29
|
-
*/
|
|
30
|
-
background?: string;
|
|
31
|
-
/**
|
|
32
|
-
* The border of the labels.
|
|
33
|
-
*/
|
|
34
|
-
border?: Border;
|
|
35
|
-
/**
|
|
36
|
-
* The text color of the labels. Accepts a valid CSS color string, including hex and rgb.
|
|
37
|
-
*/
|
|
38
|
-
color?: string;
|
|
39
|
-
/**
|
|
40
|
-
* The function which returns the Chart series label content. You can split the text into multiple lines by using line feed characters (`"\n"`).
|
|
41
|
-
*
|
|
42
|
-
* The fields available in the function argument are:
|
|
43
|
-
*
|
|
44
|
-
* - `category`—The category name. Available for the Area, Bar, Column, Bubble, Donut, Line, Pie, and Waterfall series.
|
|
45
|
-
* - `dataItem`—The original data item used to construct the point. If binding to an array, it will be `null`.
|
|
46
|
-
* - `percentage`—The point value represented as a percentage value. Available only for the Donut, Pie, and 100% stacked charts.
|
|
47
|
-
* - `series`—The data series.
|
|
48
|
-
* - `stackValue`—The cumulative point value on the stack. Available only for the stackable series.
|
|
49
|
-
* - `value`—The point value. Can be a number or object containing each bound field.
|
|
50
|
-
* - `runningTotal`—The sum of point values since the last `"runningTotal"` summary point. Available for the Waterfall series.
|
|
51
|
-
* - `total`—The sum of all previous series values. Available for the Waterfall series.
|
|
52
|
-
*/
|
|
53
|
-
content?: (e: any) => string;
|
|
54
|
-
/**
|
|
55
|
-
* The distance between the labels when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"donut"` or `"pie"`.
|
|
56
|
-
*/
|
|
57
|
-
distance?: number;
|
|
58
|
-
/**
|
|
59
|
-
* The font style of the labels.
|
|
60
|
-
*/
|
|
61
|
-
font?: string;
|
|
62
|
-
/**
|
|
63
|
-
* The format of the labels. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of IntlService.
|
|
64
|
-
*/
|
|
65
|
-
format?: string;
|
|
66
|
-
/**
|
|
67
|
-
* The margin of the labels. A numeric value sets all margins.
|
|
68
|
-
*/
|
|
69
|
-
margin?: Margin | number;
|
|
70
|
-
/**
|
|
71
|
-
* The padding of the labels. A numeric value sets all paddings. Bar and Column series always apply full padding and ignore this setting.
|
|
72
|
-
*/
|
|
73
|
-
padding?: Padding | number;
|
|
74
|
-
/**
|
|
75
|
-
* The position of the labels.
|
|
76
|
-
*/
|
|
77
|
-
position?: SeriesLabelsPosition;
|
|
78
|
-
/**
|
|
79
|
-
* If set to `true`, the Chart displays the series labels. By default, the Chart series labels are not displayed.
|
|
80
|
-
*/
|
|
81
|
-
visible?: boolean;
|
|
82
|
-
/**
|
|
83
|
-
* A function that can be used to create a custom visual for the labels.
|
|
84
|
-
*
|
|
85
|
-
* The available argument fields are:
|
|
86
|
-
* - `text`—The label text.
|
|
87
|
-
* - `rect`—The geometry [`Rect`]({% slug api_kendo-drawing_geometry_rect %}) that defines where the visual has to be rendered.
|
|
88
|
-
* - `options`—The label options.
|
|
89
|
-
* - `createVisual`—A function that can be used to get the default visual.
|
|
90
|
-
* - `sender`—The Chart instance (might be `undefined`).
|
|
91
|
-
*/
|
|
92
|
-
visual?: (e: SeriesLabelsVisualArgs) => drawing.Element;
|
|
93
|
-
/**
|
|
94
|
-
* The `from` label configuration of the Chart series. The Chart displays the series from labels when either the [`series.labels.visible`]({% slug api_charts_chartserieslabelsprops %}#toc-visible) or the [`series.labels.from.visible`]({% slug api_charts_chartseriesdefaultslabelsfromprops %}#toc-visible) option is set to `true`.
|
|
95
|
-
*/
|
|
96
|
-
from?: SeriesLabelsFrom;
|
|
97
|
-
/**
|
|
98
|
-
* The `to` label configuration of the Chart series. The Chart displays the series to labels when either the [`series.labels.visible`]({% slug api_charts_chartserieslabelsprops %}#toc-visible) or the [`series.labels.to.visible`]({% slug api_charts_chartserieslabelstoprops %}#toc-visible) option is set to `true`.
|
|
99
|
-
*/
|
|
100
|
-
to?: SeriesLabelsTo;
|
|
101
|
-
}
|
|
@@ -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 { Border, Margin, Padding } from '../../common/property-types';
|
|
6
|
-
/**
|
|
7
|
-
* @hidden
|
|
8
|
-
*/
|
|
9
|
-
export interface SeriesLabelsTo {
|
|
10
|
-
/**
|
|
11
|
-
* The background color of the `to` labels. Accepts a valid CSS color string, including hex and rgb.
|
|
12
|
-
*/
|
|
13
|
-
background?: string;
|
|
14
|
-
/**
|
|
15
|
-
* The border of the `to` labels.
|
|
16
|
-
*/
|
|
17
|
-
border?: Border;
|
|
18
|
-
/**
|
|
19
|
-
* The text color of the `to` labels. Accepts a valid CSS color string, including hex and rgb.
|
|
20
|
-
*/
|
|
21
|
-
color?: string;
|
|
22
|
-
/**
|
|
23
|
-
* The function which returns the Chart series `to` label content. You can split the text into multiple lines by using line feed characters (`"\n"`).
|
|
24
|
-
*
|
|
25
|
-
* The fields available in the function argument are:
|
|
26
|
-
* - `category`—The category name. Available for the Area, Bar, Column, Bubble, Donut, Line, Pie, and Waterfall series.
|
|
27
|
-
* - `dataItem`—The original data item used to construct the point. If binding to an array, it will be `null`.
|
|
28
|
-
* - `percentage`—The point value represented as a percentage value. Available only for the Donut, Pie, and 100% stacked charts.
|
|
29
|
-
* - `series`—The data series.
|
|
30
|
-
* - `value`—The point value. Can be a number or object containing each bound field.
|
|
31
|
-
* - `runningTotal`—The sum of point values since the last `"runningTotal"` summary point. Available for the Waterfall series.
|
|
32
|
-
* - `total`—The sum of all previous series values. Available for the Waterfall series.
|
|
33
|
-
*/
|
|
34
|
-
content?: (e: any) => string;
|
|
35
|
-
/**
|
|
36
|
-
* The font style of the `to` labels.
|
|
37
|
-
*/
|
|
38
|
-
font?: string;
|
|
39
|
-
/**
|
|
40
|
-
* The format of the `to` labels. Uses [IntlService format]({% slug api_intl_intlservice %}#toc-format).
|
|
41
|
-
*/
|
|
42
|
-
format?: string;
|
|
43
|
-
/**
|
|
44
|
-
* The margin of the `to` labels. A numeric value sets all margins.
|
|
45
|
-
*/
|
|
46
|
-
margin?: Margin | number;
|
|
47
|
-
/**
|
|
48
|
-
* The padding of the `to` labels. A numeric value sets all paddings.
|
|
49
|
-
*/
|
|
50
|
-
padding?: Padding | number;
|
|
51
|
-
/**
|
|
52
|
-
* The position of the `to` labels.
|
|
53
|
-
*
|
|
54
|
-
* The available options are:
|
|
55
|
-
* - `"center"`—The label is positioned at the point center.
|
|
56
|
-
* - `"insideBase"`—The label is positioned inside, near the base of the bar.
|
|
57
|
-
* - `"insideEnd"`—The label is positioned inside, near the end of the point.
|
|
58
|
-
* - `"outsideEnd"`—The label is positioned outside, near the end of the point.
|
|
59
|
-
* - `"above"`—The label is positioned at the top of the marker. Applicable for the RangeArea and VerticalRangeArea series.
|
|
60
|
-
* - `"below"`—The label is positioned at the bottom of the marker. Applicable for the RangeArea and VerticalRangeArea series.
|
|
61
|
-
* - `"left"`—The label is positioned to the left of the marker. Applicable for the RangeArea and VerticalRangeArea series.
|
|
62
|
-
* - `"right"`—The label is positioned to the right of the marker. Applicable for the RangeArea and VerticalRangeArea series.
|
|
63
|
-
*/
|
|
64
|
-
position?: 'center' | 'insideBase' | 'insideEnd' | 'outsideEnd';
|
|
65
|
-
/**
|
|
66
|
-
* If set to `true`, the Chart displays the series `to` labels. By default, the Chart series `to` labels are not displayed.
|
|
67
|
-
*/
|
|
68
|
-
visible?: boolean;
|
|
69
|
-
}
|
|
@@ -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 { Border, MarkersVisualArgs, MarkerType } from '../../common/property-types';
|
|
7
|
-
/**
|
|
8
|
-
* @hidden
|
|
9
|
-
*/
|
|
10
|
-
export interface SeriesMarkers {
|
|
11
|
-
/**
|
|
12
|
-
* The background color of the series markers.
|
|
13
|
-
*/
|
|
14
|
-
background?: string;
|
|
15
|
-
/**
|
|
16
|
-
* The border of the markers.
|
|
17
|
-
*/
|
|
18
|
-
border?: Border;
|
|
19
|
-
/**
|
|
20
|
-
* The rotation angle of the markers.
|
|
21
|
-
*/
|
|
22
|
-
rotation?: number;
|
|
23
|
-
/**
|
|
24
|
-
* The marker size in pixels.
|
|
25
|
-
*/
|
|
26
|
-
size?: number;
|
|
27
|
-
/**
|
|
28
|
-
* The border radius in pixels when `type` is set to `"roundedRect"`. Defaults to 1/5 of the marker size.
|
|
29
|
-
*/
|
|
30
|
-
borderRadius?: number;
|
|
31
|
-
/**
|
|
32
|
-
* The shape of the series markers.
|
|
33
|
-
*
|
|
34
|
-
* The supported values are:
|
|
35
|
-
* * `"circle"`—The marker shape is a circle.
|
|
36
|
-
* * `"square"`—The marker shape is a square.
|
|
37
|
-
* * `"triangle"`—The marker shape is a triangle.
|
|
38
|
-
* * `"cross"`—The marker shape is a cross.
|
|
39
|
-
* * `"rect"`—An alias for "square".
|
|
40
|
-
* * `"roundedRect"`—The marker shape is a rounded rectangle.
|
|
41
|
-
*/
|
|
42
|
-
type?: MarkerType;
|
|
43
|
-
/**
|
|
44
|
-
* If set to `true`, the Chart displays the series markers. By default, the Chart series markers are displayed.
|
|
45
|
-
*/
|
|
46
|
-
visible?: boolean;
|
|
47
|
-
/**
|
|
48
|
-
* A function for creating a custom visual for the markers.
|
|
49
|
-
*
|
|
50
|
-
* The available argument fields are:
|
|
51
|
-
* - `rect`—The [geometry Rect]({% slug api_kendo-drawing_geometry_rect %}) that defines where the visual has to be rendered.
|
|
52
|
-
* - `options`—The marker options.
|
|
53
|
-
* - `createVisual`—A function that can be used to get the default visual.
|
|
54
|
-
* - `category`—The category of the marker point.
|
|
55
|
-
* - `dataItem`—The `dataItem` of the marker point.
|
|
56
|
-
* - `value`—The value of the marker point.
|
|
57
|
-
* - `sender`—The Chart instance.
|
|
58
|
-
* - `series`—The series of the marker point.
|
|
59
|
-
*/
|
|
60
|
-
visual?: (e: MarkersVisualArgs) => drawing.Element;
|
|
61
|
-
/**
|
|
62
|
-
* The Chart series marker configuration for the `from` point. Supported for the RangeArea and VerticalRangeArea series.
|
|
63
|
-
*/
|
|
64
|
-
from?: SeriesMarkers;
|
|
65
|
-
/**
|
|
66
|
-
* The Chart series marker configuration for the `to` point. Supported for the RangeArea and VerticalRangeArea series.
|
|
67
|
-
*/
|
|
68
|
-
to?: SeriesMarkers;
|
|
69
|
-
}
|
|
@@ -1,36 +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, MarkerType } from '../../common/property-types';
|
|
6
|
-
/**
|
|
7
|
-
* @hidden
|
|
8
|
-
*/
|
|
9
|
-
export interface SeriesNotesIcon {
|
|
10
|
-
/**
|
|
11
|
-
* The background color of the notes icon.
|
|
12
|
-
*/
|
|
13
|
-
background?: string;
|
|
14
|
-
/**
|
|
15
|
-
* The border of the notes icon.
|
|
16
|
-
*/
|
|
17
|
-
border?: Border;
|
|
18
|
-
/**
|
|
19
|
-
* The size of the notes icon.
|
|
20
|
-
*/
|
|
21
|
-
size?: number;
|
|
22
|
-
/**
|
|
23
|
-
* The icon shape.
|
|
24
|
-
*
|
|
25
|
-
* The supported values are:
|
|
26
|
-
* * `"circle"`—The marker shape is a circle.
|
|
27
|
-
* * `"square"`—The marker shape is a square.
|
|
28
|
-
* * `"triangle"`—The marker shape is a triangle.
|
|
29
|
-
* * `"cross"`—The marker shape is a cross.
|
|
30
|
-
*/
|
|
31
|
-
type?: MarkerType;
|
|
32
|
-
/**
|
|
33
|
-
* The visibility of the notes icon.
|
|
34
|
-
*/
|
|
35
|
-
visible?: boolean;
|
|
36
|
-
}
|
|
@@ -1,50 +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 { NoteLine, NotePosition, SeriesNoteVisualArgs } from '../../common/property-types';
|
|
7
|
-
import { SeriesNotesIcon } from './notes.icon.interface';
|
|
8
|
-
import { SeriesNotesLabel } from './notes.label.interface';
|
|
9
|
-
/**
|
|
10
|
-
* @hidden
|
|
11
|
-
*/
|
|
12
|
-
export interface SeriesNotes {
|
|
13
|
-
/**
|
|
14
|
-
* The line of the series notes.
|
|
15
|
-
*/
|
|
16
|
-
line?: NoteLine;
|
|
17
|
-
/**
|
|
18
|
-
* The position of the series note.
|
|
19
|
-
*
|
|
20
|
-
* The available options are:
|
|
21
|
-
* - `"top"`—The note is positioned on the top.
|
|
22
|
-
* - `"bottom"`—The note is positioned on the bottom.
|
|
23
|
-
* - `"left"`—The note is positioned on the left.
|
|
24
|
-
* - `"right"`—The note is positioned on the right.
|
|
25
|
-
*/
|
|
26
|
-
position?: NotePosition;
|
|
27
|
-
/**
|
|
28
|
-
* A function for creating a custom visual for the notes.
|
|
29
|
-
*
|
|
30
|
-
* The available argument fields are:
|
|
31
|
-
* - `rect`—The geometry [`Rect`]({% slug api_kendo-drawing_geometry_rect %}) that defines the note target rect.
|
|
32
|
-
* - `options`—The note options.
|
|
33
|
-
* - `createVisual`—A function that can be used to get the default visual.
|
|
34
|
-
* - `category`—The category of the note point.
|
|
35
|
-
* - `dataItem`—The `dataItem` of the note point.
|
|
36
|
-
* - `value`—The value of the note point.
|
|
37
|
-
* - `sender`—The Chart instance.
|
|
38
|
-
* - `series`—The series of the note point.
|
|
39
|
-
* - `text`—The note text.
|
|
40
|
-
*/
|
|
41
|
-
visual?: (e: SeriesNoteVisualArgs) => drawing.Element;
|
|
42
|
-
/**
|
|
43
|
-
* The icon of the notes.
|
|
44
|
-
*/
|
|
45
|
-
icon?: SeriesNotesIcon;
|
|
46
|
-
/**
|
|
47
|
-
* The label of the notes.
|
|
48
|
-
*/
|
|
49
|
-
label?: SeriesNotesLabel;
|
|
50
|
-
}
|