@progress/kendo-angular-charts 13.2.0-develop.6 → 13.2.0-develop.8

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
@@ -12,57 +12,16 @@ import * as i0 from "@angular/core";
12
12
  * The configuration component for a Chart pane.
13
13
  *
14
14
  * @example
15
- * ```ts
16
- * import { Component } from '@angular/core';
17
- *
18
- * _@Component({
19
- * selector: 'my-app',
20
- * template: `
21
- * <kendo-chart>
22
- * <kendo-chart-panes>
23
- * <kendo-chart-pane name="top" background="pink" [border]="{ color: 'black', dashtype: 'dash', width: 2 }">
24
- * <!-- ^^^^^^^^^^
25
- * Unique ID for the pane.
26
- * -->
27
- * </kendo-chart-pane>
28
- * <kendo-chart-pane name="bottom" [height]="150" title="Bottom pane">
29
- * <!-- ^^^^^^^^^^^^^^
30
- * Note that the binding is required,
31
- * otherwise the property will be
32
- * bound to a '100' string.
33
- * -->
34
- * </kendo-chart-pane>
35
- * </kendo-chart-panes>
36
- *
37
- * <kendo-chart-value-axis>
38
- * <kendo-chart-value-axis-item name="top">
39
- * <!-- ^^^^^^^^^^
40
- * Unique ID for the axis.
41
- * No need to set a pane as it will use the first,
42
- * 'top' pane by default.
43
- * -->
44
- * </kendo-chart-value-axis-item>
45
- * <kendo-chart-value-axis-item name="bottom"
46
- * pane="bottom">
47
- * <!-- ^^^^^^^^^^^^^
48
- * Move the axis to the bottom pane.
49
- * -->
50
- * </kendo-chart-value-axis-item>
51
- * </kendo-chart-value-axis>
52
- * <kendo-chart-series>
53
- * <kendo-chart-series-item [data]="seriesData[0]">
54
- * <!-- Will use the first, 'top' value axis by default. -->
55
- * </kendo-chart-series-item>
56
- * <kendo-chart-series-item type="line" [data]="seriesData[1]" axis="bottom">
57
- * <!-- Plot this series to the 'bottom' axis. ^^^^^^^^^^^^^ -->
58
- * </kendo-chart-series-item>
59
- * </kendo-chart-series>
60
- * </kendo-chart>
61
- * `
62
- * })
63
- * export class AppComponent {
64
- * public seriesData: number[][] = [[1, 2, 3, 5], [0, 1, 0, 1]];
65
- * }
15
+ * ```html
16
+ * <kendo-chart>
17
+ * <kendo-chart-panes>
18
+ * <kendo-chart-pane
19
+ * name="top"
20
+ * background="pink"
21
+ * [border]="{ color: 'black', dashType: 'dash', width: 2 }">
22
+ * </kendo-chart-pane>
23
+ * </kendo-chart-panes>
24
+ * </kendo-chart>
66
25
  * ```
67
26
  */
68
27
  export declare class PaneComponent extends CollectionItemComponent implements Pane {
@@ -72,8 +31,16 @@ export declare class PaneComponent extends CollectionItemComponent implements Pa
72
31
  border: Border;
73
32
  clip: boolean;
74
33
  height: number;
34
+ /**
35
+ * The margin of the pane. A numeric value sets all margins.
36
+ * @default 0
37
+ */
75
38
  margin: Margin | number;
76
39
  name: string;
40
+ /**
41
+ * The padding of the pane. A numeric value sets all paddings.
42
+ * @default 0
43
+ */
77
44
  padding: Padding | number;
78
45
  title: string | PanesTitle;
79
46
  constructor(configurationService: ConfigurationService, collectionService: CollectionService);
@@ -11,38 +11,14 @@ import * as i0 from "@angular/core";
11
11
  * A collection of one or more pane 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-panes>
22
- * <kendo-chart-pane name="topPane">
23
- * </kendo-chart-pane>
24
- * <kendo-chart-pane name="bottomPane">
25
- * </kendo-chart-pane>
26
- * </kendo-chart-panes>
27
- * <kendo-chart-value-axis>
28
- * <kendo-chart-value-axis-item pane="topPane">
29
- * </kendo-chart-value-axis-item>
30
- * <kendo-chart-value-axis-item name="bottomAxis" pane="bottomPane">
31
- * </kendo-chart-value-axis-item>
32
- * </kendo-chart-value-axis>
33
- * <kendo-chart-series>
34
- * <kendo-chart-series-item type="line" [data]="[1, 2, 3]">
35
- * </kendo-chart-series-item>
36
- * <kendo-chart-series-item type="line" [data]="[1, 2, 3, 4]"
37
- * axis="bottomAxis">
38
- * </kendo-chart-series-item>
39
- * </kendo-chart-series>
40
- * </kendo-chart>
41
- * `
42
- * })
43
- * class AppComponent {
44
- * }
45
- *
14
+ * ```html
15
+ * <kendo-chart>
16
+ * <kendo-chart-panes>
17
+ * <kendo-chart-pane name="topPane"></kendo-chart-pane>
18
+ * <kendo-chart-pane name="bottomPane"></kendo-chart-pane>
19
+ * </kendo-chart-panes>
20
+ * ...
21
+ * </kendo-chart>
46
22
  * ```
