@progress/kendo-angular-charts 13.2.0-develop.5 → 13.2.0-develop.7

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 (82) hide show
  1. package/chart/axis-defaults/crosshair.component.d.ts +17 -0
  2. package/chart/axis-defaults/crosshair.tooltip.component.d.ts +18 -0
  3. package/chart/axis-defaults/labels.component.d.ts +41 -0
  4. package/chart/axis-defaults/title.component.d.ts +24 -0
  5. package/chart/axis-defaults.component.d.ts +19 -0
  6. package/chart/category-axis-item/crosshair.component.d.ts +17 -0
  7. package/chart/category-axis-item/crosshair.tooltip.component.d.ts +18 -0
  8. package/chart/category-axis-item/labels.component.d.ts +58 -0
  9. package/chart/category-axis-item/notes.label.component.d.ts +22 -0
  10. package/chart/category-axis-item/title.component.d.ts +25 -0
  11. package/chart/category-axis-item.component.d.ts +38 -0
  12. package/chart/chart-area.component.d.ts +20 -0
  13. package/chart/legend.component.d.ts +46 -0
  14. package/chart/pane/title.component.d.ts +18 -0
  15. package/chart/pane-defaults/title.component.d.ts +18 -0
  16. package/chart/pane-defaults.component.d.ts +8 -0
  17. package/chart/pane.component.d.ts +18 -51
  18. package/chart/panes.component.d.ts +8 -32
  19. package/chart/plot-area.component.d.ts +18 -0
  20. package/chart/series-defaults/labels.component.d.ts +20 -0
  21. package/chart/series-defaults/labels.from.component.d.ts +20 -0
  22. package/chart/series-defaults/labels.to.component.d.ts +20 -0
  23. package/chart/series-defaults/notes.icon.component.d.ts +8 -0
  24. package/chart/series-defaults/notes.label.component.d.ts +21 -0
  25. package/chart/series-defaults/tooltip.component.d.ts +12 -0
  26. package/chart/series-defaults.component.d.ts +16 -0
  27. package/chart/series-item/error-bars.component.d.ts +4 -0
  28. package/chart/series-item/extremes.component.d.ts +8 -0
  29. package/chart/series-item/highlight.component.d.ts +4 -0
  30. package/chart/series-item/labels.component.d.ts +25 -0
  31. package/chart/series-item/labels.from.component.d.ts +20 -0
  32. package/chart/series-item/labels.to.component.d.ts +20 -0
  33. package/chart/series-item/markers.component.d.ts +12 -0
  34. package/chart/series-item/notes.icon.component.d.ts +10 -0
  35. package/chart/series-item/notes.label.component.d.ts +26 -0
  36. package/chart/series-item/outliers.component.d.ts +10 -0
  37. package/chart/series-item/tooltip.component.d.ts +8 -0
  38. package/chart/series-item.component.d.ts +287 -0
  39. package/chart/series.component.d.ts +8 -18
  40. package/chart/subtitle.component.d.ts +24 -57
  41. package/chart/title.component.d.ts +37 -56
  42. package/chart/tooltip.component.d.ts +16 -0
  43. package/chart/value-axis-item/crosshair.component.d.ts +15 -0
  44. package/chart/value-axis-item/crosshair.tooltip.component.d.ts +16 -0
  45. package/chart/value-axis-item/labels.component.d.ts +43 -0
  46. package/chart/value-axis-item/notes.icon.component.d.ts +8 -0
  47. package/chart/value-axis-item/notes.label.component.d.ts +21 -0
  48. package/chart/value-axis-item/title.component.d.ts +24 -0
  49. package/chart/value-axis-item.component.d.ts +35 -0
  50. package/chart/value-axis.component.d.ts +6 -26
  51. package/chart/x-axis-item/crosshair.component.d.ts +12 -0
  52. package/chart/x-axis-item/crosshair.tooltip.component.d.ts +18 -0
  53. package/chart/x-axis-item/labels.component.d.ts +29 -0
  54. package/chart/x-axis-item/notes.icon.component.d.ts +8 -0
  55. package/chart/x-axis-item/notes.label.component.d.ts +22 -0
  56. package/chart/x-axis-item/title.component.d.ts +25 -0
  57. package/chart/x-axis-item.component.d.ts +13 -0
  58. package/chart/y-axis-item/labels.component.d.ts +42 -0
  59. package/chart/y-axis-item/notes.icon.component.d.ts +8 -0
  60. package/chart/y-axis-item/notes.label.component.d.ts +22 -0
  61. package/chart/y-axis-item/title.component.d.ts +25 -0
  62. package/chart/y-axis-item.component.d.ts +23 -0
  63. package/chart-breadcrumb.component.d.ts +2 -0
  64. package/chart.component.d.ts +15 -45
  65. package/esm2020/chart/pane.component.mjs +10 -51
  66. package/esm2020/chart/panes.component.mjs +8 -32
  67. package/esm2020/chart/series.component.mjs +8 -18
  68. package/esm2020/chart/subtitle.component.mjs +4 -57
  69. package/esm2020/chart/title.component.mjs +5 -56
  70. package/esm2020/chart/value-axis.component.mjs +7 -27
  71. package/esm2020/chart-breadcrumb.component.mjs +13 -6
  72. package/esm2020/chart.component.mjs +6 -45
  73. package/esm2020/package-metadata.mjs +2 -2
  74. package/fesm2015/progress-kendo-angular-charts.mjs +63 -295
  75. package/fesm2020/progress-kendo-angular-charts.mjs +63 -295
  76. package/field-types/line-style.d.ts +3 -3
  77. package/option-types/plot-area.interface.d.ts +1 -1
  78. package/option-types/series-defaults/tooltip.interface.d.ts +1 -1
  79. package/option-types/series-item/labels.from.interface.d.ts +9 -9
  80. package/option-types/series-item/labels.to.interface.d.ts +9 -9
  81. package/option-types/series-item.interface.d.ts +0 -7
  82. package/package.json +7 -7
