@progress/kendo-angular-charts 13.0.0-develop.8 → 13.0.0
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/chart.component.d.ts
CHANGED
|
@@ -141,7 +141,7 @@ export declare class ChartComponent implements ChartOptions, OnChanges, OnInit,
|
|
|
141
141
|
*/
|
|
142
142
|
dragStart: EventEmitter<DragStartEvent>;
|
|
143
143
|
/**
|
|
144
|
-
* Fires when the user hovers over a legend item ([see example](slug:
|
|
144
|
+
* Fires when the user hovers over a legend item ([see example](slug:events_chart)).
|
|
145
145
|
*/
|
|
146
146
|
legendItemHover: EventEmitter<LegendItemHoverEvent>;
|
|
147
147
|
/**
|
|
@@ -169,13 +169,13 @@ export declare class ChartComponent implements ChartOptions, OnChanges, OnInit,
|
|
|
169
169
|
*/
|
|
170
170
|
paneRender: EventEmitter<PaneRenderEvent>;
|
|
171
171
|
/**
|
|
172
|
-
* Fires when the user clicks the plot area ([see example](slug:
|
|
172
|
+
* Fires when the user clicks the plot area ([see example](slug:events_chart)).
|
|
173
173
|
* The `click` event is triggered by the `tap` and `contextmenu` events.
|
|
174
174
|
* To distinguish between the original events, inspect the `e.originalEvent.type` field.
|
|
175
175
|
*/
|
|
176
176
|
plotAreaClick: EventEmitter<PlotAreaClickEvent>;
|
|
177
177
|
/**
|
|
178
|
-
* Fires when the user hovers the plot area ([see example](slug:
|
|
178
|
+
* Fires when the user hovers the plot area ([see example](slug:events_chart)).
|
|
179
179
|
*/
|
|
180
180
|
plotAreaHover: EventEmitter<PlotAreaHoverEvent>;
|
|
181
181
|
/**
|
|
@@ -183,7 +183,7 @@ export declare class ChartComponent implements ChartOptions, OnChanges, OnInit,
|
|
|
183
183
|
*/
|
|
184
184
|
plotAreaLeave: EventEmitter<PlotAreaLeaveEvent>;
|
|
185
185
|
/**
|
|
186
|
-
* Fires when the Chart is ready to render on screen ([see example](slug:
|
|
186
|
+
* Fires when the Chart is ready to render on screen ([see example](slug:events_chart)).
|
|
187
187
|
* For example, you can use it to remove loading indicators.
|
|
188
188
|
* Any changes made to the options are ignored.
|
|
189
189
|
*/
|
|
@@ -215,7 +215,7 @@ export declare class ChartComponent implements ChartOptions, OnChanges, OnInit,
|
|
|
215
215
|
/**
|
|
216
216
|
* Fires when the user clicks the Chart series.
|
|
217
217
|
*
|
|
218
|
-
* The `click` event will be triggered by the `tap` and `contextmenu` events ([see example](slug:
|
|
218
|
+
* The `click` event will be triggered by the `tap` and `contextmenu` events ([see example](slug:events_chart)).
|
|
219
219
|
* To distinguish between the original events, inspect the `e.originalEvent.type` field.
|
|
220
220
|
*/
|
|
221
221
|
seriesClick: EventEmitter<SeriesClickEvent>;
|
|
@@ -224,7 +224,7 @@ export declare class ChartComponent implements ChartOptions, OnChanges, OnInit,
|
|
|
224
224
|
*/
|
|
225
225
|
drilldown: EventEmitter<DrilldownEvent>;
|
|
226
226
|
/**
|
|
227
|
-
* Fires when the user hovers the Chart series ([see example](slug:
|
|
227
|
+
* Fires when the user hovers the Chart series ([see example](slug:events_chart)).
|
|
228
228
|
*/
|
|
229
229
|
seriesHover: EventEmitter<SeriesHoverEvent>;
|
|
230
230
|
/**
|
|
@@ -111,7 +111,7 @@ export class ChartComponent {
|
|
|
111
111
|
*/
|
|
112
112
|
this.dragStart = new EventEmitter();
|
|
113
113
|
/**
|
|
114
|
-
* Fires when the user hovers over a legend item ([see example](slug:
|
|
114
|
+
* Fires when the user hovers over a legend item ([see example](slug:events_chart)).
|
|
115
115
|
*/
|
|
116
116
|
this.legendItemHover = new EventEmitter();
|
|
117
117
|
/**
|
|
@@ -139,13 +139,13 @@ export class ChartComponent {
|
|
|
139
139
|
*/
|
|
140
140
|
this.paneRender = new EventEmitter();
|
|
141
141
|
/**
|
|
142
|
-
* Fires when the user clicks the plot area ([see example](slug:
|
|
142
|
+
* Fires when the user clicks the plot area ([see example](slug:events_chart)).
|
|
143
143
|
* The `click` event is triggered by the `tap` and `contextmenu` events.
|
|
144
144
|
* To distinguish between the original events, inspect the `e.originalEvent.type` field.
|
|
145
145
|
*/
|
|
146
146
|
this.plotAreaClick = new EventEmitter();
|
|
147
147
|
/**
|
|
148
|
-
* Fires when the user hovers the plot area ([see example](slug:
|
|
148
|
+
* Fires when the user hovers the plot area ([see example](slug:events_chart)).
|
|
149
149
|
*/
|
|
150
150
|
this.plotAreaHover = new EventEmitter();
|
|
151
151
|
/**
|
|
@@ -153,7 +153,7 @@ export class ChartComponent {
|
|
|
153
153
|
*/
|
|
154
154
|
this.plotAreaLeave = new EventEmitter();
|
|
155
155
|
/**
|
|
156
|
-
* Fires when the Chart is ready to render on screen ([see example](slug:
|
|
156
|
+
* Fires when the Chart is ready to render on screen ([see example](slug:events_chart)).
|
|
157
157
|
* For example, you can use it to remove loading indicators.
|
|
158
158
|
* Any changes made to the options are ignored.
|
|
159
159
|
*/
|
|
@@ -185,7 +185,7 @@ export class ChartComponent {
|
|
|
185
185
|
/**
|
|
186
186
|
* Fires when the user clicks the Chart series.
|
|
187
187
|
*
|
|
188
|
-
* The `click` event will be triggered by the `tap` and `contextmenu` events ([see example](slug:
|
|
188
|
+
* The `click` event will be triggered by the `tap` and `contextmenu` events ([see example](slug:events_chart)).
|
|
189
189
|
* To distinguish between the original events, inspect the `e.originalEvent.type` field.
|
|
190
190
|
*/
|
|
191
191
|
this.seriesClick = new EventEmitter();
|
|
@@ -194,7 +194,7 @@ export class ChartComponent {
|
|
|
194
194
|
*/
|
|
195
195
|
this.drilldown = new EventEmitter();
|
|
196
196
|
/**
|
|
197
|
-
* Fires when the user hovers the Chart series ([see example](slug:
|
|
197
|
+
* Fires when the user hovers the Chart series ([see example](slug:events_chart)).
|
|
198
198
|
*/
|
|
199
199
|
this.seriesHover = new EventEmitter();
|
|
200
200
|
/**
|
|
@@ -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: '13.0.0
|
|
12
|
+
publishDate: 1686055609,
|
|
13
|
+
version: '13.0.0',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -1858,8 +1858,8 @@ const packageMetadata = {
|
|
|
1858
1858
|
name: '@progress/kendo-angular-charts',
|
|
1859
1859
|
productName: 'Kendo UI for Angular',
|
|
1860
1860
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
1861
|
-
publishDate:
|
|
1862
|
-
version: '13.0.0
|
|
1861
|
+
publishDate: 1686055609,
|
|
1862
|
+
version: '13.0.0',
|
|
1863
1863
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
1864
1864
|
};
|
|
1865
1865
|
|
|
@@ -2423,7 +2423,7 @@ class ChartComponent {
|
|
|
2423
2423
|
*/
|
|
2424
2424
|
this.dragStart = new EventEmitter();
|
|
2425
2425
|
/**
|
|
2426
|
-
* Fires when the user hovers over a legend item ([see example](slug:
|
|
2426
|
+
* Fires when the user hovers over a legend item ([see example](slug:events_chart)).
|
|
2427
2427
|
*/
|
|
2428
2428
|
this.legendItemHover = new EventEmitter();
|
|
2429
2429
|
/**
|
|
@@ -2451,13 +2451,13 @@ class ChartComponent {
|
|
|
2451
2451
|
*/
|
|
2452
2452
|
this.paneRender = new EventEmitter();
|
|
2453
2453
|
/**
|
|
2454
|
-
* Fires when the user clicks the plot area ([see example](slug:
|
|
2454
|
+
* Fires when the user clicks the plot area ([see example](slug:events_chart)).
|
|
2455
2455
|
* The `click` event is triggered by the `tap` and `contextmenu` events.
|
|
2456
2456
|
* To distinguish between the original events, inspect the `e.originalEvent.type` field.
|
|
2457
2457
|
*/
|
|
2458
2458
|
this.plotAreaClick = new EventEmitter();
|
|
2459
2459
|
/**
|
|
2460
|
-
* Fires when the user hovers the plot area ([see example](slug:
|
|
2460
|
+
* Fires when the user hovers the plot area ([see example](slug:events_chart)).
|
|
2461
2461
|
*/
|
|
2462
2462
|
this.plotAreaHover = new EventEmitter();
|
|
2463
2463
|
/**
|
|
@@ -2465,7 +2465,7 @@ class ChartComponent {
|
|
|
2465
2465
|
*/
|
|
2466
2466
|
this.plotAreaLeave = new EventEmitter();
|
|
2467
2467
|
/**
|
|
2468
|
-
* Fires when the Chart is ready to render on screen ([see example](slug:
|
|
2468
|
+
* Fires when the Chart is ready to render on screen ([see example](slug:events_chart)).
|
|
2469
2469
|
* For example, you can use it to remove loading indicators.
|
|
2470
2470
|
* Any changes made to the options are ignored.
|
|
2471
2471
|
*/
|
|
@@ -2497,7 +2497,7 @@ class ChartComponent {
|
|
|
2497
2497
|
/**
|
|
2498
2498
|
* Fires when the user clicks the Chart series.
|
|
2499
2499
|
*
|
|
2500
|
-
* The `click` event will be triggered by the `tap` and `contextmenu` events ([see example](slug:
|
|
2500
|
+
* The `click` event will be triggered by the `tap` and `contextmenu` events ([see example](slug:events_chart)).
|
|
2501
2501
|
* To distinguish between the original events, inspect the `e.originalEvent.type` field.
|
|
2502
2502
|
*/
|
|
2503
2503
|
this.seriesClick = new EventEmitter();
|
|
@@ -2506,7 +2506,7 @@ class ChartComponent {
|
|
|
2506
2506
|
*/
|
|
2507
2507
|
this.drilldown = new EventEmitter();
|
|
2508
2508
|
/**
|
|
2509
|
-
* Fires when the user hovers the Chart series ([see example](slug:
|
|
2509
|
+
* Fires when the user hovers the Chart series ([see example](slug:events_chart)).
|
|
2510
2510
|
*/
|
|
2511
2511
|
this.seriesHover = new EventEmitter();
|
|
2512
2512
|
/**
|
|
@@ -2227,8 +2227,8 @@ const packageMetadata = {
|
|
|
2227
2227
|
name: '@progress/kendo-angular-charts',
|
|
2228
2228
|
productName: 'Kendo UI for Angular',
|
|
2229
2229
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
2230
|
-
publishDate:
|
|
2231
|
-
version: '13.0.0
|
|
2230
|
+
publishDate: 1686055609,
|
|
2231
|
+
version: '13.0.0',
|
|
2232
2232
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
2233
2233
|
};
|
|
2234
2234
|
|
|
@@ -2415,7 +2415,7 @@ class ChartComponent {
|
|
|
2415
2415
|
*/
|
|
2416
2416
|
this.dragStart = new EventEmitter();
|
|
2417
2417
|
/**
|
|
2418
|
-
* Fires when the user hovers over a legend item ([see example](slug:
|
|
2418
|
+
* Fires when the user hovers over a legend item ([see example](slug:events_chart)).
|
|
2419
2419
|
*/
|
|
2420
2420
|
this.legendItemHover = new EventEmitter();
|
|
2421
2421
|
/**
|
|
@@ -2443,13 +2443,13 @@ class ChartComponent {
|
|
|
2443
2443
|
*/
|
|
2444
2444
|
this.paneRender = new EventEmitter();
|
|
2445
2445
|
/**
|
|
2446
|
-
* Fires when the user clicks the plot area ([see example](slug:
|
|
2446
|
+
* Fires when the user clicks the plot area ([see example](slug:events_chart)).
|
|
2447
2447
|
* The `click` event is triggered by the `tap` and `contextmenu` events.
|
|
2448
2448
|
* To distinguish between the original events, inspect the `e.originalEvent.type` field.
|
|
2449
2449
|
*/
|
|
2450
2450
|
this.plotAreaClick = new EventEmitter();
|
|
2451
2451
|
/**
|
|
2452
|
-
* Fires when the user hovers the plot area ([see example](slug:
|
|
2452
|
+
* Fires when the user hovers the plot area ([see example](slug:events_chart)).
|
|
2453
2453
|
*/
|
|
2454
2454
|
this.plotAreaHover = new EventEmitter();
|
|
2455
2455
|
/**
|
|
@@ -2457,7 +2457,7 @@ class ChartComponent {
|
|
|
2457
2457
|
*/
|
|
2458
2458
|
this.plotAreaLeave = new EventEmitter();
|
|
2459
2459
|
/**
|
|
2460
|
-
* Fires when the Chart is ready to render on screen ([see example](slug:
|
|
2460
|
+
* Fires when the Chart is ready to render on screen ([see example](slug:events_chart)).
|
|
2461
2461
|
* For example, you can use it to remove loading indicators.
|
|
2462
2462
|
* Any changes made to the options are ignored.
|
|
2463
2463
|
*/
|
|
@@ -2489,7 +2489,7 @@ class ChartComponent {
|
|
|
2489
2489
|
/**
|
|
2490
2490
|
* Fires when the user clicks the Chart series.
|
|
2491
2491
|
*
|
|
2492
|
-
* The `click` event will be triggered by the `tap` and `contextmenu` events ([see example](slug:
|
|
2492
|
+
* The `click` event will be triggered by the `tap` and `contextmenu` events ([see example](slug:events_chart)).
|
|
2493
2493
|
* To distinguish between the original events, inspect the `e.originalEvent.type` field.
|
|
2494
2494
|
*/
|
|
2495
2495
|
this.seriesClick = new EventEmitter();
|
|
@@ -2498,7 +2498,7 @@ class ChartComponent {
|
|
|
2498
2498
|
*/
|
|
2499
2499
|
this.drilldown = new EventEmitter();
|
|
2500
2500
|
/**
|
|
2501
|
-
* Fires when the user hovers the Chart series ([see example](slug:
|
|
2501
|
+
* Fires when the user hovers the Chart series ([see example](slug:events_chart)).
|
|
2502
2502
|
*/
|
|
2503
2503
|
this.seriesHover = new EventEmitter();
|
|
2504
2504
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-charts",
|
|
3
|
-
"version": "13.0.0
|
|
3
|
+
"version": "13.0.0",
|
|
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",
|
|
@@ -46,17 +46,17 @@
|
|
|
46
46
|
"@angular/platform-browser": "13 - 16",
|
|
47
47
|
"@progress/kendo-drawing": "^1.17.2",
|
|
48
48
|
"@progress/kendo-licensing": "^1.0.2",
|
|
49
|
-
"@progress/kendo-angular-common": "13.0.0
|
|
50
|
-
"@progress/kendo-angular-intl": "13.0.0
|
|
51
|
-
"@progress/kendo-angular-l10n": "13.0.0
|
|
52
|
-
"@progress/kendo-angular-popup": "13.0.0
|
|
53
|
-
"@progress/kendo-angular-navigation": "13.0.0
|
|
49
|
+
"@progress/kendo-angular-common": "13.0.0",
|
|
50
|
+
"@progress/kendo-angular-intl": "13.0.0",
|
|
51
|
+
"@progress/kendo-angular-l10n": "13.0.0",
|
|
52
|
+
"@progress/kendo-angular-popup": "13.0.0",
|
|
53
|
+
"@progress/kendo-angular-navigation": "13.0.0",
|
|
54
54
|
"hammerjs": "^2.0.0",
|
|
55
55
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"tslib": "^2.3.1",
|
|
59
|
-
"@progress/kendo-angular-schematics": "13.0.0
|
|
59
|
+
"@progress/kendo-angular-schematics": "13.0.0",
|
|
60
60
|
"@progress/kendo-charts": "^1.29.0",
|
|
61
61
|
"@progress/kendo-svg-icons": "^1.0.0"
|
|
62
62
|
},
|