@progress/kendo-angular-charts 13.2.0-develop.8 → 13.2.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.
Files changed (58) hide show
  1. package/chart/series-item/markers.component.d.ts +8 -59
  2. package/chart/series-item/notes.component.d.ts +11 -0
  3. package/chart/series-item.component.d.ts +13 -7
  4. package/chart/subtitle.component.d.ts +5 -0
  5. package/chart/x-axis-item/notes.icon.component.d.ts +1 -1
  6. package/chart/x-axis.component.d.ts +11 -56
  7. package/chart/y-axis-item/notes.icon.component.d.ts +1 -1
  8. package/chart/y-axis-item.component.d.ts +1 -1
  9. package/chart/y-axis.component.d.ts +11 -56
  10. package/esm2020/chart/series-item/markers.component.mjs +8 -59
  11. package/esm2020/chart/series-item/notes.component.mjs +11 -0
  12. package/esm2020/chart/series-item.component.mjs +9 -0
  13. package/esm2020/chart/x-axis.component.mjs +11 -56
  14. package/esm2020/chart/y-axis.component.mjs +11 -56
  15. package/esm2020/package-metadata.mjs +2 -2
  16. package/esm2020/sparkline.component.mjs +3 -19
  17. package/esm2020/stock-chart.component.mjs +15 -35
  18. package/fesm2015/progress-kendo-angular-charts.mjs +70 -227
  19. package/fesm2020/progress-kendo-angular-charts.mjs +70 -227
  20. package/option-types/pane/title.interface.d.ts +2 -2
  21. package/option-types/pane-defaults/title.interface.d.ts +1 -1
  22. package/option-types/pane-defaults.interface.d.ts +1 -1
  23. package/option-types/series-defaults/labels.from.interface.d.ts +2 -2
  24. package/option-types/series-defaults/labels.interface.d.ts +2 -2
  25. package/option-types/series-defaults/labels.to.interface.d.ts +2 -2
  26. package/option-types/series-defaults/notes.label.interface.d.ts +2 -2
  27. package/option-types/series-item/error-bars.interface.d.ts +2 -2
  28. package/option-types/series-item/highlight.interface.d.ts +1 -1
  29. package/option-types/series-item/labels.from.interface.d.ts +1 -1
  30. package/option-types/series-item/labels.interface.d.ts +2 -2
  31. package/option-types/series-item/labels.to.interface.d.ts +1 -1
  32. package/option-types/series-item/notes.label.interface.d.ts +2 -2
  33. package/option-types/series-item/tooltip.interface.d.ts +3 -3
  34. package/option-types/series-item.interface.d.ts +9 -13
  35. package/option-types/subtitle.interface.d.ts +3 -3
  36. package/option-types/title.interface.d.ts +2 -2
  37. package/option-types/tooltip.interface.d.ts +2 -2
  38. package/option-types/value-axis-item/crosshair.interface.d.ts +1 -1
  39. package/option-types/value-axis-item/crosshair.tooltip.interface.d.ts +1 -1
  40. package/option-types/value-axis-item/labels.interface.d.ts +2 -2
  41. package/option-types/value-axis-item/notes.label.interface.d.ts +2 -2
  42. package/option-types/value-axis-item/title.interface.d.ts +2 -2
  43. package/option-types/value-axis-item.interface.d.ts +1 -1
  44. package/option-types/x-axis-item/crosshair.interface.d.ts +1 -1
  45. package/option-types/x-axis-item/crosshair.tooltip.interface.d.ts +2 -2
  46. package/option-types/x-axis-item/labels.interface.d.ts +2 -2
  47. package/option-types/x-axis-item/notes.label.interface.d.ts +2 -2
  48. package/option-types/x-axis-item/title.interface.d.ts +2 -2
  49. package/option-types/x-axis-item.interface.d.ts +1 -1
  50. package/option-types/y-axis-item/crosshair.interface.d.ts +1 -1
  51. package/option-types/y-axis-item/crosshair.tooltip.interface.d.ts +2 -2
  52. package/option-types/y-axis-item/labels.interface.d.ts +2 -2
  53. package/option-types/y-axis-item/notes.label.interface.d.ts +2 -2
  54. package/option-types/y-axis-item/title.interface.d.ts +2 -2
  55. package/option-types/y-axis-item.interface.d.ts +1 -1
  56. package/package.json +7 -7
  57. package/sparkline.component.d.ts +3 -19
  58. package/stock-chart.component.d.ts +15 -35
