@progress/kendo-angular-charts 12.0.1-develop.1 → 12.0.1-develop.2

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.
@@ -7,47 +7,7 @@ import * as i0 from "@angular/core";
7
7
  /**
8
8
  * A directive which selects a [template](link:site.data.urls.angular['templatesyntax'])
9
9
  * within the `<kendo-chart>` component for the
10
- * [Donut center template]({% slug donut_seriestypes_charts %}).
11
- *
12
- * @example
13
- * ```ts
14
- * import { Component } from '@angular/core';
15
- *
16
- * _@Component({
17
- * selector: 'my-app',
18
- * template: `
19
- * <kendo-chart style="height: 450px;">
20
- * <ng-template kendoChartDonutCenterTemplate>
21
- * <h3>22.5%</h3>
22
- * of which renewables
23
- * </ng-template>
24
- * <kendo-chart-series>
25
- * <kendo-chart-series-item
26
- * type="donut" [data]="data"
27
- * categoryField="kind" field="share">
28
- * </kendo-chart-series-item>
29
- * </kendo-chart-series>
30
- * <kendo-chart-legend [visible]="false"></kendo-chart-legend>
31
- * </kendo-chart>
32
- * `
33
- * })
34
- * export class AppComponent {
35
- * public data: any[] = [{
36
- * kind: 'Hydroelectric', share: 0.175
37
- * }, {
38
- * kind: 'Nuclear', share: 0.238
39
- * }, {
40
- * kind: 'Coal', share: 0.118
41
- * }, {
42
- * kind: 'Solar', share: 0.052
43
- * }, {
44
- * kind: 'Wind', share: 0.225
45
- * }, {
46
- * kind: 'Other', share: 0.192
47
- * }];
48
- * }
49
- *
50
- * ```
10
+ * [Donut center template](slug:donut_seriestypes_charts#toc-using-the-center-template).
51
11
  */
