@progress/kendo-react-charts 7.1.0-develop.2 → 7.1.0-develop.6

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.
@@ -5,6 +5,46 @@
5
5
  /**
6
6
  * The series type.
7
7
  *
8
+ * The supported values are:
9
+ * - `"area"`—Displays the data as continuous lines that show trends over time, evenly distributed along the category field.
10
+ * - `"bar"`—Displays the data as sets of horizontal bars that show the relationship between individual items and the whole category.
11
+ * - `"boxPlot"`—Displays the data as a box-and-whisker diagram, which shows the distribution of values in a series.
12
+ * - `"bubble"`—Displays the data as bubbles, where each bubble represents a value from the series data.
13
+ * - `"bullet"`—Displays the data as vertical bars that show the performance measure, and markers that show the comparative measure.
14
+ * - `"candlestick"`—Displays the data as candlesticks, which show the open, close, high, and low values of a series.
15
+ * - `"column"`—Displays the data as sets of vertical bars that show the relationship between individual items and the whole category.
16
+ * - `"donut"`—Displays the data as a series of rings that are sliced depending on the value.
17
+ * - `"exponentialTrendline"`—Displays an exponential [trendline]({% slug trendlines_chart_charts %}#toc-exponential-trendline) for the specified parent series.
18
+ * - `"funnel"`—Displays the data as a funnel, which is useful for sales data visualization.
19
+ * - `"heatmap"`—Displays the data as a heatmap, which is useful for comparing values in a matrix.
20
+ * - `"horizontalWaterfall"`—Displays the data as a horizontal waterfall chart, which is useful for comparing positive and negative values over a period.
21
+ * - `"line"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
22
+ * - `"linearTrendline"`—Displays a linear [trendline]({% slug trendlines_chart_charts %}#toc-linear-trendline) for the specified parent series.
23
+ * - `"logarithmicTrendline"`—Displays a logarithmic [trendline]({% slug trendlines_chart_charts %}#toc-logarithmic-trendline) for the specified parent series.
24
+ * - `"movingAverageTrendline"`—Displays a moving average [trendline]({% slug trendlines_chart_charts %}#toc-moving-average-trendline) for the specified parent series.
25
+ * - `"ohlc"`—Displays the data as OHLC (open-high-low-close) bars, which show the open, high, low, and close values of a series.
26
+ * - `"pie"`—Displays the data as a series of pie slices, which show the contribution of each value to a total.
27
+ * - `"polarArea"`—Displays the data as a series of polar area segments, which show the contribution of each value to a total.
28
+ * - `"polarLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
29
+ * - `"polarScatter"`—Displays the data as points distributed in a polar coordinate system.
30
+ * - `"polynomialTrendline"`—Displays a polynomial [trendline]({% slug trendlines_chart_charts %}#toc-polynomial-trendline) for the specified parent series.
31
+ * - `"powerTrendline"`—Displays a power [trendline]({% slug trendlines_chart_charts %}#toc-power-trendline) for the specified parent series.
32
+ * - `"pyramid"`—Displays the data as a pyramid divided in segments proportional to each value.
33
+ * - `"radarArea"`—Displays the data as a series of radar area segments, which show the contribution of each value to a total.
34
+ * - `"radarColumn"`—Displays the data as sets of vertical bars that show the relationship between individual items and the whole category.
35
+ * - `"radarLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
36
+ * - `"rangeArea"`—Displays the data as a series of range area segments, which show the contribution of each value to a total.
37
+ * - `"rangeBar"`—Displays the data as sets of horizontal bars that show the relationship between individual items and the whole category.
38
+ * - `"rangeColumn"`—Displays the data as sets of vertical bars that show the relationship between individual items and the whole category.
39
+ * - `"scatter"`—Displays the data as points that show the relationship between two variables.
40
+ * - `"scatterLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
41
+ * - `"verticalArea"`—Displays the data as continuous lines that show trends over time, evenly distributed along the category field.
42
+ * - `"verticalBoxPlot"`—Displays the data as a box-and-whisker diagram, which shows the distribution of values in a series.
43
+ * - `"verticalBullet"`—Displays the data as vertical bars that show the performance measure, and markers that show the comparative measure.
44
+ * - `"verticalLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
45
+ * - `"verticalRangeArea"`—Displays the data as a series of range area segments, which show the contribution of each value to a total.
46
+ * - `"waterfall"`—Displays the data as a waterfall chart, which is useful for comparing positive and negative values over a period.
47
+ *
8
48
  * @example
9
49
  * ```jsx
10
50
  * import {
@@ -30,4 +70,4 @@
30
70
  * );
31
71
  * ```
32
72
  */
