@progress/kendo-angular-charts 17.1.0 → 17.1.1-develop.10
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/esm2022/option-types/axis-crosshair-tooltip.interface.mjs +5 -0
- package/esm2022/option-types/tooltip-border.interface.mjs +5 -0
- package/esm2022/package-metadata.mjs +2 -2
- package/fesm2022/progress-kendo-angular-charts.mjs +2 -2
- package/option-types/axis-crosshair-tooltip.interface.d.ts +41 -0
- package/option-types/axis-defaults/crosshair.tooltip.interface.d.ts +2 -32
- package/option-types/category-axis-item/crosshair.tooltip.interface.d.ts +2 -32
- package/option-types/tooltip-border.interface.d.ts +15 -0
- package/option-types/tooltip.interface.d.ts +3 -2
- package/option-types/value-axis-item/crosshair.tooltip.interface.d.ts +2 -32
- package/option-types/x-axis-item/crosshair.tooltip.interface.d.ts +2 -32
- package/option-types/y-axis-item/crosshair.tooltip.interface.d.ts +2 -32
- package/package.json +8 -8
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
export {};
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-charts',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '17.1.
|
|
12
|
+
publishDate: 1733730419,
|
|
13
|
+
version: '17.1.1-develop.10',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -2908,8 +2908,8 @@ const packageMetadata = {
|
|
|
2908
2908
|
name: '@progress/kendo-angular-charts',
|
|
2909
2909
|
productName: 'Kendo UI for Angular',
|
|
2910
2910
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
2911
|
-
publishDate:
|
|
2912
|
-
version: '17.1.
|
|
2911
|
+
publishDate: 1733730419,
|
|
2912
|
+
version: '17.1.1-develop.10',
|
|
2913
2913
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
2914
2914
|
};
|
|
2915
2915
|
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { Padding } from '../common/property-types';
|
|
6
|
+
import { TooltipBorder } from './tooltip-border.interface';
|
|
7
|
+
/**
|
|
8
|
+
* @hidden
|
|
9
|
+
*/
|
|
10
|
+
export interface AxisCrosshairTooltip {
|
|
11
|
+
/**
|
|
12
|
+
* The background color of the tooltip. Accepts a valid CSS color string, including HEX and RGB.
|
|
13
|
+
*/
|
|
14
|
+
background?: string;
|
|
15
|
+
/**
|
|
16
|
+
* The border options of the tooltip.
|
|
17
|
+
*/
|
|
18
|
+
border?: TooltipBorder;
|
|
19
|
+
/**
|
|
20
|
+
* The text color of the tooltip. Accepts a valid CSS color string, including HEX and RGB.
|
|
21
|
+
*/
|
|
22
|
+
color?: string;
|
|
23
|
+
/**
|
|
24
|
+
* The font of the tooltip.
|
|
25
|
+
*/
|
|
26
|
+
font?: string;
|
|
27
|
+
/**
|
|
28
|
+
* The format for displaying the tooltip. Uses the [`format`](slug:api_intl_intlservice#toc-format) method of `IntlService`.
|
|
29
|
+
* Contains one placeholder (`"{0}"`) which represents the value.
|
|
30
|
+
*/
|
|
31
|
+
format?: string;
|
|
32
|
+
/**
|
|
33
|
+
* The padding of the crosshair tooltip. A numeric value sets all paddings.
|
|
34
|
+
*/
|
|
35
|
+
padding?: Padding | number;
|
|
36
|
+
/**
|
|
37
|
+
* If set to `true`, the Chart displays the axis crosshair tooltip.
|
|
38
|
+
* By default, the axis crosshair tooltip is not visible.
|
|
39
|
+
*/
|
|
40
|
+
visible?: boolean;
|
|
41
|
+
}
|
|
@@ -2,39 +2,9 @@
|
|
|
2
2
|
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import {
|
|
5
|
+
import { AxisCrosshairTooltip } from '../axis-crosshair-tooltip.interface';
|
|
6
6
|
/**
|
|
7
7
|
* The configuration options of the axis crosshair tooltip.
|
|
8
8
|
*/
|
|
9
|
-
export interface AxisDefaultsCrosshairTooltip {
|
|
10
|
-
/**
|
|
11
|
-
* The background color of the tooltip. Accepts a valid CSS color string, including hex and rgb.
|
|
12
|
-
*/
|
|
13
|
-
background?: string;
|
|
14
|
-
/**
|
|
15
|
-
* The border options.
|
|
16
|
-
*/
|
|
17
|
-
border?: Border;
|
|
18
|
-
/**
|
|
19
|
-
* The text color of the tooltip. Accepts a valid CSS color string, including hex and rgb.
|
|
20
|
-
*/
|
|
21
|
-
color?: string;
|
|
22
|
-
/**
|
|
23
|
-
* The tooltip font.
|
|
24
|
-
*/
|
|
25
|
-
font?: string;
|
|
26
|
-
/**
|
|
27
|
-
* The format for displaying the tooltip. Uses the [`format`](slug:api_intl_intlservice#toc-format) method of `IntlService`.
|
|
28
|
-
* Contains one placeholder (`"{0}"`) which represents the category value.
|
|
29
|
-
*/
|
|
30
|
-
format?: string;
|
|
31
|
-
/**
|
|
32
|
-
* The padding of the crosshair tooltip. A numeric value sets all paddings.
|
|
33
|
-
*/
|
|
34
|
-
padding?: Padding | number;
|
|
35
|
-
/**
|
|
36
|
-
* If set to `true`, the Chart displays the axis crosshair tooltip.
|
|
37
|
-
* By default, the axis crosshair tooltip is not visible.
|
|
38
|
-
*/
|
|
39
|
-
visible?: boolean;
|
|
9
|
+
export interface AxisDefaultsCrosshairTooltip extends AxisCrosshairTooltip {
|
|
40
10
|
}
|
|
@@ -2,39 +2,9 @@
|
|
|
2
2
|
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import {
|
|
5
|
+
import { AxisCrosshairTooltip } from '../axis-crosshair-tooltip.interface';
|
|
6
6
|
/**
|
|
7
7
|
* The configuration options of the category axis crosshair tooltip.
|
|
8
8
|
*/
|
|
9
|
-
export interface CategoryAxisCrosshairTooltip {
|
|
10
|
-
/**
|
|
11
|
-
* The background color of the tooltip. Accepts a valid CSS color string, including hex and rgb.
|
|
12
|
-
*/
|
|
13
|
-
background?: string;
|
|
14
|
-
/**
|
|
15
|
-
* The border options.
|
|
16
|
-
*/
|
|
17
|
-
border?: Border;
|
|
18
|
-
/**
|
|
19
|
-
* The text color of the tooltip. Accepts a valid CSS color string, including hex and rgb.
|
|
20
|
-
*/
|
|
21
|
-
color?: string;
|
|
22
|
-
/**
|
|
23
|
-
* The tooltip font.
|
|
24
|
-
*/
|
|
25
|
-
font?: string;
|
|
26
|
-
/**
|
|
27
|
-
* The format used to display the tooltip. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of IntlService.
|
|
28
|
-
* Contains one placeholder (`"{0}"`) which represents the category value.
|
|
29
|
-
*/
|
|
30
|
-
format?: string;
|
|
31
|
-
/**
|
|
32
|
-
* The padding of the crosshair tooltip. A numeric value sets all paddings.
|
|
33
|
-
*/
|
|
34
|
-
padding?: Padding | number;
|
|
35
|
-
/**
|
|
36
|
-
* If set to `true`, the Chart displays the category axis crosshair tooltip.
|
|
37
|
-
* By default, the category axis crosshair tooltip is not visible.
|
|
38
|
-
*/
|
|
39
|
-
visible?: boolean;
|
|
9
|
+
export interface CategoryAxisCrosshairTooltip extends AxisCrosshairTooltip {
|
|
40
10
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { Border, DashType } from '../common/property-types';
|
|
6
|
+
/**
|
|
7
|
+
* The border options of the tooltip.
|
|
8
|
+
*/
|
|
9
|
+
export interface TooltipBorder extends Omit<Border, 'dashType'> {
|
|
10
|
+
/**
|
|
11
|
+
* @hidden
|
|
12
|
+
* @deprecated The setting is ignored. Use the `border-style` CSS property instead.
|
|
13
|
+
*/
|
|
14
|
+
dashType?: DashType;
|
|
15
|
+
}
|
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import {
|
|
5
|
+
import { Padding } from '../common/property-types';
|
|
6
|
+
import { TooltipBorder } from './tooltip-border.interface';
|
|
6
7
|
/**
|
|
7
8
|
* The configuration options of the tooltip.
|
|
8
9
|
*/
|
|
@@ -14,7 +15,7 @@ export interface Tooltip {
|
|
|
14
15
|
/**
|
|
15
16
|
* The border configuration options.
|
|
16
17
|
*/
|
|
17
|
-
border?:
|
|
18
|
+
border?: TooltipBorder;
|
|
18
19
|
/**
|
|
19
20
|
* The text color of the tooltip. Accepts a valid CSS color string, including HEX and RGB.
|
|
20
21
|
*/
|
|
@@ -2,39 +2,9 @@
|
|
|
2
2
|
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import {
|
|
5
|
+
import { AxisCrosshairTooltip } from "../axis-crosshair-tooltip.interface";
|
|
6
6
|
/**
|
|
7
7
|
* The configuration options of the value axis crosshair tooltip.
|
|
8
8
|
*/
|
|
9
|
-
export interface ValueAxisCrosshairTooltip {
|
|
10
|
-
/**
|
|
11
|
-
* The background color of the tooltip. Accepts a valid CSS color string, including HEX and RGB.
|
|
12
|
-
*/
|
|
13
|
-
background?: string;
|
|
14
|
-
/**
|
|
15
|
-
* The border options of the tooltip.
|
|
16
|
-
*/
|
|
17
|
-
border?: Border;
|
|
18
|
-
/**
|
|
19
|
-
* The text color of the tooltip. Accepts a valid CSS color string, including hex and rgb.
|
|
20
|
-
*/
|
|
21
|
-
color?: string;
|
|
22
|
-
/**
|
|
23
|
-
* The font of the tooltip.
|
|
24
|
-
*/
|
|
25
|
-
font?: string;
|
|
26
|
-
/**
|
|
27
|
-
* The format for displaying the tooltip. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of IntlService.
|
|
28
|
-
* Contains one placeholder (`"{0}"`) which represents the value.
|
|
29
|
-
*/
|
|
30
|
-
format?: string;
|
|
31
|
-
/**
|
|
32
|
-
* The padding of the crosshair tooltip. A numeric value sets all paddings.
|
|
33
|
-
*/
|
|
34
|
-
padding?: Padding | number;
|
|
35
|
-
/**
|
|
36
|
-
* If set to `true`, the chart displays the value axis crosshair tooltip.
|
|
37
|
-
* By default, the value axis crosshair tooltip is not visible.
|
|
38
|
-
*/
|
|
39
|
-
visible?: boolean;
|
|
9
|
+
export interface ValueAxisCrosshairTooltip extends AxisCrosshairTooltip {
|
|
40
10
|
}
|
|
@@ -2,39 +2,9 @@
|
|
|
2
2
|
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import {
|
|
5
|
+
import { AxisCrosshairTooltip } from "../axis-crosshair-tooltip.interface";
|
|
6
6
|
/**
|
|
7
7
|
* The configuration options of the X-axis crosshair tooltip.
|
|
8
8
|
*/
|
|
9
|
-
export interface XAxisCrosshairTooltip {
|
|
10
|
-
/**
|
|
11
|
-
* The background color of the tooltip. Accepts a valid CSS color string, including HEX and RGB.
|
|
12
|
-
*/
|
|
13
|
-
background?: string;
|
|
14
|
-
/**
|
|
15
|
-
* The border options of the tooltip.
|
|
16
|
-
*/
|
|
17
|
-
border?: Border;
|
|
18
|
-
/**
|
|
19
|
-
* The text color of the tooltip. Accepts a valid CSS color string, including HEX and RGB.
|
|
20
|
-
*/
|
|
21
|
-
color?: string;
|
|
22
|
-
/**
|
|
23
|
-
* The font of the tooltip.
|
|
24
|
-
*/
|
|
25
|
-
font?: string;
|
|
26
|
-
/**
|
|
27
|
-
* The format for displaying the tooltip. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of IntlService.
|
|
28
|
-
* Contains one placeholder (`"{0}"`) which represents the value.
|
|
29
|
-
*/
|
|
30
|
-
format?: string;
|
|
31
|
-
/**
|
|
32
|
-
* The padding of the crosshair tooltip. A numeric value sets all paddings.
|
|
33
|
-
*/
|
|
34
|
-
padding?: Padding | number;
|
|
35
|
-
/**
|
|
36
|
-
* If set to `true`, the Chart displays the crosshair tooltip of the Scatter chart X axis.
|
|
37
|
-
* By default, the crosshair tooltip of the Scatter chart X axis is not visible.
|
|
38
|
-
*/
|
|
39
|
-
visible?: boolean;
|
|
9
|
+
export interface XAxisCrosshairTooltip extends AxisCrosshairTooltip {
|
|
40
10
|
}
|
|
@@ -2,39 +2,9 @@
|
|
|
2
2
|
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import {
|
|
5
|
+
import { AxisCrosshairTooltip } from "../axis-crosshair-tooltip.interface";
|
|
6
6
|
/**
|
|
7
7
|
* The configuration options of the Y-axis crosshair tooltip.
|
|
8
8
|
*/
|
|
9
|
-
export interface YAxisCrosshairTooltip {
|
|
10
|
-
/**
|
|
11
|
-
* The background color of the tooltip. Accepts a valid CSS color string, including HEX and RGB.
|
|
12
|
-
*/
|
|
13
|
-
background?: string;
|
|
14
|
-
/**
|
|
15
|
-
* The border options of the tooltip.
|
|
16
|
-
*/
|
|
17
|
-
border?: Border;
|
|
18
|
-
/**
|
|
19
|
-
* The text color of the tooltip. Accepts a valid CSS color string, including HEX and RGB.
|
|
20
|
-
*/
|
|
21
|
-
color?: string;
|
|
22
|
-
/**
|
|
23
|
-
* The font of the tooltip.
|
|
24
|
-
*/
|
|
25
|
-
font?: string;
|
|
26
|
-
/**
|
|
27
|
-
* The format for displaying the tooltip. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of IntlService.
|
|
28
|
-
* Contains one placeholder (`"{0}"`) which represents the value.
|
|
29
|
-
*/
|
|
30
|
-
format?: string;
|
|
31
|
-
/**
|
|
32
|
-
* The padding of the crosshair tooltip. A numeric value sets all paddings.
|
|
33
|
-
*/
|
|
34
|
-
padding?: Padding | number;
|
|
35
|
-
/**
|
|
36
|
-
* If set to `true`, the Chart displays the crosshair tooltip of the Scatter chart Y axis.
|
|
37
|
-
* By default, the crosshair tooltip of the Scatter chart Y axis is not visible.
|
|
38
|
-
*/
|
|
39
|
-
visible?: boolean;
|
|
9
|
+
export interface YAxisCrosshairTooltip extends AxisCrosshairTooltip {
|
|
40
10
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-charts",
|
|
3
|
-
"version": "17.1.
|
|
3
|
+
"version": "17.1.1-develop.10",
|
|
4
4
|
"description": "Kendo UI Charts for Angular - A comprehensive package for creating beautiful and interactive data visualization. Every chart type, stock charts, and sparklines are included.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -47,17 +47,17 @@
|
|
|
47
47
|
"@angular/platform-browser": "16 - 19",
|
|
48
48
|
"@progress/kendo-drawing": "^1.21.0",
|
|
49
49
|
"@progress/kendo-licensing": "^1.0.2",
|
|
50
|
-
"@progress/kendo-angular-common": "17.1.
|
|
51
|
-
"@progress/kendo-angular-intl": "17.1.
|
|
52
|
-
"@progress/kendo-angular-icons": "17.1.
|
|
53
|
-
"@progress/kendo-angular-l10n": "17.1.
|
|
54
|
-
"@progress/kendo-angular-popup": "17.1.
|
|
55
|
-
"@progress/kendo-angular-navigation": "17.1.
|
|
50
|
+
"@progress/kendo-angular-common": "17.1.1-develop.10",
|
|
51
|
+
"@progress/kendo-angular-intl": "17.1.1-develop.10",
|
|
52
|
+
"@progress/kendo-angular-icons": "17.1.1-develop.10",
|
|
53
|
+
"@progress/kendo-angular-l10n": "17.1.1-develop.10",
|
|
54
|
+
"@progress/kendo-angular-popup": "17.1.1-develop.10",
|
|
55
|
+
"@progress/kendo-angular-navigation": "17.1.1-develop.10",
|
|
56
56
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"tslib": "^2.3.1",
|
|
60
|
-
"@progress/kendo-angular-schematics": "17.1.
|
|
60
|
+
"@progress/kendo-angular-schematics": "17.1.1-develop.10",
|
|
61
61
|
"@progress/kendo-charts": "2.6.2",
|
|
62
62
|
"@progress/kendo-svg-icons": "^4.0.0"
|
|
63
63
|
},
|