@@ -16,9 +16,25 @@ export declare class ValueAxisCrosshairTooltipComponent extends SettingsComponen
16
16
  background: string;
17
17
  border: Border;
18
18
  color: string;
19
+ /**
20
+ * The font of the tooltip.
21
+ *
22
+ * @default '12px sans-serif'
23
+ */
19
24
  font: string;
25
+ /**
26
+ * The format for displaying the tooltip. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of `IntlService`.
27
+ * Contains one placeholder (`"{0}"`) which represents the value.
28
+ *
29
+ * @default '{0}'
30
+ */
20
31
  format: string;
21
32
  padding: Padding | number;
33
+ /**
34
+ * If set to `true`, the chart displays the value axis crosshair tooltip.
35
+ *
36
+ * @default false
37
+ */
22
38
  visible: boolean;
23
39
  constructor(configurationService: ConfigurationService);
24
40
  static ɵfac: i0.ɵɵFactoryDeclaration<ValueAxisCrosshairTooltipComponent, never>;
@@ -19,15 +19,58 @@ export declare class ValueAxisLabelsComponent extends SettingsComponent implemen
19
19
  border: Border;
20
20
  color: string;
21
21
  content: (e: AxisLabelContentArgs) => string;
22
+ /**
23
+ * The font style of the labels.
24
+ * @default '12px sans-serif'
25
+ */
22
26
  font: string;
27
+ /**
28
+ * The format for displaying the labels. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of IntlService.
29
+ * Contains one placeholder (`"{0}"`) which represents the category value.
30
+ * @default '{0}'
31
+ */
23
32
  format: string;
33
+ /**
34
+ * The margin of the labels. A numeric value sets all margins.
35
+ * @default 0
36
+ */
24
37
  margin: Margin | number;
25
38
  mirror: boolean;
39
+ /**
40
+ * The padding of the labels. A numeric value sets all paddings.
41
+ * @default 0
42
+ */
26
43
  padding: Padding | number;