47
23
  */
48
24
  export declare class PanesComponent extends CollectionComponent {
@@ -14,10 +14,28 @@ import * as i0 from "@angular/core";
14
14
  */
15
15
  export declare class PlotAreaComponent extends SettingsComponent implements PlotArea {
16
16
  configurationService: ConfigurationService;
17
+ /**
18
+ * The background color of the Chart plot area.
19
+ * Accepts a valid CSS color string, including HEX and RGB.
20
+ * @default 'white'
21
+ */
17
22
  background: string;
18
23
  border: Border;
24
+ /**
25
+ * The margin of the plot area. A numeric value sets all margins.
26
+ * @default 5
27
+ */
19
28
  margin: Margin | number;
29
+ /**
30
+ * The background opacity of the plot area. By default, the background is opaque.
31
+ * @default 1
32
+ */
20
33
  opacity: number;
34
+ /**
35
+ * The padding of the plot area. A numeric value sets all paddings.
36
+ * The default padding for the Pie, Donut, Radar, and Polar Charts is proportional of the Chart size.
37
+ * @default 5
38
+ */
21
39
  padding: Padding | number;
22
40
  constructor(configurationService: ConfigurationService);
23
41
  static ɵfac: i0.ɵɵFactoryDeclaration<PlotAreaComponent, never>;
@@ -17,10 +17,30 @@ export declare class SeriesDefaultsLabelsComponent extends SettingsComponent imp
17
17
  border: Border;
18
18
  color: string;
19
19
  content: (e: SeriesLabelsContentArgs) => string;
20
+ /**
21
+ * The font style of the labels.
22
+ * @default '12px sans-serif'
23
+ */
20
24
  font: string;
25
+ /**
26
+ * The format of the labels. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of `IntlService`.
27
+ * @default '{0}'
28
+ */
21
29
  format: string;
30
+ /**
31
+ * The margin of the labels. A numeric value sets all margins.
32
+ * @default 0
33
+ */
22
34
  margin: Margin | number;
35
+ /**
36
+ * The padding of the labels. A numeric value sets all paddings.
37
+ * @default 0
38
+ */
23
39
  padding: Padding | number;
40
+ /**
41
+ * If set to `true`, the Chart displays the series labels.
42
+ * @default false
43
+ */
24
44
  visible: boolean;
25
45
  visual: (e: SeriesLabelsVisualArgs) => drawing.Element;
26
46
  from: SeriesDefaultsLabelsFrom;
@@ -16,10 +16,30 @@ export declare class SeriesDefaultsLabelsFromComponent extends SettingsComponent
16
16
  border: Border;
17
17
  color: string;
18
18
  content: (e: SeriesLabelsContentArgs) => string;
19
+ /**
20
+ * The font style of the from labels.
21
+ * @default '12px sans-serif'
22
+ */
19
23
  font: string;
24
+ /**
25
+ * The format of the `from` labels. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) of `IntlService`.
26
+ * @default '{0}'
27
+ */
20
28
  format: string;
29
+ /**
30
+ * The margin of the `from` labels. A numeric value sets all margins.
31
+ * @default 0
32
+ */
21
33
  margin: Margin | number;
34
+ /**
35
+ * The padding of the `from` labels. A numeric value sets all paddings.
36
+ * @default 0
37
+ */
22
38
  padding: Padding | number;
39
+ /**
40
+ * If set to `true`, the Chart displays the series `from` labels.
41
+ * @default false
42
+ */
23
43
  visible: boolean;
24
44
  constructor(configurationService: ConfigurationService);
25
45
  static ɵfac: i0.ɵɵFactoryDeclaration<SeriesDefaultsLabelsFromComponent, never>;
@@ -16,10 +16,30 @@ export declare class SeriesDefaultsLabelsToComponent extends SettingsComponent i
16
16
  border: Border;
17
17
  color: string;
18
18
  content: (e: SeriesLabelsContentArgs) => string;
19
+ /**
20
+ * The font style of the `to` labels.
21
+ * @default '12px sans-serif"'
22
+ */
19
23
  font: string;
24
+ /**
25
+ * The format of the `to` labels. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of `IntlService`.
26
+ * @default '{0}'
27
+ */
20
28
  format: string;
29
+ /**
30
+ * The margin of the `to` labels. A numeric value sets all margins.
31
+ * @default 0
32
+ */
21
33
  margin: Margin | number;
34
+ /**
35
+ * The padding of the `to` labels. A numeric value sets all paddings.
36
+ * @default 0
37
+ */
22
38
  padding: Padding | number;
39
+ /**
40
+ * If set to `true`, the Chart displays the `to` labels of the series.
41
+ * @default false
42
+ */
23
43
  visible: boolean;
24
44
  constructor(configurationService: ConfigurationService);
25
45
  static ɵfac: i0.ɵɵFactoryDeclaration<SeriesDefaultsLabelsToComponent, never>;
@@ -15,7 +15,15 @@ export declare class SeriesDefaultsNotesIconComponent extends SettingsComponent
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<SeriesDefaultsNotesIconComponent, never>;
@@ -16,10 +16,31 @@ export declare class SeriesDefaultsNotesLabelComponent extends SettingsComponent
16
16
  border: Border;
17
17
  color: string;
18
18
  content: (e: SeriesNoteContentArgs) => 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 [`seriesDefaults`]({% slug api_charts_seriesdefaults %}) notes label.
42
+ * @default true
43
+ */
23
44
  visible: boolean;
24
45
  constructor(configurationService: ConfigurationService);
25
46
  static ɵfac: i0.ɵɵFactoryDeclaration<SeriesDefaultsNotesLabelComponent, never>;
@@ -15,9 +15,21 @@ export declare class SeriesDefaultsTooltipComponent extends SettingsComponent im
15
15
  background: string;
16
16
  border: Border;
17
17
  color: string;
18
+ /**
19
+ * The tooltip font.
20
+ * @default '12px sans serif'
21
+ */
18
22
  font: string;
19
23
  format: string;
24
+ /**
25
+ * The padding of the tooltip. A numeric value sets all paddings.
26
+ * @default 0
27
+ */
20
28
  padding: Padding | number;
29
+ /**
30
+ * If set to `true`, the Chart displays the series tooltip.
31
+ * @default false
32
+ */
21
33
  visible: boolean;
22
34
  constructor(configurationService: ConfigurationService);
23
35
  static ɵfac: i0.ɵɵFactoryDeclaration<SeriesDefaultsTooltipComponent, never>;
@@ -15,10 +15,26 @@ import * as i0 from "@angular/core";
15
15
  export declare class SeriesDefaultsComponent extends SettingsComponent implements SeriesDefaults {
16
16
  configurationService: ConfigurationService;
17
17
  border: Border;
18
+ /**
19
+ * The distance between category clusters.
20
+ * @default 1.5
21
+ */
18
22
  gap: number;
19
23
  highlight: SeriesHighlight;
20
24
  overlay: Overlay;
25
+ /**
26
+ * The space between the Chart series as a proportion of the series width.
27
+ * The `spacing` option is supported when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"bar"`, `"column"`, `"candlestick"`, `"ohlc"`,
28
+ * and `"waterfall"`.
29
+ * @default 0.4
30
+ */
21
31
  spacing: number;
32
+ /**
33
+ * A Boolean value which indicates if the series has to be stacked.
34
+ * The stack option is supported when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"bar"`, `"column"`, `"line"`, `"area"`,
35
+ * `"verticalLine"`, `"verticalArea"`, `"radarLine"`, `"radarArea"`, and `"radarColumn"`.
36
+ * @default false
37
+ */
22
38
  stack: boolean | string | SeriesStack;
23
39
  type: SeriesType;
24
40
  visual: (e: SeriesVisualArgs) => drawing.Element;
@@ -15,6 +15,10 @@ import * as i0 from "@angular/core";
15
15
  export declare class SeriesErrorBarsComponent extends SettingsComponent implements SeriesErrorBars {
16
16
  configurationService: ConfigurationService;
17
17
  color: string;
18
+ /**
19
+ * If set to `false`, the caps of the error bars are not displayed. By default, the caps are visible.
20
+ * @default true
21
+ */
18
22
  endCaps: boolean;
19
23
  line: ErrorBarLine;
20
24
  value: string;
@@ -17,7 +17,15 @@ export declare class SeriesExtremesComponent extends SettingsComponent implement
17
17
  background: string;
18
18
  border: Border;
19
19
  rotation: number;
20
+ /**
21
+ * The extremes size in pixels.
22
+ * @default 6
23
+ */
20
24
  size: number;
25
+ /**
26
+ * The shape of the series extremes.
27
+ * @default 'circle'
28
+ */
21
29
  type: MarkerType;
22
30
  constructor(configurationService: ConfigurationService);
23
31
  static ɵfac: i0.ɵɵFactoryDeclaration<SeriesExtremesComponent, never>;
@@ -19,6 +19,10 @@ export declare class SeriesHighlightComponent extends SettingsComponent implemen
19
19
  markers: MarkersHighlight;
20
20
  opacity: number;
21
21
  toggle: (e: HighlightToggleArgs) => void;
22
+ /**
23
+ * If set to `true`, the Chart highlights the series when the user hovers over it with the mouse.
24
+ * @default true
25
+ */
22
26
  visible: boolean;
23
27
  visual: (e: HighlightVisualArgs) => drawing.Element;
24
28
  constructor(configurationService: ConfigurationService);
@@ -19,16 +19,41 @@ export declare class SeriesLabelsComponent extends SettingsComponent implements
19
19
  border: Border;
20
20
  color: string;
21
21
  content: (e: SeriesLabelsContentArgs) => string;
22
+ /**
23
+ * The distance between the labels when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"donut"` or `"pie"`.
24
+ * @default 35
25
+ */
22
26
  distance: number;
27
+ /**
28
+ * The font style of the labels.
29
+ * @default '12px sans-serif'
30
+ */
23
31
  font: string;
32
+ /**
33
+ * The format of the labels. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of the `IntlService`.
34
+ * @default '{0}'
35
+ */
24
36
  format: string;
37
+ /**
38
+ * The margin of the labels. A numeric value sets all margins.
39
+ * @default 5
40
+ */
25
41
  margin: Margin | number;
42
+ /**
43
+ * The padding of the labels. A numeric value sets all paddings.
44
+ * Bar and Column series always apply full padding and ignore this setting.
45
+ * @default 0
46
+ */
26
47
  padding: Padding | number;
27
48
  /**
28
49
  * The position of the labels.
29
50
  */
30
51
  position: SeriesLabelsPosition;
31
52
  rotation: number;
53
+ /**
54
+ * If set to `true`, the Chart displays the series labels.
55
+ * @default false
56
+ */
32
57
  visible: boolean;
33
58
  visual: (e: SeriesLabelsVisualArgs) => drawing.Element;
34
59
  from: SeriesLabelsFrom;
@@ -16,11 +16,31 @@ export declare class SeriesLabelsFromComponent extends SettingsComponent impleme
16
16
  border: Border;
17
17
  color: string;
18
18
  content: (e: SeriesLabelsContentArgs) => string;
19
+ /**
20
+ * The font style of the `from` labels.
21
+ * @default '12px sans-serif'
22
+ */
19
23
  font: string;
24
+ /**
25
+ * The format of the `from` labels. Uses the `IntlService` [`format`]({% slug api_intl_intlservice %}#toc-format) method.
26
+ * @default '{0}'
27
+ */
20
28
  format: string;
29
+ /**
30
+ * The margin of the `from` labels. A numeric value sets all margins.
31
+ * @default 5
32
+ */
21
33
  margin: Margin | number;
34
+ /**
35
+ * The padding of the `from` labels. A numeric value sets all paddings.
36
+ * @default 0
37
+ */
22
38
  padding: Padding | number;
23
39
  position: 'center' | 'insideBase' | 'insideEnd' | 'outsideEnd';
40
+ /**
41
+ * If set to `true`, the Chart displays the series `from` labels.
42
+ * @default false
43
+ */
24
44
  visible: boolean;
25
45
  constructor(configurationService: ConfigurationService);
26
46
  static ɵfac: i0.ɵɵFactoryDeclaration<SeriesLabelsFromComponent, never>;
@@ -16,11 +16,31 @@ export declare class SeriesLabelsToComponent extends SettingsComponent implement
16
16
  border: Border;
17
17
  color: string;
18
18
  content: (e: SeriesLabelsContentArgs) => string;
19
+ /**
20
+ * The font style of the `to` labels.
21
+ * @default '12px sans-serif'
22
+ */
19
23
  font: string;
24
+ /**
25
+ * The format of the `to` labels. Uses [IntlService format]({% slug api_intl_intlservice %}#toc-format).
26
+ * @default '{0}'
27
+ */
20
28
  format: string;
29
+ /**
30
+ * The margin of the `to` labels. A numeric value sets all margins.
31
+ * @default 5
32
+ */
21
33
  margin: Margin | number;
34
+ /**
35
+ * The padding of the `to` labels. A numeric value sets all paddings.
36
+ * @default 0
37
+ */
22
38
  padding: Padding | number;
23
39
  position: 'center' | 'insideBase' | 'insideEnd' | 'outsideEnd';
40
+ /**
41
+ * If set to `true`, the Chart displays the series `to` labels.
42
+ * @default false
43
+ */
24
44
  visible: boolean;
25
45
  constructor(configurationService: ConfigurationService);
26
46
  static ɵfac: i0.ɵɵFactoryDeclaration<SeriesLabelsToComponent, never>;
@@ -78,8 +78,20 @@ export declare class SeriesMarkersComponent extends SettingsComponent implements
78
78
  background: string;
79
79
  border: Border;
80
80
  rotation: number;
81
+ /**
82
+ * The marker size in pixels.
83
+ * @default 6
84
+ */
81
85
  size: number;
86
+ /**
87
+ * The shape of the series markers.
88
+ * @default 'cirlce'
89
+ */
82
90
  type: MarkerType;
91
+ /**
92
+ * If set to `true`, the Chart displays the series markers.
93
+ * @default true
94
+ */
83
95
  visible: boolean;
84
96
  visual: (e: MarkersVisualArgs) => drawing.Element;
85
97
  from: SeriesMarkers;
@@ -15,7 +15,17 @@ export declare class SeriesNotesIconComponent extends SettingsComponent implemen
15
15
  background: string;
16
16
  border: Border;
17
17
  size: number;
18
+ /**
19
+ * The icon shape.
20
+ *
21
+ * @default 'circle'
22
+ */
18
23
  type: MarkerType;
24
+ /**
25
+ * The visibility of the notes icon.
26
+ *
27
+ * @default true
28
+ */
19
29
  visible: boolean;
20
30
  constructor(configurationService: ConfigurationService);
21
31
  static ɵfac: i0.ɵɵFactoryDeclaration<SeriesNotesIconComponent, never>;
@@ -16,10 +16,36 @@ export declare class SeriesNotesLabelComponent extends SettingsComponent impleme
16
16
  border: Border;
17
17
  color: string;
18
18
  content: (e: SeriesNoteContentArgs) => string;
19
+ /**
20
+ * The font style of the label.
21
+ *
22
+ * @default '12px sans-serif'
23
+ */
19
24
  font: string;
25
+ /**
26
+ * The format for displaying the notes label. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of `IntlService`.
27
+ * Contains one placeholder (`"{0}"`) which represents the axis value.
28
+ *
29
+ * @default '{0}'
30
+ */
20
31
  format: string;
32
+ /**
33
+ * The position of the labels.
34
+ *
35
+ * @default 'inside'
36
+ */
21
37
  position: NoteLabelPosition;
38
+ /**
39
+ * The rotation angle of the label.
40
+ *
41
+ * @default 0
42
+ */
22
43
  rotation: number;
44
+ /**
45
+ * If set to `true`, the Chart displays the series notes label.
46
+ *
47
+ * @default true
48
+ */
23
49
  visible: boolean;
24
50
  constructor(configurationService: ConfigurationService);
25
51
  static ɵfac: i0.ɵɵFactoryDeclaration<SeriesNotesLabelComponent, never>;
@@ -17,7 +17,17 @@ export declare class SeriesOutliersComponent extends SettingsComponent implement
17
17
  background: string;
18
18
  border: Border;
19
19
  rotation: number;
20
+ /**
21
+ * The marker size in pixels.
22
+ *
23
+ * @default 6
24
+ */
20
25
  size: number;
26
+ /**
27
+ * The outliers shape.
28
+ *
29
+ * @default 'circle'
30
+ */
21
31
  type: MarkerType;
22
32
  constructor(configurationService: ConfigurationService);
23
33
  static ɵfac: i0.ɵɵFactoryDeclaration<SeriesOutliersComponent, never>;
@@ -17,9 +17,17 @@ export declare class SeriesTooltipComponent extends SettingsComponent implements
17
17
  background: string;
18
18
  border: Border;
19
19
  color: string;
20
+ /**
21
+ * The font of the tooltip.
22
+ * @default '12px sans-serif'
23
+ */
20
24
  font: string;
21
25
  format: string;
22
26
  padding: Padding | number;
27
+ /**
28
+ * If set to `true`, the Chart displays the series tooltip.
29
+ * @default false
30
+ */
23
31
  visible: boolean;
24
32
  seriesTooltipTemplate: TemplateRef<any>;
25
33
  constructor(configurationService: ConfigurationService);