@progress/kendo-vue-charts 8.0.3-develop.2 → 8.0.3-develop.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BaseChart.d.ts +191 -0
- package/BaseChartProps.d.ts +193 -0
- package/Chart.d.ts +154 -0
- package/ChartContext.d.ts +21 -0
- package/ChartNoDataOverlay.d.ts +29 -0
- package/ChartProps.d.ts +17 -0
- package/DonutCenter.d.ts +35 -0
- package/Sparkline.d.ts +119 -0
- package/SparklineProps.d.ts +21 -0
- package/StockChart.d.ts +118 -0
- package/StockChartProps.d.ts +22 -0
- package/api-types/axis-range.interface.d.ts +20 -0
- package/api-types/chart-axis.interface.d.ts +43 -0
- package/api-types/chart-pane.interface.d.ts +21 -0
- package/api-types/chart-plotarea.interface.d.ts +21 -0
- package/api-types/event-axis-options.interface.d.ts +16 -0
- package/api-types/event-series-options.interface.d.ts +24 -0
- package/api-types/series-point.interface.d.ts +45 -0
- package/argument-types/axis-label-visual-args.interface.d.ts +49 -0
- package/argument-types/axis-note-visual-args.interface.d.ts +33 -0
- package/argument-types/error-bars-visual-args.interface.d.ts +37 -0
- package/argument-types/highlight-toggle-args.interface.d.ts +41 -0
- package/argument-types/highlight-visual-args.interface.d.ts +57 -0
- package/argument-types/legend-item-visual-args.interface.d.ts +33 -0
- package/argument-types/legend-labels-content-args.interface.d.ts +28 -0
- package/argument-types/markers-visual-args.interface.d.ts +45 -0
- package/argument-types/plot-band-label-visual-args.interface.d.ts +33 -0
- package/argument-types/series-labels-visual-args.interface.d.ts +33 -0
- package/argument-types/series-note-visual-args.interface.d.ts +49 -0
- package/argument-types/series-visual-args.interface.d.ts +82 -0
- package/argument-types/title-visual-args.interface.d.ts +33 -0
- package/common/api-types.d.ts +14 -0
- package/common/events.d.ts +27 -0
- package/common/property-types.d.ts +137 -0
- package/components/AxisDefaults.d.ts +166 -0
- package/components/CategoryAxis.d.ts +12 -0
- package/components/CategoryAxisItem.d.ts +314 -0
- package/components/ChartArea.d.ts +76 -0
- package/components/Legend.d.ts +199 -0
- package/components/Navigator.d.ts +76 -0
- package/components/Pane.d.ts +94 -0
- package/components/PaneDefaults.d.ts +94 -0
- package/components/Panes.d.ts +12 -0
- package/components/PlotArea.d.ts +67 -0
- package/components/Series.d.ts +12 -0
- package/components/SeriesDefaults.d.ts +109 -0
- package/components/SeriesItem.d.ts +410 -0
- package/components/Title.d.ts +116 -0
- package/components/Tooltip.d.ts +113 -0
- package/components/ValueAxis.d.ts +12 -0
- package/components/ValueAxisItem.d.ts +231 -0
- package/components/XAxis.d.ts +12 -0
- package/components/XAxisItem.d.ts +260 -0
- package/components/YAxis.d.ts +12 -0
- package/components/YAxisItem.d.ts +251 -0
- package/components/Zoomable.d.ts +39 -0
- package/components/axis-defaults/Crosshair.d.ts +57 -0
- package/components/axis-defaults/CrosshairTooltip.d.ts +57 -0
- package/components/axis-defaults/Labels.d.ts +86 -0
- package/components/axis-defaults/Title.d.ts +88 -0
- package/components/axis-defaults/index.d.ts +12 -0
- package/components/base/CollectionConfigurationComponent.d.ts +43 -0
- package/components/base/ConfigurationComponent.d.ts +48 -0
- package/components/category-axis-item/Crosshair.d.ts +57 -0
- package/components/category-axis-item/CrosshairTooltip.d.ts +57 -0
- package/components/category-axis-item/Labels.d.ts +128 -0
- package/components/category-axis-item/Notes.d.ts +78 -0
- package/components/category-axis-item/NotesIcon.d.ts +55 -0
- package/components/category-axis-item/NotesLabel.d.ts +70 -0
- package/components/category-axis-item/RangeLabels.d.ts +46 -0
- package/components/category-axis-item/Select.d.ts +67 -0
- package/components/category-axis-item/Title.d.ts +88 -0
- package/components/category-axis-item/index.d.ts +17 -0
- package/components/index.d.ts +41 -0
- package/components/legend/InactiveItems.d.ts +31 -0
- package/components/legend/Item.d.ts +80 -0
- package/components/legend/Title.d.ts +97 -0
- package/components/legend/index.d.ts +11 -0
- package/components/navigator/CategoryAxis.d.ts +314 -0
- package/components/navigator/Hint.d.ts +42 -0
- package/components/navigator/Pane.d.ts +94 -0
- package/components/navigator/Select.d.ts +49 -0
- package/components/navigator/Series.d.ts +12 -0
- package/components/navigator/SeriesItem.d.ts +390 -0
- package/components/navigator/category-axis/Crosshair.d.ts +57 -0
- package/components/navigator/category-axis/CrosshairTooltip.d.ts +57 -0
- package/components/navigator/category-axis/Labels.d.ts +128 -0
- package/components/navigator/category-axis/Notes.d.ts +78 -0
- package/components/navigator/category-axis/NotesIcon.d.ts +54 -0
- package/components/navigator/category-axis/NotesLabel.d.ts +70 -0
- package/components/navigator/category-axis/Select.d.ts +67 -0
- package/components/navigator/category-axis/Title.d.ts +88 -0
- package/components/navigator/category-axis/index.d.ts +16 -0
- package/components/navigator/index.d.ts +17 -0
- package/components/navigator/pane/Title.d.ts +77 -0
- package/components/navigator/pane/index.d.ts +9 -0
- package/components/navigator/series-item/ErrorBars.d.ts +57 -0
- package/components/navigator/series-item/Extremes.d.ts +48 -0
- package/components/navigator/series-item/Highlight.d.ts +71 -0
- package/components/navigator/series-item/Labels.d.ts +126 -0
- package/components/navigator/series-item/LabelsFrom.d.ts +86 -0
- package/components/navigator/series-item/LabelsTo.d.ts +86 -0
- package/components/navigator/series-item/Markers.d.ts +84 -0
- package/components/navigator/series-item/Notes.d.ts +69 -0
- package/components/navigator/series-item/NotesIcon.d.ts +55 -0
- package/components/navigator/series-item/NotesLabel.d.ts +70 -0
- package/components/navigator/series-item/Outliers.d.ts +48 -0
- package/components/navigator/series-item/Tooltip.d.ts +60 -0
- package/components/navigator/series-item/index.d.ts +20 -0
- package/components/pane/Title.d.ts +77 -0
- package/components/pane/index.d.ts +9 -0
- package/components/pane-defaults/Title.d.ts +75 -0
- package/components/pane-defaults/index.d.ts +9 -0
- package/components/series-defaults/Labels.d.ts +102 -0
- package/components/series-defaults/LabelsFrom.d.ts +75 -0
- package/components/series-defaults/LabelsTo.d.ts +75 -0
- package/components/series-defaults/Notes.d.ts +58 -0
- package/components/series-defaults/NotesIcon.d.ts +55 -0
- package/components/series-defaults/NotesLabel.d.ts +70 -0
- package/components/series-defaults/Tooltip.d.ts +60 -0
- package/components/series-defaults/index.d.ts +16 -0
- package/components/series-item/ErrorBars.d.ts +57 -0
- package/components/series-item/Extremes.d.ts +48 -0
- package/components/series-item/Highlight.d.ts +71 -0
- package/components/series-item/Labels.d.ts +126 -0
- package/components/series-item/LabelsFrom.d.ts +86 -0
- package/components/series-item/LabelsTo.d.ts +86 -0
- package/components/series-item/Markers.d.ts +82 -0
- package/components/series-item/Notes.d.ts +69 -0
- package/components/series-item/NotesIcon.d.ts +55 -0
- package/components/series-item/NotesLabel.d.ts +70 -0
- package/components/series-item/Outliers.d.ts +48 -0
- package/components/series-item/Tooltip.d.ts +60 -0
- package/components/series-item/index.d.ts +20 -0
- package/components/value-axis-item/Crosshair.d.ts +45 -0
- package/components/value-axis-item/CrosshairTooltip.d.ts +57 -0
- package/components/value-axis-item/Labels.d.ts +106 -0
- package/components/value-axis-item/Notes.d.ts +78 -0
- package/components/value-axis-item/NotesIcon.d.ts +55 -0
- package/components/value-axis-item/NotesLabel.d.ts +70 -0
- package/components/value-axis-item/Title.d.ts +88 -0
- package/components/value-axis-item/index.d.ts +15 -0
- package/components/x-axis-item/Crosshair.d.ts +46 -0
- package/components/x-axis-item/CrosshairTooltip.d.ts +57 -0
- package/components/x-axis-item/Labels.d.ts +117 -0
- package/components/x-axis-item/Notes.d.ts +78 -0
- package/components/x-axis-item/NotesIcon.d.ts +55 -0
- package/components/x-axis-item/NotesLabel.d.ts +70 -0
- package/components/x-axis-item/Title.d.ts +88 -0
- package/components/x-axis-item/index.d.ts +15 -0
- package/components/y-axis-item/Crosshair.d.ts +46 -0
- package/components/y-axis-item/CrosshairTooltip.d.ts +57 -0
- package/components/y-axis-item/Labels.d.ts +117 -0
- package/components/y-axis-item/Notes.d.ts +78 -0
- package/components/y-axis-item/NotesIcon.d.ts +55 -0
- package/components/y-axis-item/NotesLabel.d.ts +70 -0
- package/components/y-axis-item/Title.d.ts +88 -0
- package/components/y-axis-item/index.d.ts +16 -0
- package/defaults.d.ts +8 -0
- package/dist/cdn/js/kendo-vue-charts.js +1 -1
- package/events/axis-label-click-event.d.ts +38 -0
- package/events/base-event.d.ts +20 -0
- package/events/chart-event-builder.d.ts +12 -0
- package/events/dom-event.d.ts +26 -0
- package/events/drag-end-event.d.ts +28 -0
- package/events/drag-event.d.ts +28 -0
- package/events/drag-start-event.d.ts +28 -0
- package/events/legend-item-click-event.d.ts +38 -0
- package/events/legend-item-hover-event.d.ts +38 -0
- package/events/legend-item-leave-event.d.ts +38 -0
- package/events/navigator-filter-event.d.ts +25 -0
- package/events/note-click-event.d.ts +38 -0
- package/events/note-hover-event.d.ts +38 -0
- package/events/plot-area-click-event.d.ts +37 -0
- package/events/plot-area-hover-event.d.ts +37 -0
- package/events/preventable-event.d.ts +25 -0
- package/events/render-event.d.ts +17 -0
- package/events/select-end-event.d.ts +30 -0
- package/events/select-event.d.ts +30 -0
- package/events/select-start-event.d.ts +30 -0
- package/events/series-click-event.d.ts +51 -0
- package/events/series-hover-event.d.ts +55 -0
- package/events/zoom-end-event.d.ts +30 -0
- package/events/zoom-event.d.ts +34 -0
- package/events/zoom-start-event.d.ts +28 -0
- package/field-types/auto-base-unit-steps.interface.d.ts +46 -0
- package/field-types/axis-labels-position.d.ts +22 -0
- package/field-types/axis-line.interface.d.ts +29 -0
- package/field-types/axis-ticks.interface.d.ts +36 -0
- package/field-types/axis-title-position.d.ts +21 -0
- package/field-types/base-unit.d.ts +23 -0
- package/field-types/border.interface.d.ts +25 -0
- package/field-types/bullet-target-line.interface.d.ts +16 -0
- package/field-types/bullet-target.interface.d.ts +26 -0
- package/field-types/category-base-unit.d.ts +54 -0
- package/field-types/dash-type.d.ts +42 -0
- package/field-types/date-formats.interface.d.ts +46 -0
- package/field-types/drag-action.interface.d.ts +22 -0
- package/field-types/error-bar-line.interface.d.ts +21 -0
- package/field-types/grid-lines.interface.d.ts +37 -0
- package/field-types/highlight-line.interface.d.ts +29 -0
- package/field-types/label-connectors.interface.d.ts +24 -0
- package/field-types/label-rotation.interface.d.ts +26 -0
- package/field-types/legend-labels.interface.d.ts +35 -0
- package/field-types/line-style.d.ts +42 -0
- package/field-types/lock-axis.d.ts +11 -0
- package/field-types/margin.interface.d.ts +28 -0
- package/field-types/marker-type.d.ts +43 -0
- package/field-types/modifier-key.d.ts +11 -0
- package/field-types/mousewheel-select.interface.d.ts +25 -0
- package/field-types/mousewheel-zoom.interface.d.ts +17 -0
- package/field-types/negative-bubble-values.interface.d.ts +20 -0
- package/field-types/note-label-position.d.ts +60 -0
- package/field-types/note-line.interface.d.ts +29 -0
- package/field-types/note-position.d.ts +57 -0
- package/field-types/overlay.interface.d.ts +22 -0
- package/field-types/padding.interface.d.ts +13 -0
- package/field-types/plot-band-label.interface.d.ts +94 -0
- package/field-types/plot-band.interface.d.ts +37 -0
- package/field-types/series-labels-position.d.ts +23 -0
- package/field-types/series-line.interface.d.ts +35 -0
- package/field-types/series-stack.interface.d.ts +24 -0
- package/field-types/series-type.d.ts +86 -0
- package/field-types/trendline-forecast.interface.d.ts +20 -0
- package/field-types/week-start-day.enum.d.ts +40 -0
- package/index.d.mts +16 -16241
- package/index.d.ts +16 -16241
- package/index.js +1 -1
- package/index.mjs +242 -242
- package/messages.d.ts +17 -0
- package/methods/index.d.ts +42 -0
- package/option-types/axis-crosshair-tooltip.interface.d.ts +42 -0
- package/option-types/axis-defaults/crosshair.interface.d.ts +48 -0
- package/option-types/axis-defaults/crosshair.tooltip.interface.d.ts +13 -0
- package/option-types/axis-defaults/labels.interface.d.ts +76 -0
- package/option-types/axis-defaults/title.interface.d.ts +74 -0
- package/option-types/axis-defaults.interface.d.ts +80 -0
- package/option-types/category-axis-item/crosshair.interface.d.ts +47 -0
- package/option-types/category-axis-item/crosshair.tooltip.interface.d.ts +13 -0
- package/option-types/category-axis-item/labels.interface.d.ts +110 -0
- package/option-types/category-axis-item/notes.icon.interface.d.ts +39 -0
- package/option-types/category-axis-item/notes.interface.d.ts +52 -0
- package/option-types/category-axis-item/notes.label.interface.d.ts +53 -0
- package/option-types/category-axis-item/range-labels.interface.d.ts +31 -0
- package/option-types/category-axis-item/select.interface.d.ts +33 -0
- package/option-types/category-axis-item/title.interface.d.ts +72 -0
- package/option-types/category-axis-item.interface.d.ts +166 -0
- package/option-types/chart-area.interface.d.ts +37 -0
- package/option-types/legend/inactive-items.interface.d.ts +17 -0
- package/option-types/legend/item.interface.d.ts +124 -0
- package/option-types/legend/legend-title.interface.d.ts +68 -0
- package/option-types/legend.interface.d.ts +110 -0
- package/option-types/navigator/hint.interface.d.ts +28 -0
- package/option-types/navigator/select.interface.d.ts +25 -0
- package/option-types/navigator.interface.d.ts +39 -0
- package/option-types/pane/title.interface.d.ts +63 -0
- package/option-types/pane-defaults/title.interface.d.ts +59 -0
- package/option-types/pane-defaults.interface.d.ts +46 -0
- package/option-types/pane.interface.d.ts +46 -0
- package/option-types/plot-area.interface.d.ts +33 -0
- package/option-types/series-defaults/labels.from.interface.d.ts +58 -0
- package/option-types/series-defaults/labels.interface.d.ts +80 -0
- package/option-types/series-defaults/labels.to.interface.d.ts +58 -0
- package/option-types/series-defaults/notes.icon.interface.d.ts +39 -0
- package/option-types/series-defaults/notes.interface.d.ts +43 -0
- package/option-types/series-defaults/notes.label.interface.d.ts +53 -0
- package/option-types/series-defaults/tooltip.interface.d.ts +48 -0
- package/option-types/series-defaults.interface.d.ts +103 -0
- package/option-types/series-item/error-bars.interface.d.ts +62 -0
- package/option-types/series-item/extremes.interface.d.ts +39 -0
- package/option-types/series-item/highlight.interface.d.ts +70 -0
- package/option-types/series-item/labels.from.interface.d.ts +74 -0
- package/option-types/series-item/labels.interface.d.ts +103 -0
- package/option-types/series-item/labels.to.interface.d.ts +72 -0
- package/option-types/series-item/markers.interface.d.ts +68 -0
- package/option-types/series-item/notes.icon.interface.d.ts +39 -0
- package/option-types/series-item/notes.interface.d.ts +53 -0
- package/option-types/series-item/notes.label.interface.d.ts +53 -0
- package/option-types/series-item/outliers.interface.d.ts +39 -0
- package/option-types/series-item/tooltip.interface.d.ts +49 -0
- package/option-types/series-item/trendline.interface.d.ts +37 -0
- package/option-types/series-item.interface.d.ts +481 -0
- package/option-types/title.interface.d.ts +62 -0
- package/option-types/tooltip-border.interface.d.ts +22 -0
- package/option-types/tooltip.interface.d.ts +56 -0
- package/option-types/value-axis-item/crosshair.interface.d.ts +33 -0
- package/option-types/value-axis-item/crosshair.tooltip.interface.d.ts +13 -0
- package/option-types/value-axis-item/labels.interface.d.ts +88 -0
- package/option-types/value-axis-item/notes.icon.interface.d.ts +39 -0
- package/option-types/value-axis-item/notes.interface.d.ts +52 -0
- package/option-types/value-axis-item/notes.label.interface.d.ts +53 -0
- package/option-types/value-axis-item/title.interface.d.ts +73 -0
- package/option-types/value-axis-item.interface.d.ts +121 -0
- package/option-types/x-axis-item/crosshair.interface.d.ts +33 -0
- package/option-types/x-axis-item/crosshair.tooltip.interface.d.ts +13 -0
- package/option-types/x-axis-item/labels.interface.d.ts +95 -0
- package/option-types/x-axis-item/notes.icon.interface.d.ts +39 -0
- package/option-types/x-axis-item/notes.interface.d.ts +53 -0
- package/option-types/x-axis-item/notes.label.interface.d.ts +53 -0
- package/option-types/x-axis-item/title.interface.d.ts +72 -0
- package/option-types/x-axis-item.interface.d.ts +142 -0
- package/option-types/y-axis-item/crosshair.interface.d.ts +33 -0
- package/option-types/y-axis-item/crosshair.tooltip.interface.d.ts +13 -0
- package/option-types/y-axis-item/labels.interface.d.ts +95 -0
- package/option-types/y-axis-item/notes.icon.interface.d.ts +39 -0
- package/option-types/y-axis-item/notes.interface.d.ts +52 -0
- package/option-types/y-axis-item/notes.label.interface.d.ts +53 -0
- package/option-types/y-axis-item/title.interface.d.ts +73 -0
- package/option-types/y-axis-item.interface.d.ts +138 -0
- package/option-types/zoomable.interface.d.ts +21 -0
- package/package-metadata.d.ts +12 -0
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +14 -8
- package/sankey/Sankey.d.ts +98 -0
- package/sankey/index.d.ts +12 -0
- package/sankey/messages.d.ts +17 -0
- package/sankey/tooltip.d.ts +53 -0
- package/sankey/tooltip.mjs +1 -1
- package/sankey/types.d.ts +188 -0
- package/sankey/utils.d.ts +12 -0
- package/store/reducer.d.ts +21 -0
- package/store/store.d.ts +33 -0
- package/theming/theme-service.d.ts +10 -0
- package/tooltip/Context.d.ts +18 -0
- package/tooltip/Crosshair.d.ts +36 -0
- package/tooltip/CrosshairContainer.d.ts +31 -0
- package/tooltip/Point.d.ts +75 -0
- package/tooltip/Popup.d.ts +58 -0
- package/tooltip/Series.d.ts +28 -0
- package/tooltip/SharedTooltipContent.d.ts +47 -0
- package/tooltip/index.d.ts +10 -0
- package/utils/main.d.ts +24 -0
package/store/store.d.ts
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
export declare const THROTTLE_MS: number;
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
export interface StoreAction {
|
|
16
|
+
chartKey?: string;
|
|
17
|
+
chartCollectionIdxKey?: string;
|
|
18
|
+
type?: string;
|
|
19
|
+
payload: any;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* @hidden
|
|
23
|
+
*/
|
|
24
|
+
export interface Store {
|
|
25
|
+
getState(): any;
|
|
26
|
+
dispatch(action: StoreAction | object): void;
|
|
27
|
+
subscribe(f: Function): Function;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* @hidden
|
|
31
|
+
*/
|
|
32
|
+
declare const createStore: (reducer: any) => Store;
|
|
33
|
+
export default createStore;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { Store } from './../store/store';
|
|
9
|
+
declare const loadTheme: (store: Store, done: any, element: HTMLElement) => void;
|
|
10
|
+
export { loadTheme };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { TooltipPoint } from './Point';
|
|
9
|
+
export interface SharedTooltipContext {
|
|
10
|
+
categoryText?: string;
|
|
11
|
+
colorMarker?: boolean;
|
|
12
|
+
colspan: number;
|
|
13
|
+
nameColumn?: boolean;
|
|
14
|
+
points: Array<TooltipPoint>;
|
|
15
|
+
}
|
|
16
|
+
export interface TooltipContext {
|
|
17
|
+
point: TooltipPoint;
|
|
18
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { PropType } from 'vue';
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export interface CrosshairTooltipProps {
|
|
13
|
+
index: number;
|
|
14
|
+
name: string;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @hidden
|
|
18
|
+
*/
|
|
19
|
+
declare const CrosshairTooltip: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
20
|
+
index: PropType<number>;
|
|
21
|
+
name: PropType<string>;
|
|
22
|
+
}>, {}, {
|
|
23
|
+
popupShown: boolean;
|
|
24
|
+
popupAlign: any;
|
|
25
|
+
popupOffset: any;
|
|
26
|
+
popupContent: any;
|
|
27
|
+
popupStyles: any;
|
|
28
|
+
className: any;
|
|
29
|
+
}, {}, {
|
|
30
|
+
onShowTooltip(e: any): void;
|
|
31
|
+
onHideTooltip(): void;
|
|
32
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
33
|
+
index: PropType<number>;
|
|
34
|
+
name: PropType<string>;
|
|
35
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
36
|
+
export { CrosshairTooltip };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { CrosshairTooltipProps } from './Crosshair';
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export interface Tooltips {
|
|
13
|
+
[key: string]: CrosshairTooltipProps;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* @hidden
|
|
17
|
+
*/
|
|
18
|
+
export interface CrosshairContainerProps {
|
|
19
|
+
options: any;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* @hidden
|
|
23
|
+
*/
|
|
24
|
+
declare const CrosshairContainer: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
25
|
+
optionsState: ObjectConstructor;
|
|
26
|
+
}>, {}, {}, {
|
|
27
|
+
tooltips(): Tooltips;
|
|
28
|
+
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
29
|
+
optionsState: ObjectConstructor;
|
|
30
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
31
|
+
export { CrosshairContainer };
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* The point that is passed to the tooltip component.
|
|
10
|
+
*/
|
|
11
|
+
export declare class TooltipPoint {
|
|
12
|
+
/**
|
|
13
|
+
* The point value.
|
|
14
|
+
*/
|
|
15
|
+
value: any;
|
|
16
|
+
/**
|
|
17
|
+
* The point category. Available only for the Categorical series.
|
|
18
|
+
*/
|
|
19
|
+
category: string | Date | number;
|
|
20
|
+
/**
|
|
21
|
+
* The point category index. Available only for the Categorical series.
|
|
22
|
+
*/
|
|
23
|
+
categoryIndex: number;
|
|
24
|
+
/**
|
|
25
|
+
* The point series options.
|
|
26
|
+
*/
|
|
27
|
+
series: any;
|
|
28
|
+
/**
|
|
29
|
+
* The point `dataItem`.
|
|
30
|
+
*/
|
|
31
|
+
dataItem: any;
|
|
32
|
+
/**
|
|
33
|
+
* The point value represented as a percentage value. Available only for the Donut, Pie, and 100% Stacked charts.
|
|
34
|
+
*/
|
|
35
|
+
percentage: number;
|
|
36
|
+
/**
|
|
37
|
+
* The sum of point values since the last `"runningTotal"` summary point. Available for the Waterfall series.
|
|
38
|
+
*/
|
|
39
|
+
runningTotal: number;
|
|
40
|
+
/**
|
|
41
|
+
* The sum of all previous series values. Available for the Waterfall series.
|
|
42
|
+
*/
|
|
43
|
+
total: number;
|
|
44
|
+
/**
|
|
45
|
+
* The low value of the point error bar. Available for the Categorical series with error bars.
|
|
46
|
+
*/
|
|
47
|
+
low: number;
|
|
48
|
+
/**
|
|
49
|
+
* The high value of the point error bar. Available for the Categorical series with error bars.
|
|
50
|
+
*/
|
|
51
|
+
high: number;
|
|
52
|
+
/**
|
|
53
|
+
* The x low value of the point error bar. Available for the Scatter series with error bars.
|
|
54
|
+
*/
|
|
55
|
+
xLow: number;
|
|
56
|
+
/**
|
|
57
|
+
* The x high value of the point error bar. Available for the Scatter series with error bars.
|
|
58
|
+
*/
|
|
59
|
+
xHigh: number;
|
|
60
|
+
/**
|
|
61
|
+
* The y low value of the point error bar. Available for the Scatter series with error bars.
|
|
62
|
+
*/
|
|
63
|
+
yLow: number;
|
|
64
|
+
/**
|
|
65
|
+
* The y low value of the point error bar. Available for the Scatter series with error bars.
|
|
66
|
+
*/
|
|
67
|
+
yHigh: number;
|
|
68
|
+
private point;
|
|
69
|
+
private format?;
|
|
70
|
+
/**
|
|
71
|
+
* @hidden
|
|
72
|
+
*/
|
|
73
|
+
constructor(point: any, format?: string);
|
|
74
|
+
get formattedValue(): string;
|
|
75
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { Align, Offset } from '@progress/kendo-vue-popup';
|
|
9
|
+
import { PropType } from 'vue';
|
|
10
|
+
/**
|
|
11
|
+
* @hidden
|
|
12
|
+
*/
|
|
13
|
+
export interface TooltipPopupProps {
|
|
14
|
+
className?: string | undefined;
|
|
15
|
+
popupShown: boolean;
|
|
16
|
+
popupAlign?: Align;
|
|
17
|
+
popupOffset?: Offset;
|
|
18
|
+
popupStyles?: any;
|
|
19
|
+
popupContent: Function;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* @hidden
|
|
23
|
+
*/
|
|
24
|
+
declare const TooltipPopup: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
25
|
+
className: PropType<string>;
|
|
26
|
+
popupShown: PropType<boolean>;
|
|
27
|
+
popupAlign: {
|
|
28
|
+
type: PropType<Align>;
|
|
29
|
+
default: () => any;
|
|
30
|
+
};
|
|
31
|
+
popupOffset: {
|
|
32
|
+
type: PropType<Offset>;
|
|
33
|
+
};
|
|
34
|
+
popupStyles: {
|
|
35
|
+
type: PropType<any>;
|
|
36
|
+
};
|
|
37
|
+
popupContent: PropType<Function>;
|
|
38
|
+
}>, {}, {}, {}, {
|
|
39
|
+
onChartMouseLeave(e: any): boolean;
|
|
40
|
+
onMouseLeave(_e: any): void;
|
|
41
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
42
|
+
className: PropType<string>;
|
|
43
|
+
popupShown: PropType<boolean>;
|
|
44
|
+
popupAlign: {
|
|
45
|
+
type: PropType<Align>;
|
|
46
|
+
default: () => any;
|
|
47
|
+
};
|
|
48
|
+
popupOffset: {
|
|
49
|
+
type: PropType<Offset>;
|
|
50
|
+
};
|
|
51
|
+
popupStyles: {
|
|
52
|
+
type: PropType<any>;
|
|
53
|
+
};
|
|
54
|
+
popupContent: PropType<Function>;
|
|
55
|
+
}>> & Readonly<{}>, {
|
|
56
|
+
popupAlign: Align;
|
|
57
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
58
|
+
export { TooltipPopup };
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { SharedTooltipContext, TooltipContext } from './Context';
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
declare const SeriesTooltip: import('vue').DefineComponent<{}, {}, {
|
|
13
|
+
popupShown: boolean;
|
|
14
|
+
popupAlign: any;
|
|
15
|
+
popupOffset: any;
|
|
16
|
+
popupContext: {};
|
|
17
|
+
popupStyles: any;
|
|
18
|
+
className: any;
|
|
19
|
+
shared: any;
|
|
20
|
+
}, {}, {
|
|
21
|
+
onShowTooltip(e: any): void;
|
|
22
|
+
onHideTooltip(): void;
|
|
23
|
+
createSharedTooltipContext(e: any): SharedTooltipContext;
|
|
24
|
+
createTooltipContext(e: any): TooltipContext;
|
|
25
|
+
findRenderFunctionByIndex(seriesIdx: number): any;
|
|
26
|
+
findRenderFunction(): any;
|
|
27
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
28
|
+
export { SeriesTooltip };
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { PropType } from 'vue';
|
|
9
|
+
import { SharedTooltipContext } from './Context';
|
|
10
|
+
import { TooltipPoint } from './Point';
|
|
11
|
+
/**
|
|
12
|
+
* @hidden
|
|
13
|
+
*/
|
|
14
|
+
export interface SharedTooltipProps extends SharedTooltipContext {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @hidden
|
|
18
|
+
*/
|
|
19
|
+
declare const SharedTooltipContent: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
20
|
+
categoryText: PropType<string>;
|
|
21
|
+
colorMarker: {
|
|
22
|
+
type: PropType<boolean>;
|
|
23
|
+
default: any;
|
|
24
|
+
};
|
|
25
|
+
colspan: PropType<number>;
|
|
26
|
+
nameColumn: {
|
|
27
|
+
type: PropType<boolean>;
|
|
28
|
+
default: any;
|
|
29
|
+
};
|
|
30
|
+
points: PropType<TooltipPoint[]>;
|
|
31
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
32
|
+
categoryText: PropType<string>;
|
|
33
|
+
colorMarker: {
|
|
34
|
+
type: PropType<boolean>;
|
|
35
|
+
default: any;
|
|
36
|
+
};
|
|
37
|
+
colspan: PropType<number>;
|
|
38
|
+
nameColumn: {
|
|
39
|
+
type: PropType<boolean>;
|
|
40
|
+
default: any;
|
|
41
|
+
};
|
|
42
|
+
points: PropType<TooltipPoint[]>;
|
|
43
|
+
}>> & Readonly<{}>, {
|
|
44
|
+
colorMarker: boolean;
|
|
45
|
+
nameColumn: boolean;
|
|
46
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
47
|
+
export { SharedTooltipContent };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { TooltipPoint } from './Point';
|
|
9
|
+
import { TooltipContext, SharedTooltipContext } from './Context';
|
|
10
|
+
export { TooltipPoint, type TooltipContext, type SharedTooltipContext };
|
package/utils/main.d.ts
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
declare function hasParent(element: any, parent: any): boolean;
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
declare function removeUndefinedProps(obj: any): any;
|
|
16
|
+
/**
|
|
17
|
+
* @hidden
|
|
18
|
+
*/
|
|
19
|
+
declare function validateChildren<P>(props: P, propName: string, componentName: string, childType: any): Error;
|
|
20
|
+
/**
|
|
21
|
+
* @hidden
|
|
22
|
+
*/
|
|
23
|
+
declare const toggle: (flag: any) => boolean;
|
|
24
|
+
export { hasParent, validateChildren, toggle, removeUndefinedProps };
|