44
+ /**
45
+ * The position of the axis labels. By default, labels are positioned next to the axis.
46
+ * When `position` is set to `end`, the labels are placed at the end of the crossing axis, usually at the top or right end of the Chart unless the crossing axis has been reversed.
47
+ * Alternatively, when the `position` property is set to `start`, the axis labels will be positioned at the beginning of the crossing axis, typically located at the left or bottom end of the Chart, unless the crossing axis has been reversed.
48
+ * @default 'onAxis'
49
+ */
27
50
  position: AxisLabelsPosition;
51
+ /**
52
+ * The rotation angle (in degrees) of the labels. By default, the labels are not rotated. Angles
53
+ * increase clockwise and zero is to the left. Negative values are acceptable. Can be set to `"auto"` if
54
+ * the axis is horizontal. In this case, the labels will be rotated only if the slot size is not
55
+ * sufficient for the entire labels.
56
+ * @default 0
57
+ */
28
58
  rotation: LabelRotation | number | 'auto';
59
+ /**
60
+ * The number of labels to skip. By default, no labels are skipped.
61
+ * @default 0
62
+ */
29
63
  skip: number;
64
+ /**
65
+ * The label rendering step.
66
+ * Every n<sup>th</sup> label is rendered where `n` is the step.
67
+ * @default 1
68
+ */
30
69
  step: number;
70
+ /**
71
+ * If set to `true`, the Chart displays the value axis labels.
72
+ * @default true
73
+ */
31
74
  visible: boolean;
32
75
  visual: (e: AxisLabelVisualArgs) => drawing.Element;
33
76
  constructor(configurationService: ConfigurationService);
@@ -15,7 +15,15 @@ export declare class ValueAxisNotesIconComponent extends SettingsComponent imple
15
15
  background: string;
16
16
  border: Border;
17
17
  size: number;
18
+ /**
19
+ * The shape of the notes icon.
20
+ * @default 'circle'
21
+ */
18
22
  type: MarkerType;
23
+ /**
24
+ * The visibility of the notes icon.
25
+ * @default true
26
+ */
19
27
  visible: boolean;
20
28
  constructor(configurationService: ConfigurationService);
21
29
  static ɵfac: i0.ɵɵFactoryDeclaration<ValueAxisNotesIconComponent, never>;
@@ -16,10 +16,31 @@ export declare class ValueAxisNotesLabelComponent extends SettingsComponent impl
16
16
  border: Border;
17
17
  color: string;
18
18
  content: (e: AxisNoteContentArgs) => string;
19
+ /**
20
+ * The font style of the label.
21
+ * @default '12px sans-serif'
22
+ */
19
23
  font: string;
24
+ /**
25
+ * The format used to display the notes label. Uses the IntlService [`format`]({% slug api_intl_intlservice %}#toc-format) method.
26
+ * Contains one placeholder (`"{0}"`) which represents the axis value.
27
+ * @default '{0}'
28
+ */
20
29
  format: string;
30
+ /**
31
+ * The position of the labels.
32
+ * @default 'inside'
33
+ */
21
34
  position: NoteLabelPosition;
35
+ /**
36
+ * The rotation angle of the label. By default, the label is not rotated.
37
+ * @default 0
38
+ */
22
39
  rotation: number;
40
+ /**
41
+ * If set to `true`, the Chart displays the value axis notes label.
42
+ * @default true
43
+ */
23
44
  visible: boolean;
24
45
  constructor(configurationService: ConfigurationService);
25
46
  static ɵfac: i0.ɵɵFactoryDeclaration<ValueAxisNotesLabelComponent, never>;
@@ -16,12 +16,36 @@ export declare class ValueAxisTitleComponent extends SettingsComponent implement
16
16
  background: string;
17
17
  border: Border;
18
18
  color: string;
19
+ /**
20
+ * The font style of the title.
21
+ * @default '16px sans-serif'
22
+ */
19
23
  font: string;
24
+ /**
25
+ * The margin of the title. A numeric value sets all margins.
26
+ * @default 5
27
+ */
20
28
  margin: Margin | number;
