@progress/kendo-react-charts 9.0.0 → 9.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.
package/index.d.mts CHANGED
@@ -679,7 +679,7 @@ declare interface BaseChartProps {
679
679
  */
680
680
  onPlotAreaClick?: (event: PlotAreaClickEvent) => void;
681
681
  /**
682
- * Fires when the user hovers the plot area ([see example]({% slug crosshairs_chart_charts %}#toc-current-cursotr-value)).
682
+ * Fires when the user hovers the plot area ([see example]({% slug crosshairs_chart_charts %}#toc-current-cursor-values)).
683
683
  */
684
684
  onPlotAreaHover?: (event: PlotAreaHoverEvent) => void;
685
685
  /**
@@ -877,7 +877,7 @@ export declare interface CategoryAxis {
877
877
  */
878
878
  categories?: any[];
879
879
  /**
880
- * The color to apply to all axis elements. Accepts a valid CSS color string, including hex and rgb. Can be overridden by [`categoryAxis.labels.color`]({% slug api_charts_chartcategoryaxislabels %}#toc-color) and [`categoryAxis.line.color`]({% slug api_charts_axisline %}#toc-color).
880
+ * The color to apply to all axis elements. Accepts a valid CSS color string, including hex and rgb. Can be overridden by [`categoryAxis.labels.color`]({% slug api_charts_chartcategoryaxislabelsprops %}#toc-color) and [`categoryAxis.line.color`]({% slug api_charts_axisline %}#toc-color).
881
881
  */
882
882
  color?: string;
883
883
  /**
@@ -977,11 +977,11 @@ export declare interface CategoryAxis {
977
977
  */
978
978
  notes?: CategoryAxisNotes;
979
979
  /**
980
- * The selected axis range ([see example]({% slug selection_chart_charts %})). If set, the axis selection is enabled. The range is index-based, starting from zero. Categories with indexes in the range (`select.from`, `select.to`) will be selected. That is, the last category in the range will not be included in the selection. If the categories are dates, the range has to be also specified with date values. Selection is only supported if the axis is horizontal.
980
+ * The selected axis range ([see example]({% slug selection_chart_charts %})). If set, the axis selection is enabled. The range is index-based, starting from zero. Categories with indexes in the range (`select.from`, `select.to`) will be selected. That is, the last category in the range will not be included in the selection. If the categories are dates, the range has to be also specified with date values. Selection is only supported if the axis is horizontal.v
981
981
  */
982
982
  select?: CategoryAxisSelect;
983
983
  /**
984
- * The title configuration of the category axis. To display the title, set the [`categoryAxis.title.text`]({% slug api_charts_chartcategoryaxisitemprops %}#toc-text) option.
984
+ * The title configuration of the category axis. To display the title, set the [`categoryAxis.title.text`]({% slug api_charts_chartcategoryaxistitleprops %}#toc-text) option.
985
985
  */
986
986
  title?: CategoryAxisTitle;
987
987
  }