@@ -14,7 +14,7 @@ export interface Title {
14
14
  */
15
15
  align?: 'center' | 'left' | 'right';
16
16
  /**
17
- * The background color of the title. Accepts a valid CSS color string, including hex and rgb.
17
+ * The background color of the title. Accepts a valid CSS color string, including HEX and RGB.
18
18
  */
19
19
  background?: string;
20
20
  /**
@@ -22,7 +22,7 @@ export interface Title {
22
22
  */
23
23
  border?: Border;
24
24
  /**
25
- * The text color of the title. Accepts a valid CSS color string, including hex and rgb.
25
+ * The text color of the title. Accepts a valid CSS color string, including HEX and RGB.
26
26
  */
27
27
  color?: string;
28
28
  /**
@@ -8,7 +8,7 @@ import { Border, Padding } from '../common/property-types';
8
8
  */
9
9
  export interface Tooltip {
10
10
  /**
11
- * The background color of the tooltip. Accepts a valid CSS color string, including hex and rgb.
11
+ * The background color of the tooltip. Accepts a valid CSS color string, including HEX and RGB.
12
12
  */
13
13
  background?: string;
14
14
  /**
@@ -16,7 +16,7 @@ export interface Tooltip {
16
16
  */
17
17
  border?: Border;
18
18
  /**
19
- * The text color of the tooltip. Accepts a valid CSS color string, including hex and rgb.
19
+ * The text color of the tooltip. Accepts a valid CSS color string, including HEX and RGB.
20
20
  */
21
21
  color?: string;
22
22
  /**
@@ -8,7 +8,7 @@ import { ValueAxisCrosshairTooltip } from './crosshair.tooltip.interface';
8
8
  */
9
9
  export interface ValueAxisCrosshair {
10
10
  /**
11
- * The color of the crosshair. Accepts a valid CSS color string, including hex and rgb.
11
+ * The color of the crosshair. Accepts a valid CSS color string, including HEX and RGB.
12
12
  */
13
13
  color?: string;
14
14
  /**
@@ -8,7 +8,7 @@ import { Border, Padding } from '../../common/property-types';
8
8
  */
9
9
  export interface ValueAxisCrosshairTooltip {
10
10
  /**
11
- * The background color of the tooltip. Accepts a valid CSS color string, including hex and rgb.
11
+ * The background color of the tooltip. Accepts a valid CSS color string, including HEX and RGB.
12
12
  */
13
13
  background?: string;
14
14
  /**
@@ -10,7 +10,7 @@ import { Padding } from '../../common/property-types';
10
10
  */
11
11
  export interface ValueAxisLabels {
12
12
  /**
13
- * The background color of the labels. Accepts a valid CSS color string, including hex and rgb.
13
+ * The background color of the labels. Accepts a valid CSS color string, including HEX and RGB.
14
14
  */
15
15
  background?: string;
16
16
  /**
@@ -18,7 +18,7 @@ export interface ValueAxisLabels {
18
18
  */
19
19
  border?: Border;
20
20
  /**
21
- * The text color of the labels. Accepts a valid CSS color string, including hex and rgb.
21
+ * The text color of the labels. Accepts a valid CSS color string, including HEX and RGB.
22
22
  */
23
23
  color?: string;
24
24
  /**
@@ -8,7 +8,7 @@ import { AxisNoteContentArgs, Border, NoteLabelPosition } from '../../common/pro
8
8
  */
9
9
  export interface ValueAxisNotesLabel {
10
10
  /**
11
- * The background color of the label. Accepts a valid CSS color string, including hex and rgb.
11
+ * The background color of the label. Accepts a valid CSS color string, including HEX and RGB.
12
12
  */
13
13
  background?: string;
14
14
  /**
@@ -16,7 +16,7 @@ export interface ValueAxisNotesLabel {
16
16
  */
17
17
  border?: Border;
18
18
  /**
19
- * The text color of the label. Accepts a valid CSS color string, including hex and rgb.
19
+ * The text color of the label. Accepts a valid CSS color string, including HEX and RGB.
20
20
  */
21
21
  color?: string;
22
22
  /**
@@ -9,7 +9,7 @@ import { AxisTitlePosition, Border, Margin, Padding, TitleVisualArgs } from '../
9
9
  */
10
10
  export interface ValueAxisTitle {
11
11
  /**
12
- * The background color of the title. Accepts a valid CSS color string, including hex and rgb.
12
+ * The background color of the title. Accepts a valid CSS color string, including HEX and RGB.
13
13
  */
14
14
  background?: string;
15
15
  /**
@@ -17,7 +17,7 @@ export interface ValueAxisTitle {
17
17
  */
18
18
  border?: Border;
19
19
  /**
20
- * The text color of the title. Accepts a valid CSS color string, including hex and rgb.
20
+ * The text color of the title. Accepts a valid CSS color string, including HEX and RGB.
21
21
  */
22
22
  color?: string;
23
23
  /**
@@ -22,7 +22,7 @@ export interface ValueAxis {
22
22
  */
23
23
  background?: string;
24
24
  /**
25
- * The color of the value axis. Accepts a valid CSS color string, including hex and rgb.
25
+ * The color of the value axis. Accepts a valid CSS color string, including HEX and RGB.
26
26
  */
27
27
  color?: string;
28
28
  /**
@@ -8,7 +8,7 @@ import { XAxisCrosshairTooltip } from './crosshair.tooltip.interface';
8
8
  */
9
9
  export interface XAxisCrosshair {
10
10
  /**
11
- * The color of the crosshair. Accepts a valid CSS color string, including hex and rgb.
11
+ * The color of the crosshair. Accepts a valid CSS color string, including HEX and RGB.
12
12
  */
13
13
  color?: string;
14
14
  /**
@@ -8,7 +8,7 @@ import { Border, Padding } from '../../common/property-types';
8
8
  */
9
9
  export interface XAxisCrosshairTooltip {
10
10
  /**
11
- * The background color of the tooltip. Accepts a valid CSS color string, including hex and rgb.
11
+ * The background color of the tooltip. Accepts a valid CSS color string, including HEX and RGB.
12
12
  */
13
13
  background?: string;
14
14
  /**
@@ -16,7 +16,7 @@ export interface XAxisCrosshairTooltip {
16
16
  */
17
17
  border?: Border;
18
18
  /**
19
- * The text color of the tooltip. Accepts a valid CSS color string, including hex and rgb.
19
+ * The text color of the tooltip. Accepts a valid CSS color string, including HEX and RGB.
20
20
  */
21
21
  color?: string;
22
22
  /**
@@ -10,7 +10,7 @@ import { Margin, Padding } from '../../common/property-types';
10
10
  */
11
11
  export interface XAxisLabels {
12
12
  /**
13
- * The background color of the labels. Accepts a valid CSS color string, including hex and rgb.
13
+ * The background color of the labels. Accepts a valid CSS color string, including HEX and RGB.
14
14
  */
15
15
  background?: string;
16
16
  /**
@@ -18,7 +18,7 @@ export interface XAxisLabels {
18
18
  */
19
19
  border?: Border;
20
20
  /**
21
- * The text color of the labels. Accepts a valid CSS color string, including hex and rgb.
21
+ * The text color of the labels. Accepts a valid CSS color string, including HEX and RGB.
22
22
  */
23
23
  color?: string;
24
24
  /**
@@ -8,7 +8,7 @@ import { AxisNoteContentArgs, Border, NoteLabelPosition } from '../../common/pro
8
8
  */
9
9
  export interface XAxisNotesLabel {
10
10
  /**
11
- * The background color of the label. Accepts a valid CSS color string, including hex and rgb.
11
+ * The background color of the label. Accepts a valid CSS color string, including HEX and RGB.
12
12
  */
13
13
  background?: string;
14
14
  /**
@@ -16,7 +16,7 @@ export interface XAxisNotesLabel {
16
16
  */
17
17
  border?: Border;
18
18
  /**
19
- * The text color of the label. Accepts a valid CSS color string, including hex and rgb.
19
+ * The text color of the label. Accepts a valid CSS color string, including HEX and RGB.
20
20
  */
21
21
  color?: string;
22
22
  /**
@@ -9,7 +9,7 @@ import { AxisTitlePosition, Border, Margin, Padding, TitleVisualArgs } from '../
9
9
  */
10
10
  export interface XAxisTitle {
11
11
  /**
12
- * The background color of the title. Accepts a valid CSS color string, including hex and rgb.
12
+ * The background color of the title. Accepts a valid CSS color string, including HEX and RGB.
13
13
  */
14
14
  background?: string;
15
15
  /**
@@ -17,7 +17,7 @@ export interface XAxisTitle {
17
17
  */
18
18
  border?: Border;
19
19
  /**
20
- * The text color of the title. Accepts a valid CSS color string, including hex and rgb.
20
+ * The text color of the title. Accepts a valid CSS color string, including HEX and RGB.
21
21
  */
22
22
  color?: string;
23
23
  /**
@@ -31,7 +31,7 @@ export interface XAxis {
31
31
  */
32
32
  baseUnit?: BaseUnit;
33
33
  /**
34
- * The color of the axis. Accepts a valid CSS color string, including hex and rgb.
34
+ * The color of the axis. Accepts a valid CSS color string, including HEX and RGB.
35
35
  */
36
36
  color?: string;
37
37
  /**
@@ -8,7 +8,7 @@ import { YAxisCrosshairTooltip } from './crosshair.tooltip.interface';
8
8
  */
9
9
  export interface YAxisCrosshair {
10
10
  /**
11
- * The color of the crosshair. Accepts a valid CSS color string, including hex and rgb.
11
+ * The color of the crosshair. Accepts a valid CSS color string, including HEX and RGB.
12
12
  */
13
13
  color?: string;
14
14
  /**
@@ -8,7 +8,7 @@ import { Border, Padding } from '../../common/property-types';
8
8
  */
9
9
  export interface YAxisCrosshairTooltip {
10
10
  /**
11
- * The background color of the tooltip. Accepts a valid CSS color string, including hex and rgb.
11
+ * The background color of the tooltip. Accepts a valid CSS color string, including HEX and RGB.
12
12
  */
13
13
  background?: string;
14
14
  /**
@@ -16,7 +16,7 @@ export interface YAxisCrosshairTooltip {
16
16
  */
17
17
  border?: Border;
18
18
  /**
19
- * The text color of the tooltip. Accepts a valid CSS color string, including hex and rgb.
19
+ * The text color of the tooltip. Accepts a valid CSS color string, including HEX and RGB.
20
20
  */
21
21
  color?: string;
22
22
  /**
@@ -10,7 +10,7 @@ import { Margin, Padding } from '../../common/property-types';
10
10
  */
11
11
  export interface YAxisLabels {
12
12
  /**
13
- * The background color of the labels. Accepts a valid CSS color string, including hex and rgb.
13
+ * The background color of the labels. Accepts a valid CSS color string, including HEX and RGB.
14
14
  */
15
15
  background?: string;
16
16
  /**
@@ -18,7 +18,7 @@ export interface YAxisLabels {
18
18
  */
19
19
  border?: Border;
20
20
  /**
21
- * The text color of the labels. Accepts a valid CSS color string, including hex and rgb.
21
+ * The text color of the labels. Accepts a valid CSS color string, including HEX and RGB.
22
22
  */
23
23
  color?: string;
24
24
  /**
@@ -8,7 +8,7 @@ import { AxisNoteContentArgs, Border, NoteLabelPosition } from '../../common/pro
8
8
  */
9
9
  export interface YAxisNotesLabel {
10
10
  /**
11
- * The background color of the label. Accepts a valid CSS color string, including hex and rgb.
11
+ * The background color of the label. Accepts a valid CSS color string, including HEX and RGB.
12
12
  */
13
13
  background?: string;
14
14
  /**
@@ -16,7 +16,7 @@ export interface YAxisNotesLabel {
16
16
  */
17
17
  border?: Border;
18
18
  /**
19
- * The text color of the label. Accepts a valid CSS color string, including hex and rgb.
19
+ * The text color of the label. Accepts a valid CSS color string, including HEX and RGB.
20
20
  */
21
21
  color?: string;
22
22
  /**
@@ -9,7 +9,7 @@ import { AxisTitlePosition, Border, Margin, Padding, TitleVisualArgs } from '../
9
9
  */
10
10
  export interface YAxisTitle {
11
11
  /**
12
- * The background color of the title. Accepts a valid CSS color string, including hex and rgb.
12
+ * The background color of the title. Accepts a valid CSS color string, including HEX and RGB.
13
13
  */
14
14
  background?: string;
15
15
  /**
@@ -17,7 +17,7 @@ export interface YAxisTitle {
17
17
  */
18
18
  border?: Border;
19
19
  /**
20
- * The text color of the title. Accepts a valid CSS color string, including hex and rgb.
20
+ * The text color of the title. Accepts a valid CSS color string, including HEX and RGB.
21
21
  */
22
22
  color?: string;
23
23
  /**
@@ -31,7 +31,7 @@ export interface YAxis {
31
31
  */
32
32
  baseUnit?: BaseUnit;
33
33
  /**
34
- * The color of the axis. Accepts a valid CSS color string, including hex and rgb.
34
+ * The color of the axis. Accepts a valid CSS color string, including HEX and RGB.
35
35
  */
36
36
  color?: string;
37
37
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-charts",
3
- "version": "13.2.0-develop.8",
3
+ "version": "13.2.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.2.0-develop.8",
50
- "@progress/kendo-angular-intl": "13.2.0-develop.8",
51
- "@progress/kendo-angular-l10n": "13.2.0-develop.8",
52
- "@progress/kendo-angular-popup": "13.2.0-develop.8",
53
- "@progress/kendo-angular-navigation": "13.2.0-develop.8",
49
+ "@progress/kendo-angular-common": "13.2.0",
50
+ "@progress/kendo-angular-intl": "13.2.0",
51
+ "@progress/kendo-angular-l10n": "13.2.0",
52
+ "@progress/kendo-angular-popup": "13.2.0",
53
+ "@progress/kendo-angular-navigation": "13.2.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.2.0-develop.8",
59
+ "@progress/kendo-angular-schematics": "13.2.0",
60
60
  "@progress/kendo-charts": "^1.29.0",
61
61
  "@progress/kendo-svg-icons": "^1.0.0"
62
62
  },
@@ -16,25 +16,9 @@ import * as i0 from "@angular/core";
16
16
  * The root Chart component.
17
17
  *
18
18
  * @example
19
- * ```ts
20
- * import { Component } from '@angular/core';
21
- *
22
- * _@Component({
23
- * selector: 'my-app',
24
- * template: `
25
- * <kendo-sparkline [data]="data" type="column">
26
- * </kendo-sparkline>
27
- * `
28
- * })
29
- * class AppComponent {
30
- * public data: any[] = [
31
- * 936, 968, 1025, 999, 998, 1014, 1017, 1010, 1010, 1007,
32
- * 1004, 988, 990, 988, 987, 995, 946, 954, 991, 984,
33
- * 974, 956, 986, 936, 955, 1021, 1013, 1005, 958, 953,
34
- * 952, 940, 937, 980, 966, 965, 928, 916, 910, 980
35
- * ];
36
- * }
37
- *
19
+ * ```html
20
+ * <kendo-sparkline [data]="[936, 968, 1025, 999]" type="column">
21
+ * </kendo-sparkline>
38
22
  * ```
39
23
  */
40
24
  export declare class SparklineComponent extends ChartComponent {
@@ -19,41 +19,21 @@ import * as i0 from "@angular/core";
19
19
  * The root StockChart component.
20
20
  *
21
21
  * @example
22
- * ```ts
23
- * import { Component } from '@angular/core';
24
- *
25
- * _@Component({
26
- * selector: 'my-app',
27
- * template: `
28
- * <kendo-stockchart>
29
- * <kendo-chart-series>
30
- * <kendo-chart-series-item type="line" [data]="data" field="value" categoryField="date">
31
- * </kendo-chart-series-item>
32
- * </kendo-chart-series>
33
- * <kendo-chart-navigator>
34
- * <kendo-chart-navigator-select to="2017/02/01">
35
- * </kendo-chart-navigator-select>
36
- * <kendo-chart-navigator-series>
37
- * <kendo-chart-navigator-series-item type="area" [data]="data" field="value" categoryField="date">
38
- * </kendo-chart-navigator-series-item>
39
- * </kendo-chart-navigator-series>
40
- * </kendo-chart-navigator>
41
- * </kendo-stockchart>
42
- * `
43
- * })
44
- * class AppComponent {
45
- * public data: any[] = [];
46
- *
47
- * constructor() {
48
- * for (let idx = 0; idx < 100; idx++) {
49
- * this.data.push({
50
- * date: new Date(2017, 0, idx),
51
- * value: Math.random() * 100
52
- * });
53
- * }
54
- * }
55
- * }
56
- *
22
+ * ```html
23
+ * <kendo-stockchart>
24
+ * <kendo-chart-series>
25
+ * <kendo-chart-series-item type="line" [data]="data" field="value" categoryField="date">
26
+ * </kendo-chart-series-item>
27
+ * </kendo-chart-series>
28
+ * <kendo-chart-navigator>
29
+ * <kendo-chart-navigator-select to="2017/02/01">
30
+ * </kendo-chart-navigator-select>
31
+ * <kendo-chart-navigator-series>
32
+ * <kendo-chart-navigator-series-item type="area" [data]="data" field="value" categoryField="date">
33
+ * </kendo-chart-navigator-series-item>
34
+ * </kendo-chart-navigator-series>
35
+ * </kendo-chart-navigator>
36
+ * </kendo-stockchart>
57
37
  * ```
58
38
  */
59
39
  export declare class StockChartComponent extends ChartComponent {