29
+ /**
30
+ * The padding of the title. A numeric value sets all paddings.
31
+ * @default 0
32
+ */
21
33
  padding: Padding | number;
34
+ /**
35
+ * The position of the title.
36
+ * @default 'center'
37
+ */
22
38
  position: AxisTitlePosition;
39
+ /**
40
+ * The rotation angle of the title. By default, the title is not rotated.
41
+ * @default 0
42
+ */
23
43
  rotation: number;
24
44
  text: string;
45
+ /**
46
+ * If set to `true`, the Chart displays the value axis title.
47
+ * @default true
48
+ */
25
49
  visible: boolean;
26
50
  visual: (e: TitleVisualArgs) => drawing.Element;
27
51
  constructor(configurationService: ConfigurationService);
@@ -21,17 +21,52 @@ export declare class ValueAxisItemComponent extends CollectionItemComponent impl
21
21
  majorGridLines: GridLines;
22
22
  majorTicks: AxisTicks;
23
23
  majorUnit: number;
24
+ /**
25
+ * The maximum value of the axis.
26
+ * @default 1
27
+ */
24
28
  max: any;
29
+ /**
30
+ * The minimum value of the axis.
31
+ * @default 0
32
+ */
25
33
  min: any;
26
34
  minorGridLines: GridLines;
27
35
  minorTicks: AxisTicks;
28
36
  minorUnit: number;
37
+ /**
38
+ * The unique axis name. Used to associate a series with a value axis by using the [`series.axis`]({% slug api_charts_series %}#toc-axis) option.
39
+ * @default 'primary'
40
+ */
29
41
  name: string;
42
+ /**
43
+ * If set to `true`, the Chart prevents the automatic axis range from snapping to zero.
44
+ * Setting it to `false` forces the automatic axis range to snap to zero.
45
+ * @default true
46
+ */
30
47
  narrowRange: boolean;
31
48
  pane: string;
32
49
  plotBands: PlotBand[];
50
+ /**
51
+ * If set to `true`, the value axis direction is reversed.
52
+ * By default, the categories are listed from left to right and from bottom to top.
53
+ *
54
+ * Radar and Polar Charts do not support reverse value axes.
55
+ * @default false
56
+ */
33
57
  reverse: boolean;
58
+ /**
59
+ * The axis type.
60
+ *
61
+ * The "numeric" value refers to a numeric axis, while "log" represents a logarithmic axis.
62
+ * @default 'numeric'
63
+ *
64
+ */
34
65
  type: 'numeric' | 'log';
66
+ /**
67
+ * If set to `true`, the Chart displays the value axis. By default, the value axis is visible.
68
+ * @default true
69
+ */
35
70
  visible: boolean;
36
71
  crosshair: ValueAxisCrosshair;
37
72
  labels: ValueAxisLabels;
@@ -11,32 +11,12 @@ import * as i0 from "@angular/core";
11
11
  * A collection of one or more value axis configuration components.
12
12
  *
13
13
  * @example