@@ -1095,9 +1095,9 @@ export declare interface CategoryAxisLabels {
1095
1095
  /**
1096
1096
  * The format for displaying the labels of the date category axis. The `{0}` placeholder represents the category value. The Chart selects the appropriate format for the current [`categoryAxis.baseUnit`]({% slug api_charts_chartcategoryaxisitemprops %}#toc-baseunit) option.
1097
1097
  *
1098
- * Setting the [`categoryAxis.labels.format`]({% slug api_charts_chartcategoryaxislabels %}#toc-format) option overrides the date formats. For more information, refer to the [`format`]({% slug api_intl_intlservice %}#toc-format) method of IntlService.
1098
+ * Setting the [`categoryAxis.labels.format`]({% slug api_charts_chartcategoryaxislabelsprops %}#toc-format) option overrides the date formats. For more information, refer to the [`format`]({% slug api_intl_intlservice %}#toc-format) method of IntlService.
1099
1099
  *
1100
- * > Not supported for Radar Charts. Use [`categoryAxis.labels.format`]({% slug api_charts_chartcategoryaxislabels %}#toc-format) instead.
1100
+ * > Not supported for Radar Charts. Use [`categoryAxis.labels.format`]({% slug api_charts_chartcategoryaxislabelsprops %}#toc-format) instead.
1101
1101
  */
1102
1102
  dateFormats?: DateFormats;
1103
1103
  /**
@@ -6983,7 +6983,7 @@ export declare interface SparklineProps extends Omit<BaseChartProps, 'drilldownS
6983
6983
  *
6984
6984
  * @example
6985
6985
  *
6986
- * {% meta %}
6986
+ * {% meta height:450 %}
6987
6987
  * {% embed_file stock-chart/default/func/app.tsx preview %}
6988
6988
  * {% embed_file stock-chart/default/func/main.tsx %}
6989
6989
  * {% embed_file shared/stock-data.json %}
@@ -8080,7 +8080,7 @@ export declare interface XAxisLabels {
8080
8080
  */
8081
8081
  culture?: string;
8082
8082
  /**
8083
- * The format for displaying the labels when the X values are dates. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of IntlService. Contains one placeholder (`"{0}"`) which represents the category value. The Chart selects the appropriate format for the current [`xAxis.baseUnit`]({% slug api_charts_chartxaxisitemprops %}#toc-baseunit). Setting the [`categoryAxis.labels.format`]({% slug api_charts_chartcategoryaxislabels %}#toc-format) option overrides the date formats.
8083
+ * The format for displaying the labels when the X values are dates. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of IntlService. Contains one placeholder (`"{0}"`) which represents the category value. The Chart selects the appropriate format for the current [`xAxis.baseUnit`]({% slug api_charts_chartxaxisitemprops %}#toc-baseunit). Setting the [`categoryAxis.labels.format`]({% slug api_charts_chartcategoryaxislabelsprops %}#toc-format) option overrides the date formats.
8084
8084
  */
8085
8085
  dateFormats?: DateFormats;
8086
8086
  /**
@@ -8539,7 +8539,7 @@ export declare interface YAxisLabels {
8539
8539
  */
8540
8540
  culture?: string;
8541
8541
  /**
8542
- * The format for displaying the labels when the X values are dates. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of IntlService. Contains one placeholder (`"{0}"`) which represents the category value. The Chart selects the appropriate format for the current [`yAxis.baseUnit`]({% slug api_charts_chartyaxisitemprops %}#toc-baseunit). Setting the [`categoryAxis.labels.format`]({% slug api_charts_chartcategoryaxislabels %}#toc-format) option overrides the date formats.
8542
+ * The format for displaying the labels when the X values are dates. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of IntlService. Contains one placeholder (`"{0}"`) which represents the category value. The Chart selects the appropriate format for the current [`yAxis.baseUnit`]({% slug api_charts_chartyaxisitemprops %}#toc-baseunit). Setting the [`categoryAxis.labels.format`]({% slug api_charts_chartcategoryaxislabelsprops %}#toc-format) option overrides the date formats.
8543
8543
  */
8544
8544
  dateFormats?: DateFormats;
8545
8545
  /**
package/index.d.ts CHANGED
@@ -679,7 +679,7 @@ declare interface BaseChartProps {
679
679
  */
680
680
  onPlotAreaClick?: (event: PlotAreaClickEvent) => void;
681
681
  /**
682
- * Fires when the user hovers the plot area ([see example]({% slug crosshairs_chart_charts %}#toc-current-cursotr-value)).
682
+ * Fires when the user hovers the plot area ([see example]({% slug crosshairs_chart_charts %}#toc-current-cursor-values)).
683
683
  */
684
684
  onPlotAreaHover?: (event: PlotAreaHoverEvent) => void;
685
685
  /**
@@ -877,7 +877,7 @@ export declare interface CategoryAxis {
877
877
  */
878
878
  categories?: any[];
879
879
  /**
880
- * The color to apply to all axis elements. Accepts a valid CSS color string, including hex and rgb. Can be overridden by [`categoryAxis.labels.color`]({% slug api_charts_chartcategoryaxislabels %}#toc-color) and [`categoryAxis.line.color`]({% slug api_charts_axisline %}#toc-color).
880
+ * The color to apply to all axis elements. Accepts a valid CSS color string, including hex and rgb. Can be overridden by [`categoryAxis.labels.color`]({% slug api_charts_chartcategoryaxislabelsprops %}#toc-color) and [`categoryAxis.line.color`]({% slug api_charts_axisline %}#toc-color).
881
881
  */
882
882
  color?: string;
883
883
  /**
@@ -977,11 +977,11 @@ export declare interface CategoryAxis {
977
977
  */
978
978
  notes?: CategoryAxisNotes;
979
979
  /**
980
- * The selected axis range ([see example]({% slug selection_chart_charts %})). If set, the axis selection is enabled. The range is index-based, starting from zero. Categories with indexes in the range (`select.from`, `select.to`) will be selected. That is, the last category in the range will not be included in the selection. If the categories are dates, the range has to be also specified with date values. Selection is only supported if the axis is horizontal.
980
+ * The selected axis range ([see example]({% slug selection_chart_charts %})). If set, the axis selection is enabled. The range is index-based, starting from zero. Categories with indexes in the range (`select.from`, `select.to`) will be selected. That is, the last category in the range will not be included in the selection. If the categories are dates, the range has to be also specified with date values. Selection is only supported if the axis is horizontal.v
981
981
  */
982
982
  select?: CategoryAxisSelect;
983
983
  /**
984
- * The title configuration of the category axis. To display the title, set the [`categoryAxis.title.text`]({% slug api_charts_chartcategoryaxisitemprops %}#toc-text) option.
984
+ * The title configuration of the category axis. To display the title, set the [`categoryAxis.title.text`]({% slug api_charts_chartcategoryaxistitleprops %}#toc-text) option.
985
985
  */
986
986
  title?: CategoryAxisTitle;
987
987
  }