52
12
  export declare class DonutCenterTemplateDirective {
53
13
  templateRef: TemplateRef<any>;
@@ -7,9 +7,15 @@ import * as i0 from "@angular/core";
7
7
  /**
8
8
  * A directive that selects a [template](link:site.data.urls.angular['templatesyntax'])
9
9
  * within the `<kendo-chart-tooltip>` component for the
10
- * [series tooltip]({% slug tooltips_chart_charts %}#toc-series-tooltip).
10
+ * [series tooltip](slug:tooltips_chart_charts#toc-specifying-a-template).
11
+ * The following context fields are frequently utilized:
12
+ * - `let-category="category"`&mdash;The category name.
13
+ * - `let-dataItem="dataItem"`&mdash;The original data item used to construct the point. It will be `null` if binding to an array.
14
+ * - `let-series="series"`&mdash;The data series.
15
+ * - `let-value="value"`&mdash;The value of the point (either a number or an object).
16
+ * For the full list of available fields, refer to the [`TooltipTemplatePoint`](slug:api_charts_tooltiptemplatepoint).
11
17
  *
12
- * @example
18
+ * @example
13
19
  * ```ts
14
20
  * import { Component } from '@angular/core';
15
21
  *
@@ -7,7 +7,14 @@ import * as i0 from "@angular/core";
7
7
  /**
8
8
  * A directive that selects a [template](link:site.data.urls.angular['templatesyntax'])
9
9
  * within the `<kendo-chart-tooltip>` component for the
10
- * [shared series tooltip]({% slug tooltips_chart_charts %}#toc-shared-tooltip).
10
+ * [shared series tooltip](slug:tooltips_chart_charts#toc-shared-tooltip-customization).
11
+ * The available fields in the template context are:
12
+ * - `let-points="points"`&mdash;An array of the [`TooltipTemplatePoints`](slug:api_charts_tooltiptemplatepoint) category.
13
+ * - `let-category="category"`&mdash;The category name.
14
+ * - `let-categoryText="categoryText"`&mdash;The category name as text.
15
+ * - `let-nameColumn="nameColumn"`&mdash;Returns a Boolean [`value`](slug:api_charts_seriesitemcomponent#toc-name) indicating whether the name property of the `SeriesItemComponent` is defined.
16
+ * - `let-colorMarker="colorMarker"`&mdash;Returns a Boolean value indicating whether one or more series colors are specified in the Chart. If the Chart contains only one `SeriesItemComponent`, the context field will return `false`.
17
+ * - `let-colSpan="colSpan"`&mdash;Specifies the number of columns covered by the tooltip. The default value is `1` and increases by `1` if `nameColumn` and `colorMarker` are set to `true`.
11
18
  *
12
19
  * @example
13
20
  * ```ts
@@ -7,47 +7,7 @@ import * as i0 from "@angular/core";
7
7
  /**
8
8
  * A directive which selects a [template](link:site.data.urls.angular['templatesyntax'])
9
9
  * within the `<kendo-chart>` component for the
10
- * [Donut center template]({% slug donut_seriestypes_charts %}).
11
- *
12
- * @example
13
- * ```ts
14
- * import { Component } from '@angular/core';
15
- *
16
- * _@Component({
17
- * selector: 'my-app',
18
- * template: `
19
- * <kendo-chart style="height: 450px;">
20
- * <ng-template kendoChartDonutCenterTemplate>
21
- * <h3>22.5%</h3>
22
- * of which renewables
23
- * </ng-template>
24
- * <kendo-chart-series>
25
- * <kendo-chart-series-item
26
- * type="donut" [data]="data"
27
- * categoryField="kind" field="share">
28
- * </kendo-chart-series-item>
29
- * </kendo-chart-series>
30
- * <kendo-chart-legend [visible]="false"></kendo-chart-legend>
31
- * </kendo-chart>
32
- * `
33
- * })
34
- * export class AppComponent {
35
- * public data: any[] = [{
36
- * kind: 'Hydroelectric', share: 0.175
37
- * }, {
38
- * kind: 'Nuclear', share: 0.238
39
- * }, {
40
- * kind: 'Coal', share: 0.118
41
- * }, {
42
- * kind: 'Solar', share: 0.052
43
- * }, {
44
- * kind: 'Wind', share: 0.225
45
- * }, {
46
- * kind: 'Other', share: 0.192
47
- * }];
48
- * }
49
- *
50
- * ```
10
+ * [Donut center template](slug:donut_seriestypes_charts#toc-using-the-center-template).
51
11
  */
52
12
  export class DonutCenterTemplateDirective {
53
13
  constructor(templateRef) {
@@ -7,9 +7,15 @@ import * as i0 from "@angular/core";
7
7
  /**
8
8
  * A directive that selects a [template](link:site.data.urls.angular['templatesyntax'])
9
9
  * within the `<kendo-chart-tooltip>` component for the
10
- * [series tooltip]({% slug tooltips_chart_charts %}#toc-series-tooltip).
10
+ * [series tooltip](slug:tooltips_chart_charts#toc-specifying-a-template).
11
+ * The following context fields are frequently utilized:
12
+ * - `let-category="category"`&mdash;The category name.
13
+ * - `let-dataItem="dataItem"`&mdash;The original data item used to construct the point. It will be `null` if binding to an array.
14
+ * - `let-series="series"`&mdash;The data series.
15
+ * - `let-value="value"`&mdash;The value of the point (either a number or an object).
16
+ * For the full list of available fields, refer to the [`TooltipTemplatePoint`](slug:api_charts_tooltiptemplatepoint).
11
17
  *
12
- * @example
18
+ * @example
13
19
  * ```ts
14
20
  * import { Component } from '@angular/core';
15
21
  *
@@ -7,7 +7,14 @@ import * as i0 from "@angular/core";
7
7
  /**
8
8
  * A directive that selects a [template](link:site.data.urls.angular['templatesyntax'])
9
9
  * within the `<kendo-chart-tooltip>` component for the
10
- * [shared series tooltip]({% slug tooltips_chart_charts %}#toc-shared-tooltip).
10
+ * [shared series tooltip](slug:tooltips_chart_charts#toc-shared-tooltip-customization).
11
+ * The available fields in the template context are:
12
+ * - `let-points="points"`&mdash;An array of the [`TooltipTemplatePoints`](slug:api_charts_tooltiptemplatepoint) category.
13
+ * - `let-category="category"`&mdash;The category name.
14
+ * - `let-categoryText="categoryText"`&mdash;The category name as text.
15
+ * - `let-nameColumn="nameColumn"`&mdash;Returns a Boolean [`value`](slug:api_charts_seriesitemcomponent#toc-name) indicating whether the name property of the `SeriesItemComponent` is defined.
16
+ * - `let-colorMarker="colorMarker"`&mdash;Returns a Boolean value indicating whether one or more series colors are specified in the Chart. If the Chart contains only one `SeriesItemComponent`, the context field will return `false`.
17
+ * - `let-colSpan="colSpan"`&mdash;Specifies the number of columns covered by the tooltip. The default value is `1` and increases by `1` if `nameColumn` and `colorMarker` are set to `true`.
11
18
  *
12
19
  * @example
13
20
  * ```ts
@@ -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: 1683028119,
13
- version: '12.0.1-develop.1',
12
+ publishDate: 1683097898,
13
+ version: '12.0.1-develop.2',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -226,47 +226,7 @@ DomEventsBuilder$1.register(DomEventsBuilder);
226
226
  /**
227
227
  * A directive which selects a [template](link:site.data.urls.angular['templatesyntax'])
228
228
  * within the `<kendo-chart>` component for the
229
- * [Donut center template]({% slug donut_seriestypes_charts %}).
230
- *
231
- * @example
232
- * ```ts
233
- * import { Component } from '@angular/core';
234
- *
235
- * _@Component({
236
- * selector: 'my-app',
237
- * template: `
238
- * <kendo-chart style="height: 450px;">
239
- * <ng-template kendoChartDonutCenterTemplate>
240
- * <h3>22.5%</h3>
241
- * of which renewables
242
- * </ng-template>
243
- * <kendo-chart-series>
244
- * <kendo-chart-series-item
245
- * type="donut" [data]="data"
246
- * categoryField="kind" field="share">
247
- * </kendo-chart-series-item>
248
- * </kendo-chart-series>
249
- * <kendo-chart-legend [visible]="false"></kendo-chart-legend>
250
- * </kendo-chart>
251
- * `
252
- * })
253
- * export class AppComponent {
254
- * public data: any[] = [{
255
- * kind: 'Hydroelectric', share: 0.175
256
- * }, {
257
- * kind: 'Nuclear', share: 0.238
258
- * }, {
259
- * kind: 'Coal', share: 0.118
260
- * }, {
261
- * kind: 'Solar', share: 0.052
262
- * }, {
263
- * kind: 'Wind', share: 0.225
264
- * }, {
265
- * kind: 'Other', share: 0.192
266
- * }];
267
- * }
268
- *
269
- * ```
229
+ * [Donut center template](slug:donut_seriestypes_charts#toc-using-the-center-template).
270
230
  */
271
231
  class DonutCenterTemplateDirective {
272
232
  constructor(templateRef) {
@@ -1007,9 +967,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
1007
967
  /**
1008
968
  * A directive that selects a [template](link:site.data.urls.angular['templatesyntax'])
1009
969
  * within the `<kendo-chart-tooltip>` component for the
1010
- * [series tooltip]({% slug tooltips_chart_charts %}#toc-series-tooltip).
970
+ * [series tooltip](slug:tooltips_chart_charts#toc-specifying-a-template).
971
+ * The following context fields are frequently utilized:
972
+ * - `let-category="category"`&mdash;The category name.
973
+ * - `let-dataItem="dataItem"`&mdash;The original data item used to construct the point. It will be `null` if binding to an array.
974
+ * - `let-series="series"`&mdash;The data series.
975
+ * - `let-value="value"`&mdash;The value of the point (either a number or an object).
976
+ * For the full list of available fields, refer to the [`TooltipTemplatePoint`](slug:api_charts_tooltiptemplatepoint).
1011
977
  *
1012
- * @example
978
+ * @example
1013
979
  * ```ts
1014
980
  * import { Component } from '@angular/core';
1015
981
  *
@@ -1055,7 +1021,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
1055
1021
  /**
1056
1022
  * A directive that selects a [template](link:site.data.urls.angular['templatesyntax'])
1057
1023
  * within the `<kendo-chart-tooltip>` component for the
1058
- * [shared series tooltip]({% slug tooltips_chart_charts %}#toc-shared-tooltip).
1024
+ * [shared series tooltip](slug:tooltips_chart_charts#toc-shared-tooltip-customization).
1025
+ * The available fields in the template context are:
1026
+ * - `let-points="points"`&mdash;An array of the [`TooltipTemplatePoints`](slug:api_charts_tooltiptemplatepoint) category.
1027
+ * - `let-category="category"`&mdash;The category name.
1028
+ * - `let-categoryText="categoryText"`&mdash;The category name as text.
1029
+ * - `let-nameColumn="nameColumn"`&mdash;Returns a Boolean [`value`](slug:api_charts_seriesitemcomponent#toc-name) indicating whether the name property of the `SeriesItemComponent` is defined.
1030
+ * - `let-colorMarker="colorMarker"`&mdash;Returns a Boolean value indicating whether one or more series colors are specified in the Chart. If the Chart contains only one `SeriesItemComponent`, the context field will return `false`.
1031
+ * - `let-colSpan="colSpan"`&mdash;Specifies the number of columns covered by the tooltip. The default value is `1` and increases by `1` if `nameColumn` and `colorMarker` are set to `true`.
1059
1032
  *
1060
1033
  * @example
1061
1034
  * ```ts
@@ -1845,8 +1818,8 @@ const packageMetadata = {
1845
1818
  name: '@progress/kendo-angular-charts',
1846
1819
  productName: 'Kendo UI for Angular',
1847
1820
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
1848
- publishDate: 1683028119,
1849
- version: '12.0.1-develop.1',
1821
+ publishDate: 1683097898,
1822
+ version: '12.0.1-develop.2',
1850
1823
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
1851
1824
  };
1852
1825
 
@@ -226,47 +226,7 @@ DomEventsBuilder$1.register(DomEventsBuilder);
226
226
  /**
227
227
  * A directive which selects a [template](link:site.data.urls.angular['templatesyntax'])
228
228
  * within the `<kendo-chart>` component for the
229
- * [Donut center template]({% slug donut_seriestypes_charts %}).
230
- *
231
- * @example
232
- * ```ts
233
- * import { Component } from '@angular/core';
234
- *
235
- * _@Component({
236
- * selector: 'my-app',
237
- * template: `
238
- * <kendo-chart style="height: 450px;">
239
- * <ng-template kendoChartDonutCenterTemplate>
240
- * <h3>22.5%</h3>
241
- * of which renewables
242
- * </ng-template>
243
- * <kendo-chart-series>
244
- * <kendo-chart-series-item
245
- * type="donut" [data]="data"
246
- * categoryField="kind" field="share">
247
- * </kendo-chart-series-item>
248
- * </kendo-chart-series>
249
- * <kendo-chart-legend [visible]="false"></kendo-chart-legend>
250
- * </kendo-chart>
251
- * `
252
- * })
253
- * export class AppComponent {
254
- * public data: any[] = [{
255
- * kind: 'Hydroelectric', share: 0.175
256
- * }, {
257
- * kind: 'Nuclear', share: 0.238
258
- * }, {
259
- * kind: 'Coal', share: 0.118
260
- * }, {
261
- * kind: 'Solar', share: 0.052
262
- * }, {
263
- * kind: 'Wind', share: 0.225
264
- * }, {
265
- * kind: 'Other', share: 0.192
266
- * }];
267
- * }
268
- *
269
- * ```
229
+ * [Donut center template](slug:donut_seriestypes_charts#toc-using-the-center-template).
270
230
  */
271
231
  class DonutCenterTemplateDirective {
272
232
  constructor(templateRef) {
@@ -1005,9 +965,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
1005
965
  /**
1006
966
  * A directive that selects a [template](link:site.data.urls.angular['templatesyntax'])
1007
967
  * within the `<kendo-chart-tooltip>` component for the
1008
- * [series tooltip]({% slug tooltips_chart_charts %}#toc-series-tooltip).
968
+ * [series tooltip](slug:tooltips_chart_charts#toc-specifying-a-template).
969
+ * The following context fields are frequently utilized:
970
+ * - `let-category="category"`&mdash;The category name.
971
+ * - `let-dataItem="dataItem"`&mdash;The original data item used to construct the point. It will be `null` if binding to an array.
972
+ * - `let-series="series"`&mdash;The data series.
973
+ * - `let-value="value"`&mdash;The value of the point (either a number or an object).
974
+ * For the full list of available fields, refer to the [`TooltipTemplatePoint`](slug:api_charts_tooltiptemplatepoint).
1009
975
  *
1010
- * @example
976
+ * @example
1011
977
  * ```ts
1012
978
  * import { Component } from '@angular/core';
1013
979
  *
@@ -1051,7 +1017,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
1051
1017
  /**
1052
1018
  * A directive that selects a [template](link:site.data.urls.angular['templatesyntax'])
1053
1019
  * within the `<kendo-chart-tooltip>` component for the
1054
- * [shared series tooltip]({% slug tooltips_chart_charts %}#toc-shared-tooltip).
1020
+ * [shared series tooltip](slug:tooltips_chart_charts#toc-shared-tooltip-customization).
1021
+ * The available fields in the template context are:
1022
+ * - `let-points="points"`&mdash;An array of the [`TooltipTemplatePoints`](slug:api_charts_tooltiptemplatepoint) category.
1023
+ * - `let-category="category"`&mdash;The category name.
1024
+ * - `let-categoryText="categoryText"`&mdash;The category name as text.
1025
+ * - `let-nameColumn="nameColumn"`&mdash;Returns a Boolean [`value`](slug:api_charts_seriesitemcomponent#toc-name) indicating whether the name property of the `SeriesItemComponent` is defined.
1026
+ * - `let-colorMarker="colorMarker"`&mdash;Returns a Boolean value indicating whether one or more series colors are specified in the Chart. If the Chart contains only one `SeriesItemComponent`, the context field will return `false`.
1027
+ * - `let-colSpan="colSpan"`&mdash;Specifies the number of columns covered by the tooltip. The default value is `1` and increases by `1` if `nameColumn` and `colorMarker` are set to `true`.
1055
1028
  *
1056
1029
  * @example
1057
1030
  * ```ts
@@ -2216,8 +2189,8 @@ const packageMetadata = {
2216
2189
  name: '@progress/kendo-angular-charts',
2217
2190
  productName: 'Kendo UI for Angular',
2218
2191
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
2219
- publishDate: 1683028119,
2220
- version: '12.0.1-develop.1',
2192
+ publishDate: 1683097898,
2193
+ version: '12.0.1-develop.2',
2221
2194
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
2222
2195
  };
2223
2196
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-charts",
3
- "version": "12.0.1-develop.1",
3
+ "version": "12.0.1-develop.2",
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,16 +46,16 @@
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": "12.0.1-develop.1",
50
- "@progress/kendo-angular-intl": "12.0.1-develop.1",
51
- "@progress/kendo-angular-l10n": "12.0.1-develop.1",
52
- "@progress/kendo-angular-popup": "12.0.1-develop.1",
49
+ "@progress/kendo-angular-common": "12.0.1-develop.2",
50
+ "@progress/kendo-angular-intl": "12.0.1-develop.2",
51
+ "@progress/kendo-angular-l10n": "12.0.1-develop.2",
52
+ "@progress/kendo-angular-popup": "12.0.1-develop.2",
53
53
  "hammerjs": "^2.0.0",
54
54
  "rxjs": "^6.5.3 || ^7.0.0"
55
55
  },
56
56
  "dependencies": {
57
57
  "tslib": "^2.3.1",
58
- "@progress/kendo-angular-schematics": "12.0.1-develop.1",
58
+ "@progress/kendo-angular-schematics": "12.0.1-develop.2",
59
59
  "@progress/kendo-charts": "^1.28.0"
60
60
  },
61
61
  "schematics": "./schematics/collection.json",