@progress/kendo-charts 2.13.0-develop.1 → 2.13.0-develop.3

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 (54) hide show
  1. package/dist/cdn/js/kendo-charts.js +1 -1
  2. package/dist/cdn/main.js +1 -1
  3. package/dist/es/chart/plotarea/categorical-plotarea.js +9 -6
  4. package/dist/es2015/chart/plotarea/categorical-plotarea.js +9 -6
  5. package/dist/npm/api-types/axis-range.interface.d.ts +3 -3
  6. package/dist/npm/api-types/chart-axis.interface.d.ts +10 -11
  7. package/dist/npm/api-types/chart-pane.interface.d.ts +10 -1
  8. package/dist/npm/api-types/chart-plotarea.interface.d.ts +1 -1
  9. package/dist/npm/api-types/chart-svg-export-options.interface.d.ts +16 -0
  10. package/dist/npm/api-types/chart-visual-export-options.interface.d.ts +14 -0
  11. package/dist/npm/api-types/event-axis-options.interface.d.ts +1 -1
  12. package/dist/npm/api-types/series-point-marker.interface.d.ts +16 -0
  13. package/dist/npm/api-types/series-point.interface.d.ts +32 -11
  14. package/dist/npm/api-types.d.ts +4 -0
  15. package/dist/npm/field-types/line-style.d.ts +1 -6
  16. package/dist/npm/field-types/series-labels-alignment.d.ts +1 -1
  17. package/dist/npm/main.js +11 -6
  18. package/dist/npm/option-types/axis-crosshair-tooltip.interface.d.ts +6 -0
  19. package/dist/npm/option-types/axis-defaults/crosshair.interface.d.ts +1 -1
  20. package/dist/npm/option-types/axis-defaults/labels.interface.d.ts +13 -2
  21. package/dist/npm/option-types/axis-defaults/title.interface.d.ts +3 -0
  22. package/dist/npm/option-types/category-axis-item/crosshair.interface.d.ts +1 -1
  23. package/dist/npm/option-types/category-axis-item/highlight.interface.d.ts +28 -0
  24. package/dist/npm/option-types/category-axis-item/labels.interface.d.ts +29 -7
  25. package/dist/npm/option-types/category-axis-item/notes.label.interface.d.ts +10 -1
  26. package/dist/npm/option-types/category-axis-item.interface.d.ts +10 -1
  27. package/dist/npm/option-types/navigator/hint.interface.d.ts +1 -1
  28. package/dist/npm/option-types/navigator.interface.d.ts +2 -2
  29. package/dist/npm/option-types/pane/title.interface.d.ts +1 -1
  30. package/dist/npm/option-types/series-defaults/labels.from.interface.d.ts +10 -1
  31. package/dist/npm/option-types/series-defaults/labels.interface.d.ts +12 -3
  32. package/dist/npm/option-types/series-defaults/labels.to.interface.d.ts +6 -0
  33. package/dist/npm/option-types/series-defaults/notes.label.interface.d.ts +6 -0
  34. package/dist/npm/option-types/series-defaults/tooltip.interface.d.ts +10 -1
  35. package/dist/npm/option-types/series-item/error-bars.interface.d.ts +3 -3
  36. package/dist/npm/option-types/series-item/highlight.interface.d.ts +5 -5
  37. package/dist/npm/option-types/series-item/labels.from.interface.d.ts +9 -1
  38. package/dist/npm/option-types/series-item/labels.interface.d.ts +16 -7
  39. package/dist/npm/option-types/series-item/labels.to.interface.d.ts +10 -1
  40. package/dist/npm/option-types/series-item/notes.label.interface.d.ts +9 -1
  41. package/dist/npm/option-types/series-item/tooltip.interface.d.ts +9 -1
  42. package/dist/npm/option-types/tooltip.interface.d.ts +6 -0
  43. package/dist/npm/option-types/value-axis-item/crosshair.interface.d.ts +1 -1
  44. package/dist/npm/option-types/value-axis-item/labels.interface.d.ts +10 -1
  45. package/dist/npm/option-types/value-axis-item/notes.label.interface.d.ts +6 -0
  46. package/dist/npm/option-types/x-axis-item/crosshair.interface.d.ts +1 -1
  47. package/dist/npm/option-types/x-axis-item/labels.interface.d.ts +28 -6
  48. package/dist/npm/option-types/x-axis-item/notes.label.interface.d.ts +10 -1
  49. package/dist/npm/option-types/y-axis-item/crosshair.interface.d.ts +1 -1
  50. package/dist/npm/option-types/y-axis-item/labels.interface.d.ts +28 -6
  51. package/dist/npm/option-types/y-axis-item/notes.label.interface.d.ts +10 -1
  52. package/dist/npm/property-types.d.ts +3 -2
  53. package/dist/systemjs/kendo-charts.js +1 -1
  54. package/package.json +2 -2