33
- export type SeriesType = 'area' | 'bar' | 'boxPlot' | 'bubble' | 'bullet' | 'candlestick' | 'column' | 'donut' | 'funnel' | 'pyramid' | 'heatmap' | 'horizontalWaterfall' | 'line' | 'linearTrendline' | 'movingAverageTrendline' | 'ohlc' | 'pie' | 'polarArea' | 'polarLine' | 'polarScatter' | 'radarArea' | 'radarColumn' | 'radarLine' | 'rangeArea' | 'rangeBar' | 'rangeColumn' | 'scatter' | 'scatterLine' | 'verticalArea' | 'verticalBoxPlot' | 'verticalBullet' | 'verticalLine' | 'verticalRangeArea' | 'waterfall';
73
+ export type SeriesType = 'area' | 'bar' | 'boxPlot' | 'bubble' | 'bullet' | 'candlestick' | 'column' | 'donut' | 'exponentialTrendline' | 'funnel' | 'pyramid' | 'heatmap' | 'horizontalWaterfall' | 'line' | 'linearTrendline' | 'logarithmicTrendline' | 'movingAverageTrendline' | 'ohlc' | 'pie' | 'polarArea' | 'polarLine' | 'polarScatter' | 'polynomialTrendline' | 'powerTrendline' | 'radarArea' | 'radarColumn' | 'radarLine' | 'rangeArea' | 'rangeBar' | 'rangeColumn' | 'scatter' | 'scatterLine' | 'verticalArea' | 'verticalBoxPlot' | 'verticalBullet' | 'verticalLine' | 'verticalRangeArea' | 'waterfall';
package/index.mjs CHANGED
@@ -870,7 +870,7 @@ const F = {
870
870
  name: "@progress/kendo-react-charts",
871
871
  productName: "KendoReact",
872
872
  productCodes: ["KENDOUIREACT", "KENDOUICOMPLETE"],
873
- publishDate: 1705399043,
873
+ publishDate: 1705647250,
874
874
  version: "",
875
875
  licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/components/my-license/"
876
876
  };
@@ -19,4 +19,16 @@ export interface SeriesTrendline {
19
19
  * The period setting is supported only for Moving Average trendlines.
20
20
  */
21
21
  period?: number;
22
+ /**
23
+ * The order (degree) of the Polynomial trendline. The default value is 2.
24
+ *
25
+ * Accepted values are from 2 to 6:
26
+ * * 2: a Quadratic polynomial trendline with a single extreme point (minimum or maximum) point.
27
+ * * 3: a Cubic polynomial trendline with up to 2 extreme points.
28
+ * * 4: a polynomial trendline of 4th degree with up to 3 extreme points.
29
+ * * 5: a polynomial trendline of 5th degree with up to 4 extreme points.
30
+ * * 6: a polynomial trendline of 6th degree with up to 5 extreme points.
31
+ *
32
+ */
33
+ order?: number;
22
34
  }
@@ -140,7 +140,8 @@ export interface Series {
140
140
  /**
141
141
  * The name of the parent series of the trendline.
142
142
  *
143
- * The `for` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to `"linearTrendline"` or `"movingAverageTrendline"`.
143
+ * The `for` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to
144
+ * "`linearTrendline`", "`exponentialTrendline`", "`logarithmicTrendline`", "`powerTrendline`", "`polynomialTrendline`" or "`movingAverageTrendline`".
144
145
  */
145
146
  for?: string;
146
147
  /**
@@ -313,14 +314,22 @@ export interface Series {
313
314
  * - `candlestick`
314
315
  * - `column`
315
316
  * - `donut`
317
+ * - `exponentialTrendline`
316
318
  * - `funnel`
319
+ * - `pyramid`
320
+ * - `heatmap`
317
321
  * - `horizontalWaterfall`
318
322
  * - `line`
323
+ * - `linearTrendline`
324
+ * - `logarithmicTrendline`
325
+ * - `movingAverageTrendline`
319
326
  * - `ohlc`
320
327
  * - `pie`
321
328
  * - `polarArea`
322
329
  * - `polarLine`
323
330
  * - `polarScatter`
331
+ * - `polynomialTrendline`
332
+ * - `powerTrendline`
324
333
  * - `radarArea`
325
334
  * - `radarColumn`
326
335
  * - `radarLine`
@@ -457,6 +466,9 @@ export interface Series {
457
466
  tooltip?: SeriesTooltip;
458
467
  /**
459
468
  * The configuration options of the series trendlines.
469
+ *
470
+ * The `trendline` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to
471
+ * "`linearTrendline`", "`exponentialTrendline`", "`logarithmicTrendline`", "`powerTrendline`", "`polynomialTrendline`" or "`movingAverageTrendline`".
460
472
  */
461
473
  trendline?: SeriesTrendline;
462
474
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-react-charts",
3
- "version": "7.1.0-develop.2",
3
+ "version": "7.1.0-develop.6",
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.19.0",
26
26
  "@progress/kendo-licensing": "^1.3.4",
27
- "@progress/kendo-react-common": "7.1.0-develop.2",
28
- "@progress/kendo-react-intl": "7.1.0-develop.2",
29
- "@progress/kendo-react-layout": "7.1.0-develop.2",
30
- "@progress/kendo-react-popup": "7.1.0-develop.2",
27
+ "@progress/kendo-react-common": "7.1.0-develop.6",
28
+ "@progress/kendo-react-intl": "7.1.0-develop.6",
29
+ "@progress/kendo-react-layout": "7.1.0-develop.6",
30
+ "@progress/kendo-react-popup": "7.1.0-develop.6",
31
31
  "@progress/kendo-svg-icons": "^2.1.0",
32
32
  "hammerjs": "^2.0.0",
33
33
  "react": "^16.8.2 || ^17.0.0 || ^18.0.0",