@@ -1095,9 +1095,9 @@ export declare interface CategoryAxisLabels {
1095
1095
  /**
1096
1096
  * The format for displaying the labels of the date category axis. The `{0}` placeholder represents the category value. The Chart selects the appropriate format for the current [`categoryAxis.baseUnit`]({% slug api_charts_chartcategoryaxisitemprops %}#toc-baseunit) option.
1097
1097
  *
1098
- * Setting the [`categoryAxis.labels.format`]({% slug api_charts_chartcategoryaxislabels %}#toc-format) option overrides the date formats. For more information, refer to the [`format`]({% slug api_intl_intlservice %}#toc-format) method of IntlService.
1098
+ * Setting the [`categoryAxis.labels.format`]({% slug api_charts_chartcategoryaxislabelsprops %}#toc-format) option overrides the date formats. For more information, refer to the [`format`]({% slug api_intl_intlservice %}#toc-format) method of IntlService.
1099
1099
  *
1100
- * > Not supported for Radar Charts. Use [`categoryAxis.labels.format`]({% slug api_charts_chartcategoryaxislabels %}#toc-format) instead.
1100
+ * > Not supported for Radar Charts. Use [`categoryAxis.labels.format`]({% slug api_charts_chartcategoryaxislabelsprops %}#toc-format) instead.
1101
1101
  */
1102
1102
  dateFormats?: DateFormats;
1103
1103
  /**
@@ -6983,7 +6983,7 @@ export declare interface SparklineProps extends Omit<BaseChartProps, 'drilldownS
6983
6983
  *
6984
6984
  * @example
6985
6985
  *
6986
- * {% meta %}
6986
+ * {% meta height:450 %}
6987
6987
  * {% embed_file stock-chart/default/func/app.tsx preview %}
6988
6988
  * {% embed_file stock-chart/default/func/main.tsx %}
6989
6989
  * {% embed_file shared/stock-data.json %}
@@ -8080,7 +8080,7 @@ export declare interface XAxisLabels {
8080
8080
  */
8081
8081
  culture?: string;
8082
8082
  /**
8083
- * The format for displaying the labels when the X values are dates. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of IntlService. Contains one placeholder (`"{0}"`) which represents the category value. The Chart selects the appropriate format for the current [`xAxis.baseUnit`]({% slug api_charts_chartxaxisitemprops %}#toc-baseunit). Setting the [`categoryAxis.labels.format`]({% slug api_charts_chartcategoryaxislabels %}#toc-format) option overrides the date formats.
8083
+ * The format for displaying the labels when the X values are dates. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of IntlService. Contains one placeholder (`"{0}"`) which represents the category value. The Chart selects the appropriate format for the current [`xAxis.baseUnit`]({% slug api_charts_chartxaxisitemprops %}#toc-baseunit). Setting the [`categoryAxis.labels.format`]({% slug api_charts_chartcategoryaxislabelsprops %}#toc-format) option overrides the date formats.
8084
8084
  */
8085
8085
  dateFormats?: DateFormats;
8086
8086
  /**
@@ -8539,7 +8539,7 @@ export declare interface YAxisLabels {
8539
8539
  */
8540
8540
  culture?: string;
8541
8541
  /**
8542
- * The format for displaying the labels when the X values are dates. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of IntlService. Contains one placeholder (`"{0}"`) which represents the category value. The Chart selects the appropriate format for the current [`yAxis.baseUnit`]({% slug api_charts_chartyaxisitemprops %}#toc-baseunit). Setting the [`categoryAxis.labels.format`]({% slug api_charts_chartcategoryaxislabels %}#toc-format) option overrides the date formats.
8542
+ * The format for displaying the labels when the X values are dates. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of IntlService. Contains one placeholder (`"{0}"`) which represents the category value. The Chart selects the appropriate format for the current [`yAxis.baseUnit`]({% slug api_charts_chartyaxisitemprops %}#toc-baseunit). Setting the [`categoryAxis.labels.format`]({% slug api_charts_chartcategoryaxislabelsprops %}#toc-format) option overrides the date formats.
8543
8543
  */
8544
8544
  dateFormats?: DateFormats;
8545
8545
  /**
@@ -10,7 +10,7 @@ const e = {
10
10
  name: "@progress/kendo-react-charts",
11
11
  productName: "KendoReact",
12
12
  productCodes: ["KENDOUIREACT", "KENDOUICOMPLETE"],
13
- publishDate: 1731417922,
13
+ publishDate: 1731586872,
14
14
  version: "",
15
15
  licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/components/my-license/"
16
16
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-react-charts",
3
- "version": "9.0.0",
3
+ "version": "9.0.1-develop.2",
4
4
  "description": "React Chart renders a wide range of high-quality data visualizations. KendoReact Charts package",
5
5
  "author": "Progress",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -24,10 +24,10 @@
24
24
  "peerDependencies": {
25
25
  "@progress/kendo-drawing": "^1.21.1",
26
26
  "@progress/kendo-licensing": "^1.3.4",
27
- "@progress/kendo-react-common": "9.0.0",
28
- "@progress/kendo-react-intl": "9.0.0",
29
- "@progress/kendo-react-layout": "9.0.0",
30
- "@progress/kendo-react-popup": "9.0.0",
27
+ "@progress/kendo-react-common": "9.0.1-develop.2",
28
+ "@progress/kendo-react-intl": "9.0.1-develop.2",
29
+ "@progress/kendo-react-layout": "9.0.1-develop.2",
30
+ "@progress/kendo-react-popup": "9.0.1-develop.2",
31
31
  "@progress/kendo-svg-icons": "^4.0.0",
32
32
  "react": "^16.8.2 || ^17.0.0 || ^18.0.0",
33
33
  "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0"