@@ -37,14 +37,27 @@ export interface XAxisLabels {
37
37
 
38
38
  /**
39
39
  * Specifies the culture to use when formatting date values.
40
+ * {% platform_content angular %}
41
+ * The specified culture must be loaded as demonstrated in the [Internationalization Overview](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization).
42
+ * {% endplatform_content %}
40
43
  */
41
44
  culture?: string;
42
45
 
43
46
  /**
44
- * Specifies the format for displaying the labels when the X values are dates. Uses the [`format` method from `@progress/kendo-intl`](https://github.com/telerik/kendo-intl?tab=readme-ov-file#general-formatting).
45
- * Contains one placeholder (`"{0}"`) which represents the category value.
46
- * Charts select the appropriate format for the current `xAxis.baseUnit`. Setting the
47
- * `categoryAxis.labels.format` option overrides the date formats.
47
+ * Specifies the format for displaying the labels when the X values are dates.
48
+ * {% platform_content angular %}
49
+ * The value is formatted using the [`format`](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/api/intlservice#format) method of `IntlService`.
50
+ * {% endplatform_content %}
51
+ * {% platform_content react %}
52
+ * The value is formatted using the [`format` method from `@progress/kendo-intl`](https://github.com/telerik/kendo-intl?tab=readme-ov-file#general-formatting).
53
+ * {% endplatform_content %}
54
+ * {% platform_content vue %}
55
+ * The value is formatted using the [`format` method from `@progress/kendo-intl`](https://github.com/telerik/kendo-intl?tab=readme-ov-file#general-formatting).
56
+ * {% endplatform_content %}
57
+ * Contains one placeholder (`"{0}"`) which represents the value.
58
+ *
59
+ * Charts select the appropriate format for the current [`xAxis.baseUnit`]({% slug api_charts_xaxis %}#baseunit) option.
60
+ * Setting the [`xAxis.labels.format`]({% slug api_charts_xaxislabels %}#format) option overrides the date formats.
48
61
  */
49
62
  dateFormats?: DateFormats;
50
63
 
@@ -54,8 +67,17 @@ export interface XAxisLabels {
54
67
  font?: string;
55
68
 
56
69
  /**
57
- * Specifies the format for displaying the labels. Uses the [`format` method from `@progress/kendo-intl`](https://github.com/telerik/kendo-intl?tab=readme-ov-file#general-formatting).
58
- * Contains one placeholder (`"{0}"`) which represents the category value.
70
+ * Specifies the format for displaying the labels.
71
+ * {% platform_content angular %}
72
+ * The value is formatted using the [`format`](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/api/intlservice#format) method of `IntlService`.
73
+ * {% endplatform_content %}
74
+ * {% platform_content react %}
75
+ * The value is formatted using the [`format` method from `@progress/kendo-intl`](https://github.com/telerik/kendo-intl?tab=readme-ov-file#general-formatting).
76
+ * {% endplatform_content %}
77
+ * {% platform_content vue %}
78
+ * The value is formatted using the [`format` method from `@progress/kendo-intl`](https://github.com/telerik/kendo-intl?tab=readme-ov-file#general-formatting).
79
+ * {% endplatform_content %}
80
+ * Contains one placeholder (`"{0}"`) which represents the value.
59
81
  */
60
82
  format?: string;
61
83
 
@@ -35,7 +35,16 @@ export interface XAxisNotesLabel {
35
35
 
36
36
  /**
37
37
  * Sets the format for displaying the notes label.
38
- * Uses the [`format` method from `@progress/kendo-intl`](https://github.com/telerik/kendo-intl?tab=readme-ov-file#general-formatting) and contains one placeholder (`"{0}"`) which represents the axis value.
38
+ * {% platform_content angular %}
39
+ * The value is formatted using the [`format`](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/api/intlservice#format) method of `IntlService`.
40
+ * {% endplatform_content %}
41
+ * {% platform_content react %}
42
+ * The value is formatted using the [`format` method from `@progress/kendo-intl`](https://github.com/telerik/kendo-intl?tab=readme-ov-file#general-formatting).
43
+ * {% endplatform_content %}
44
+ * {% platform_content vue %}
45
+ * The value is formatted using the [`format` method from `@progress/kendo-intl`](https://github.com/telerik/kendo-intl?tab=readme-ov-file#general-formatting).
46
+ * {% endplatform_content %}
47
+ * Contains one placeholder (`"{0}"`) which represents the value.
39
48
  */
40
49
  format?: string;
41
50
 
@@ -30,7 +30,7 @@ export interface YAxisCrosshair {
30
30
 
31
31
  /**
32
32
  * Configures the crosshair tooltip options.
33
- * The crosshair tooltip is displayed when the `yAxis.crosshair.tooltip.visible` option is set to `true`.
33
+ * The crosshair tooltip is displayed when the [`yAxis.crosshair.tooltip.visible`]({% slug api_charts_yaxiscrosshairtooltip %}#visible) option is set to `true`.
34
34
  */
35
35
  tooltip?: YAxisCrosshairTooltip;
36
36
  }
@@ -37,14 +37,27 @@ export interface YAxisLabels {
37
37
 
38
38
  /**
39
39
  * Specifies the culture to use when formatting date values.
40
+ * {% platform_content angular %}
41
+ * The specified culture must be loaded as demonstrated in the [Internationalization Overview](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization).
42
+ * {% endplatform_content %}
40
43
  */
41
44
  culture?: string;
42
45
 
43
46
  /**
44
- * Specifies the format for displaying the labels when the X values are dates. Uses the [`format` method from `@progress/kendo-intl`](https://github.com/telerik/kendo-intl?tab=readme-ov-file#general-formatting) method of IntlService.
45
- * Contains one placeholder (`"{0}"`) which represents the category value.
46
- * Charts select the appropriate format for the current `yAxis.baseUnit`. Setting the
47
- * `categoryAxis.labels.format` option overrides the date formats.
47
+ * Specifies the format for displaying the labels when the X values are dates.
48
+ * {% platform_content angular %}
49
+ * The value is formatted using the [`format`](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/api/intlservice#format) method of `IntlService`.
50
+ * {% endplatform_content %}
51
+ * {% platform_content react %}
52
+ * The value is formatted using the [`format` method from `@progress/kendo-intl`](https://github.com/telerik/kendo-intl?tab=readme-ov-file#general-formatting).
53
+ * {% endplatform_content %}
54
+ * {% platform_content vue %}
55
+ * The value is formatted using the [`format` method from `@progress/kendo-intl`](https://github.com/telerik/kendo-intl?tab=readme-ov-file#general-formatting).
56
+ * {% endplatform_content %}
57
+ * Contains one placeholder (`"{0}"`) which represents the value.
58
+ *
59
+ * Charts select the appropriate format for the current [`yAxis.baseUnit`]({% slug api_charts_yaxis %}#baseunit) option.
60
+ * Setting the [`yAxis.labels.format`]({% slug api_charts_yaxislabels %}#format) option overrides the date formats.
48
61
  */
49
62
  dateFormats?: DateFormats;
50
63
 
@@ -54,8 +67,17 @@ export interface YAxisLabels {
54
67
  font?: string;
55
68
 
56
69
  /**
57
- * Specifies the format for displaying the labels. Uses the [`format` method from `@progress/kendo-intl`](https://github.com/telerik/kendo-intl?tab=readme-ov-file#general-formatting).
58
- * Contains one placeholder (`"{0}"`) which represents the category value.
70
+ * Specifies the format for displaying the labels.
71
+ * {% platform_content angular %}
72
+ * The value is formatted using the [`format`](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/api/intlservice#format) method of `IntlService`.
73
+ * {% endplatform_content %}
74
+ * {% platform_content react %}
75
+ * The value is formatted using the [`format` method from `@progress/kendo-intl`](https://github.com/telerik/kendo-intl?tab=readme-ov-file#general-formatting).
76
+ * {% endplatform_content %}
77
+ * {% platform_content vue %}
78
+ * The value is formatted using the [`format` method from `@progress/kendo-intl`](https://github.com/telerik/kendo-intl?tab=readme-ov-file#general-formatting).
79
+ * {% endplatform_content %}
80
+ * Contains one placeholder (`"{0}"`) which represents the value.
59
81
  */
60
82
  format?: string;
61
83
 
@@ -35,7 +35,16 @@ export interface YAxisNotesLabel {
35
35
 
36
36
  /**
37
37
  * Sets the format for displaying the notes label.
38
- * Uses the [`format` method from `@progress/kendo-intl`](https://github.com/telerik/kendo-intl?tab=readme-ov-file#general-formatting) and contains one placeholder (`"{0}"`) which represents the axis value.
38
+ * {% platform_content angular %}
39
+ * The value is formatted using the [`format`](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/api/intlservice#format) method of `IntlService`.
40
+ * {% endplatform_content %}
41
+ * {% platform_content react %}
42
+ * The value is formatted using the [`format` method from `@progress/kendo-intl`](https://github.com/telerik/kendo-intl?tab=readme-ov-file#general-formatting).
43
+ * {% endplatform_content %}
44
+ * {% platform_content vue %}
45
+ * The value is formatted using the [`format` method from `@progress/kendo-intl`](https://github.com/telerik/kendo-intl?tab=readme-ov-file#general-formatting).
46
+ * {% endplatform_content %}
47
+ * Contains one placeholder (`"{0}"`) which represents the value.
39
48
  */
40
49
  format?: string;
41
50
 
@@ -75,6 +75,7 @@ export { AxisDefaultsTitle } from './option-types/axis-defaults/title.interface'
75
75
  export { CategoryAxis } from './option-types/category-axis-item.interface';
76
76
  export { CategoryAxisCrosshair } from './option-types/category-axis-item/crosshair.interface';
77
77
  export { CategoryAxisCrosshairTooltip } from './option-types/category-axis-item/crosshair.tooltip.interface';
78
+ export { CategoryAxisHighlight } from './option-types/category-axis-item/highlight.interface';
78
79
  export { CategoryAxisLabels } from './option-types/category-axis-item/labels.interface';
79
80
  export { CategoryAxisNotes } from './option-types/category-axis-item/notes.interface';
80
81
  export { CategoryAxisNotesIcon } from './option-types/category-axis-item/notes.icon.interface';
@@ -89,8 +90,8 @@ export { LegendItem, LegendItemArea, LegendItemLine, LegendItemHighlight, Legend
89
90
  export { LegendMarkers } from './option-types/legend/markers.interface';
90
91
  export { LegendTitle } from './option-types/legend/legend-title.interface';
91
92
  export { MarkersHighlight } from './option-types/series-item/markers-highlight.interface';
92
- export { NavigatorOptions } from './option-types/navigator.interface';
93
- export { NavigatorHintOptions } from './option-types/navigator/hint.interface';
93
+ export { Navigator as NavigatorOptions } from './option-types/navigator.interface';
94
+ export { NavigatorHint as NavigatorHintOptions } from './option-types/navigator/hint.interface';
94
95
  export { NavigatorHintContentArgs } from './option-types/navigator/hint-content-args.interface';
95
96
  export { NavigatorSelect } from './option-types/navigator/select.interface';
96
97
  export { Pane } from './option-types/pane.interface';