14
- * ```ts
15
- * import { Component } from '@angular/core';
16
- *
17
- * _@Component({
18
- * selector: 'my-app',
19
- * template: `
20
- * <kendo-chart>
21
- * <kendo-chart-value-axis>
22
- * <kendo-chart-value-axis-item>
23
- * </kendo-chart-value-axis-item>
24
- * <kendo-chart-value-axis-item name="secondAxis">
25
- * </kendo-chart-value-axis-item>
26
- * </kendo-chart-value-axis>
27
- * <kendo-chart-series>
28
- * <kendo-chart-series-item type="line" [data]="[1, 2, 3]">
29
- * </kendo-chart-series-item>
30
- * <kendo-chart-series-item type="line" [data]="[0.1, 0.2, 0.3]"
31
- * axis="secondAxis">
32
- * </kendo-chart-series-item>
33
- * </kendo-chart-series>
34
- * </kendo-chart>
35
- * `
36
- * })
37
- * class AppComponent {
38
- * }
39
- *
14
+ * ```html
15
+ * <kendo-chart>
16
+ * <kendo-chart-value-axis>
17
+ * ....
18
+ * </kendo-chart-value-axis>
19
+ * </kendo-chart>
40
20
  * ```
41
21
  */
42
22
  export declare class ValueAxisComponent extends CollectionComponent {
@@ -13,8 +13,20 @@ import * as i0 from "@angular/core";
13
13
  export declare class XAxisCrosshairComponent extends SettingsComponent implements XAxisCrosshair {
14
14
  configurationService: ConfigurationService;
15
15
  color: string;
16
+ /**
17
+ * The opacity of the crosshair. By default, the crosshair is opaque.
18
+ * @default 1
19
+ */
16
20
  opacity: number;
21
+ /**
22
+ * If set to `true`, the Chart displays the X-axis crosshair of the Scatter Chart.
23
+ * @default false
24
+ */
17
25
  visible: boolean;
26
+ /**
27
+ * The width of the crosshair in pixels.
28
+ * @default 1
29
+ */
18
30
  width: number;
19
31
  tooltip: XAxisCrosshairTooltip;
20
32
  constructor(configurationService: ConfigurationService);
@@ -16,9 +16,27 @@ export declare class XAxisCrosshairTooltipComponent extends SettingsComponent im
16
16
  background: string;
17
17
  border: Border;
18
18
  color: string;
19
+ /**
20
+ * The font of the tooltip.
21
+ * @default '12px sans-serif'
22
+ */
19
23
  font: string;
24
+ /**
25
+ * The format for displaying the tooltip. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of `IntlService`.
26
+ * Contains one placeholder (`"{0}"`) which represents the value.
27
+ * @default '{0}'
28
+ */
20
29
  format: string;
30
+ /**
31
+ * The padding of the crosshair tooltip. A numeric value sets all paddings.
32
+ * @default 0
33
+ */
21
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
+ * @default false
39
+ */
22
40
  visible: boolean;
23
41
  constructor(configurationService: ConfigurationService);
24
42
  static ɵfac: i0.ɵɵFactoryDeclaration<XAxisCrosshairTooltipComponent, never>;
@@ -20,15 +20,44 @@ export declare class XAxisLabelsComponent extends SettingsComponent implements X
20
20
  content: (e: AxisLabelContentArgs) => string;
21
21
  culture: string;
22
22
  dateFormats: DateFormats;
23
+ /**
24
+ * The font style of the labels.
25
+ * @default '12px sans-serif'
26
+ */
23
27
  font: string;
24
28
  format: string;
25
29
  margin: Margin | number;
26
30
  mirror: boolean;
31
+ /**
32
+ * The padding of the labels. A numeric value sets all paddings.
33
+ * @default 0
34
+ */
27
35
  padding: Padding | number;
36
+ /**
37
+ * The position of the axis labels. By default, labels are positioned next to the axis.
38
+ * @default 'onAxis'
39
+ */
28
40
  position: AxisLabelsPosition;
41
+ /**
42
+ * The rotation angle of the labels. By default, the labels are not rotated. Can be set to `"auto"`.
43
+ * In this case, the labels are rotated only if the slot size is not sufficient for the entire labels.
44
+ * @default 0
45
+ */
29
46
  rotation: LabelRotation | number | 'auto';
47
+ /**
48
+ * The number of labels to skip.
49
+ * @default 1
50
+ */
30
51
  skip: number;
52
+ /**
53
+ * The label rendering step&mdash;renders every n<sup>th</sup> label. By default, every label is rendered.
54
+ * @default 1
55
+ */
31
56
  step: number;
57
+ /**
58
+ * If set to `true`, the Chart displays the X-axis labels. By default, the X-axis labels are visible.
59
+ * @default true
60
+ */
32
61
  visible: boolean;
33
62
  visual: (e: AxisLabelVisualArgs) => drawing.Element;
34
63
  constructor(configurationService: ConfigurationService);
@@ -15,7 +15,15 @@ export declare class XAxisNotesIconComponent extends SettingsComponent implement
15
15
  background: string;
16
16
  border: Border;
17
17
  size: number;
18
+ /**
19
+ * The shape of the notes icon.
20
+ * @default "circle"
21
+ */
18
22
  type: MarkerType;
23
+ /**
24
+ * The visibility of the notes icon.
25
+ * @default true
26
+ */
19
27
  visible: boolean;
20
28
  constructor(configurationService: ConfigurationService);
21
29
  static ɵfac: i0.ɵɵFactoryDeclaration<XAxisNotesIconComponent, never>;
@@ -16,10 +16,32 @@ export declare class XAxisNotesLabelComponent extends SettingsComponent implemen
16
16
  border: Border;
17
17
  color: string;
18
18
  content: (e: AxisNoteContentArgs) => string;
19
+ /**
20
+ * The font style of the label.
21
+ * @default '12px sans-serif''
22
+ */
19
23
  font: string;
24
+ /**
25
+ * The format for displaying the notes label. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of `IntlService`.
26
+ * Contains one placeholder (`"{0}"`) which represents the axis value.
27
+ * @default '{0}'
28
+ */
20
29
  format: string;
30
+ /**
31
+ * The position of the labels.
32
+ * @default 'inside'
33
+ */
21
34
  position: NoteLabelPosition;
35
+ /**
36
+ * The rotation angle of the label. By default, the label is not rotated.
37
+ * @default 0
38
+ */
22
39
  rotation: number;
40
+ /**
41
+ * If set to `true`, the Chart displays the X-axis notes label.
42
+ * By default, the X-axis notes label is visible.
43
+ * @default true
44
+ */
23
45
  visible: boolean;
24
46
  constructor(configurationService: ConfigurationService);
25
47
  static ɵfac: i0.ɵɵFactoryDeclaration<XAxisNotesLabelComponent, never>;
@@ -16,12 +16,37 @@ export declare class XAxisTitleComponent extends SettingsComponent implements XA
16
16
  background: string;
17
17
  border: Border;
18
18
  color: string;
19
+ /**
20
+ * The font style of the title.
21
+ * @default 'bold 16px sans-serif'
22
+ */
19
23
  font: string;
24
+ /**
25
+ * The margin of the title. A numeric value sets all margins.
26
+ * @default 5
27
+ */
20
28
  margin: Margin | number;
29
+ /**
30
+ * The padding of the title. A numeric value sets all paddings.
31
+ * @default 5
32
+ */
21
33
  padding: Padding | number;
34
+ /**
35
+ * The position of the title.
36
+ * @default 'center'
37
+ */
22
38
  position: AxisTitlePosition;
39
+ /**
40
+ * The rotation angle of the title. By default, the title is not rotated.
41
+ * @default 0
42
+ */
23
43
  rotation: number;
24
44
  text: string;
45
+ /**
46
+ * If set to `true`, the Chart displays the X axis title of the Scatter Chart.
47
+ * By default, the X-axis title of the Scatter Chart is visible.
48
+ * @default true
49
+ */
25
50
  visible: boolean;
26
51
  visual: (e: TitleVisualArgs) => drawing.Element;
27
52
  constructor(configurationService: ConfigurationService);
@@ -37,7 +37,20 @@ export declare class XAxisItemComponent extends CollectionItemComponent implemen
37
37
  plotBands: PlotBand[];
38
38
  reverse: boolean;
39
39
  startAngle: number;
40
+ /**
41
+ * The axis type.
42
+ *
43
+ * The options are `numeric` for a numeric axis, `date` for a specialized axis for displaying chronological data, and `log` for a logarithmic axis.
44
+ *
45
+ * If the series X value is of the `date` type, the Chart automatically switches to a date axis.
46
+ * To avoid this behavior, set the `type`.
47
+ * @default 'numeric'
48
+ */
40
49
  type: 'numeric' | 'log' | 'date';
50
+ /**
51
+ * If set to `true`, the Chart displays the X axis. By default, the X axis is visible.
52
+ * @default true
53
+ */
41
54
  visible: boolean;
42
55
  weekStartDay: WeekStartDay;
43
56
  crosshair: XAxisCrosshair;
@@ -21,15 +21,57 @@ export declare class YAxisLabelsComponent extends SettingsComponent implements Y
21
21
  content: (e: AxisLabelContentArgs) => string;
22
22
  culture: string;
23
23
  dateFormats: DateFormats;
24
+ /**
25
+ * The font style of the labels.
26
+ * @default '12px sans-serif'
27
+ */
24
28
  font: string;
29
+ /**
30
+ * The format for displaying the labels. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of `IntlService`.
31
+ * Contains one placeholder (`"{0}"`) which represents the category value.
32
+ * @default '{0}'
33
+ */
25
34
  format: string;
35
+ /**
36
+ * The margin of the labels. A numeric value sets all margins.
37
+ * @default 0
38
+ */
26
39
  margin: Margin | number;
40
+ /**
41
+ * If set to `true`, the Chart mirrors the axis labels and ticks. If the labels are normally on the
42
+ * left side of the axis, the mirroring of the axis renders them to the right.
43
+ * @default false
44
+ */
27
45
  mirror: boolean;
46
+ /**
47
+ * The padding of the labels. A numeric value sets all paddings.
48
+ * @default 0
49
+ */
28
50
  padding: Padding | number;
51
+ /**
52
+ * The position of the axis labels. By default, labels are positioned next to the axis.
53
+ * @default 'onAxis'
54
+ */
29
55
  position: AxisLabelsPosition;
56
+ /**
57
+ * The rotation angle of the labels. By default, the labels are not rotated.
58
+ * @default 0
59
+ */
30
60
  rotation: LabelRotation | number | 'auto';
61
+ /**
62
+ * The number of labels to skip.
63
+ * @default 0
64
+ */
31
65
  skip: number;
66
+ /**
67
+ * The label rendering step&mdash;renders every `n`<sup>th</sup> label. By default, every label is rendered.
68
+ * @default 1
69
+ */
32
70
  step: number;
71
+ /**
72
+ * If set to `true`, the Chart displays the Y-axis labels. By default, the Y-axis labels are visible.
73
+ * @default true
74
+ */
33
75
  visible: boolean;
34
76
  visual: (e: AxisLabelVisualArgs) => drawing.Element;
35
77
  constructor(configurationService: ConfigurationService);
@@ -15,7 +15,15 @@ export declare class YAxisNotesIconComponent extends SettingsComponent implement
15
15
  background: string;
16
16
  border: Border;
17
17
  size: number;
18
+ /**
19
+ * The shape of the notes icon.
20
+ * @default "circle"
21
+ */
18
22
  type: MarkerType;
23
+ /**
24
+ * The visibility of the notes icon.
25
+ * @default true
26
+ */
19
27
  visible: boolean;
20
28
  constructor(configurationService: ConfigurationService);
21
29
  static ɵfac: i0.ɵɵFactoryDeclaration<YAxisNotesIconComponent, never>;
@@ -16,10 +16,32 @@ export declare class YAxisNotesLabelComponent extends SettingsComponent implemen
16
16
  border: Border;
17
17
  color: string;
18
18
  content: (e: AxisNoteContentArgs) => string;
19
+ /**
20
+ * The font style of the label.
21
+ * @default '12px sans-serif'
22
+ */
19
23
  font: string;
24
+ /**
25
+ * The format for displaying the notes label. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of `IntlService`.
26
+ * Contains one placeholder (`"{0}"`) which represents the axis value.
27
+ * @default '{0}'
28
+ */
20
29
  format: string;
30
+ /**
31
+ * The position of the labels.
32
+ * @default 'inside'
33
+ */
21
34
  position: NoteLabelPosition;
35
+ /**
36
+ * The rotation angle of the label. By default, the label is not rotated.
37
+ * @default 0
38
+ */
22
39
  rotation: number;
40
+ /**
41
+ * If set to `true`, the Chart displays the Y-axis notes label.
42
+ * By default, the Y-axis notes label is visible.
43
+ * @default true
44
+ */
23
45
  visible: boolean;
24
46
  constructor(configurationService: ConfigurationService);
25
47
  static ɵfac: i0.ɵɵFactoryDeclaration<YAxisNotesLabelComponent, never>;
@@ -16,12 +16,37 @@ export declare class YAxisTitleComponent extends SettingsComponent implements YA
16
16
  background: string;
17
17
  border: Border;
18
18
  color: string;
19
+ /**
20
+ * The font style of the title.
21
+ * @default 'bold 16px sans-serif'
22
+ */
19
23
  font: string;
24
+ /**
25
+ * The margin of the title. A numeric value sets all margins.
26
+ * @default 5
27
+ */
20
28
  margin: Margin | number;
29
+ /**
30
+ * The padding of the title. A numeric value sets all paddings.
31
+ * @default 0
32
+ */
21
33
  padding: Padding | number;
34
+ /**
35
+ * The position of the title.
36
+ * @default 'center'
37
+ */
22
38
  position: AxisTitlePosition;
39
+ /**
40
+ * The rotation angle of the title. By default, the title is not rotated.
41
+ * @default 0
42
+ */
23
43
  rotation: number;
24
44
  text: string;
45
+ /**
46
+ * If set to `true`, the Chart displays the Scatter Chart Y-axis title.
47
+ * By default, the Scatter Chart Y-axis title is visible.
48
+ * @default true
49
+ */
25
50
  visible: boolean;
26
51
  visual: (e: TitleVisualArgs) => drawing.Element;
27
52
  constructor(configurationService: ConfigurationService);
@@ -30,11 +30,34 @@ export declare class YAxisItemComponent extends CollectionItemComponent implemen
30
30
  minorTicks: AxisTicks;
31
31
  minorUnit: number;
32
32
  name: string;
33
+ /**
34
+ * If set to `true`, the Chart prevents the automatic axis range from snapping to zero.
35
+ * Setting it to `false` forces the automatic axis range to snap to zero.
36
+ * @default false
37
+ */
33
38
  narrowRange: boolean;
34
39
  pane: string;
35
40
  plotBands: PlotBand[];
41
+ /**
42
+ * If set to `true`, the value axis direction is reversed.
43
+ * By default, the values increase from left to right and from bottom to top.
44
+ * @default false
45
+ */
36
46
  reverse: boolean;
47
+ /**
48
+ * The axis type.
49
+ *
50
+ * The options are `numeric` for a numeric axis, `date` for a specialized axis for displaying chronological data, and `log` for a logarithmic axis.
51
+ *
52
+ * If the series Y value is of the `date` type, the Chart automatically switches to a date axis.
53
+ * To avoid this behavior, set the `type`.
54
+ * @default "numeric"
55
+ */
37
56
  type: 'numeric' | 'log' | 'date';
57
+ /**
58
+ * If set to `true`, the Chart displays the Y axis. By default, the Y axis is visible.
59
+ * @default true
60
+ */
38
61
  visible: boolean;
39
62
  crosshair: YAxisCrosshair;
40
63
  labels: YAxisLabels;
@@ -38,6 +38,8 @@ export declare class ChartBreadcrumbComponent implements OnInit, OnChanges, OnDe
38
38
  * @hidden
39
39
  */
40
40
  onItemClick(target: BreadCrumbItem): void;
41
+ private onDrilldown;
42
+ private onDrilldownLevelChange;
41
43
  static ɵfac: i0.ɵɵFactoryDeclaration<ChartBreadcrumbComponent, never>;
42
44
  static ɵcmp: i0.ɵɵComponentDeclaration<ChartBreadcrumbComponent, "kendo-chart-breadcrumb", ["kendoChartBreadcrumb"], { "chart": "chart"; "rootItem": "rootItem"; }, {}, never, never>;
43
45
  }