@progress/kendo-vue-charts 4.2.0 → 4.3.0-dev.202401231815
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/dist/cdn/js/kendo-vue-charts.js +1 -1
- package/dist/es/field-types/series-type.d.ts +41 -1
- package/dist/es/option-types/series-item/trendline.interface.d.ts +12 -0
- package/dist/es/option-types/series-item.interface.d.ts +13 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/esm/field-types/series-type.d.ts +41 -1
- package/dist/esm/option-types/series-item/trendline.interface.d.ts +12 -0
- package/dist/esm/option-types/series-item.interface.d.ts +13 -1
- package/dist/esm/package-metadata.js +1 -1
- package/dist/npm/field-types/series-type.d.ts +41 -1
- package/dist/npm/option-types/series-item/trendline.interface.d.ts +12 -0
- package/dist/npm/option-types/series-item.interface.d.ts +13 -1
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +6 -6
|
@@ -1,6 +1,46 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* The series type.
|
|
3
3
|
*
|
|
4
|
+
* The supported values are:
|
|
5
|
+
* - `"area"`—Displays the data as continuous lines that show trends over time, evenly distributed along the category field.
|
|
6
|
+
* - `"bar"`—Displays the data as sets of horizontal bars that show the relationship between individual items and the whole category.
|
|
7
|
+
* - `"boxPlot"`—Displays the data as a box-and-whisker diagram, which shows the distribution of values in a series.
|
|
8
|
+
* - `"bubble"`—Displays the data as bubbles, where each bubble represents a value from the series data.
|
|
9
|
+
* - `"bullet"`—Displays the data as vertical bars that show the performance measure, and markers that show the comparative measure.
|
|
10
|
+
* - `"candlestick"`—Displays the data as candlesticks, which show the open, close, high, and low values of a series.
|
|
11
|
+
* - `"column"`—Displays the data as sets of vertical bars that show the relationship between individual items and the whole category.
|
|
12
|
+
* - `"donut"`—Displays the data as a series of rings that are sliced depending on the value.
|
|
13
|
+
* - `"exponentialTrendline"`—Displays an exponential [trendline]({% slug trendlines_chart_charts %}#toc-exponential-trendline) for the specified parent series.
|
|
14
|
+
* - `"funnel"`—Displays the data as a funnel, which is useful for sales data visualization.
|
|
15
|
+
* - `"heatmap"`—Displays the data as a heatmap, which is useful for comparing values in a matrix.
|
|
16
|
+
* - `"horizontalWaterfall"`—Displays the data as a horizontal waterfall chart, which is useful for comparing positive and negative values over a period.
|
|
17
|
+
* - `"line"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
|
|
18
|
+
* - `"linearTrendline"`—Displays a linear [trendline]({% slug trendlines_chart_charts %}#toc-linear-trendline) for the specified parent series.
|
|
19
|
+
* - `"logarithmicTrendline"`—Displays a logarithmic [trendline]({% slug trendlines_chart_charts %}#toc-logarithmic-trendline) for the specified parent series.
|
|
20
|
+
* - `"movingAverageTrendline"`—Displays a moving average [trendline]({% slug trendlines_chart_charts %}#toc-moving-average-trendline) for the specified parent series.
|
|
21
|
+
* - `"ohlc"`—Displays the data as OHLC (open-high-low-close) bars, which show the open, high, low, and close values of a series.
|
|
22
|
+
* - `"pie"`—Displays the data as a series of pie slices, which show the contribution of each value to a total.
|
|
23
|
+
* - `"polarArea"`—Displays the data as a series of polar area segments, which show the contribution of each value to a total.
|
|
24
|
+
* - `"polarLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
|
|
25
|
+
* - `"polarScatter"`—Displays the data as points distributed in a polar coordinate system.
|
|
26
|
+
* - `"polynomialTrendline"`—Displays a polynomial [trendline]({% slug trendlines_chart_charts %}#toc-polynomial-trendline) for the specified parent series.
|
|
27
|
+
* - `"powerTrendline"`—Displays a power [trendline]({% slug trendlines_chart_charts %}#toc-power-trendline) for the specified parent series.
|
|
28
|
+
* - `"pyramid"`—Displays the data as a pyramid divided in segments proportional to each value.
|
|
29
|
+
* - `"radarArea"`—Displays the data as a series of radar area segments, which show the contribution of each value to a total.
|
|
30
|
+
* - `"radarColumn"`—Displays the data as sets of vertical bars that show the relationship between individual items and the whole category.
|
|
31
|
+
* - `"radarLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
|
|
32
|
+
* - `"rangeArea"`—Displays the data as a series of range area segments, which show the contribution of each value to a total.
|
|
33
|
+
* - `"rangeBar"`—Displays the data as sets of horizontal bars that show the relationship between individual items and the whole category.
|
|
34
|
+
* - `"rangeColumn"`—Displays the data as sets of vertical bars that show the relationship between individual items and the whole category.
|
|
35
|
+
* - `"scatter"`—Displays the data as points that show the relationship between two variables.
|
|
36
|
+
* - `"scatterLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
|
|
37
|
+
* - `"verticalArea"`—Displays the data as continuous lines that show trends over time, evenly distributed along the category field.
|
|
38
|
+
* - `"verticalBoxPlot"`—Displays the data as a box-and-whisker diagram, which shows the distribution of values in a series.
|
|
39
|
+
* - `"verticalBullet"`—Displays the data as vertical bars that show the performance measure, and markers that show the comparative measure.
|
|
40
|
+
* - `"verticalLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
|
|
41
|
+
* - `"verticalRangeArea"`—Displays the data as a series of range area segments, which show the contribution of each value to a total.
|
|
42
|
+
* - `"waterfall"`—Displays the data as a waterfall chart, which is useful for comparing positive and negative values over a period.
|
|
43
|
+
*
|
|
4
44
|
* @example
|
|
5
45
|
* ```jsx
|
|
6
46
|
* import {
|
|
@@ -35,4 +75,4 @@
|
|
|
35
75
|
* </script>
|
|
36
76
|
* ```
|
|
37
77
|
*/
|
|
38
|
-
export declare type SeriesType = 'area' | 'bar' | 'boxPlot' | 'bubble' | 'bullet' | 'candlestick' | 'column' | 'donut' | 'funnel' | 'pyramid' | 'horizontalWaterfall' | 'line' | 'linearTrendline' | 'movingAverageTrendline' | 'ohlc' | 'pie' | 'polarArea' | 'polarLine' | 'polarScatter' | 'radarArea' | 'radarColumn' | 'radarLine' | 'rangeArea' | 'rangeBar' | 'rangeColumn' | 'scatter' | 'scatterLine' | 'verticalArea' | 'verticalBoxPlot' | 'verticalBullet' | 'verticalLine' | 'verticalRangeArea' | 'waterfall';
|
|
78
|
+
export declare 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';
|
|
@@ -15,4 +15,16 @@ export interface SeriesTrendline {
|
|
|
15
15
|
* The period setting is supported only for Moving Average trendlines.
|
|
16
16
|
*/
|
|
17
17
|
period?: number;
|
|
18
|
+
/**
|
|
19
|
+
* The order (degree) of the Polynomial trendline. The default value is 2.
|
|
20
|
+
*
|
|
21
|
+
* Accepted values are from 2 to 6:
|
|
22
|
+
* * 2: a Quadratic polynomial trendline with a single extreme point (minimum or maximum) point.
|
|
23
|
+
* * 3: a Cubic polynomial trendline with up to 2 extreme points.
|
|
24
|
+
* * 4: a polynomial trendline of 4th degree with up to 3 extreme points.
|
|
25
|
+
* * 5: a polynomial trendline of 5th degree with up to 4 extreme points.
|
|
26
|
+
* * 6: a polynomial trendline of 6th degree with up to 5 extreme points.
|
|
27
|
+
*
|
|
28
|
+
*/
|
|
29
|
+
order?: number;
|
|
18
30
|
}
|
|
@@ -132,7 +132,8 @@ export interface Series {
|
|
|
132
132
|
/**
|
|
133
133
|
* The name of the parent series of the trendline.
|
|
134
134
|
*
|
|
135
|
-
* The `for` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to
|
|
135
|
+
* The `for` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to
|
|
136
|
+
* "`linearTrendline`", "`exponentialTrendline`", "`logarithmicTrendline`", "`powerTrendline`", "`polynomialTrendline`" or "`movingAverageTrendline`".
|
|
136
137
|
*/
|
|
137
138
|
for?: string;
|
|
138
139
|
/**
|
|
@@ -305,14 +306,22 @@ export interface Series {
|
|
|
305
306
|
* - `candlestick`
|
|
306
307
|
* - `column`
|
|
307
308
|
* - `donut`
|
|
309
|
+
* - `exponentialTrendline`
|
|
308
310
|
* - `funnel`
|
|
311
|
+
* - `pyramid`
|
|
312
|
+
* - `heatmap`
|
|
309
313
|
* - `horizontalWaterfall`
|
|
310
314
|
* - `line`
|
|
315
|
+
* - `linearTrendline`
|
|
316
|
+
* - `logarithmicTrendline`
|
|
317
|
+
* - `movingAverageTrendline`
|
|
311
318
|
* - `ohlc`
|
|
312
319
|
* - `pie`
|
|
313
320
|
* - `polarArea`
|
|
314
321
|
* - `polarLine`
|
|
315
322
|
* - `polarScatter`
|
|
323
|
+
* - `polynomialTrendline`
|
|
324
|
+
* - `powerTrendline`
|
|
316
325
|
* - `radarArea`
|
|
317
326
|
* - `radarColumn`
|
|
318
327
|
* - `radarLine`
|
|
@@ -449,6 +458,9 @@ export interface Series {
|
|
|
449
458
|
tooltip?: SeriesTooltip;
|
|
450
459
|
/**
|
|
451
460
|
* The configuration options of the series trendlines.
|
|
461
|
+
*
|
|
462
|
+
* The `trendline` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to
|
|
463
|
+
* "`linearTrendline`", "`exponentialTrendline`", "`logarithmicTrendline`", "`powerTrendline`", "`polynomialTrendline`" or "`movingAverageTrendline`".
|
|
452
464
|
*/
|
|
453
465
|
trendline?: SeriesTrendline;
|
|
454
466
|
}
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-charts',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1706033026,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
11
11
|
};
|
|
@@ -1,6 +1,46 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* The series type.
|
|
3
3
|
*
|
|
4
|
+
* The supported values are:
|
|
5
|
+
* - `"area"`—Displays the data as continuous lines that show trends over time, evenly distributed along the category field.
|
|
6
|
+
* - `"bar"`—Displays the data as sets of horizontal bars that show the relationship between individual items and the whole category.
|
|
7
|
+
* - `"boxPlot"`—Displays the data as a box-and-whisker diagram, which shows the distribution of values in a series.
|
|
8
|
+
* - `"bubble"`—Displays the data as bubbles, where each bubble represents a value from the series data.
|
|
9
|
+
* - `"bullet"`—Displays the data as vertical bars that show the performance measure, and markers that show the comparative measure.
|
|
10
|
+
* - `"candlestick"`—Displays the data as candlesticks, which show the open, close, high, and low values of a series.
|
|
11
|
+
* - `"column"`—Displays the data as sets of vertical bars that show the relationship between individual items and the whole category.
|
|
12
|
+
* - `"donut"`—Displays the data as a series of rings that are sliced depending on the value.
|
|
13
|
+
* - `"exponentialTrendline"`—Displays an exponential [trendline]({% slug trendlines_chart_charts %}#toc-exponential-trendline) for the specified parent series.
|
|
14
|
+
* - `"funnel"`—Displays the data as a funnel, which is useful for sales data visualization.
|
|
15
|
+
* - `"heatmap"`—Displays the data as a heatmap, which is useful for comparing values in a matrix.
|
|
16
|
+
* - `"horizontalWaterfall"`—Displays the data as a horizontal waterfall chart, which is useful for comparing positive and negative values over a period.
|
|
17
|
+
* - `"line"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
|
|
18
|
+
* - `"linearTrendline"`—Displays a linear [trendline]({% slug trendlines_chart_charts %}#toc-linear-trendline) for the specified parent series.
|
|
19
|
+
* - `"logarithmicTrendline"`—Displays a logarithmic [trendline]({% slug trendlines_chart_charts %}#toc-logarithmic-trendline) for the specified parent series.
|
|
20
|
+
* - `"movingAverageTrendline"`—Displays a moving average [trendline]({% slug trendlines_chart_charts %}#toc-moving-average-trendline) for the specified parent series.
|
|
21
|
+
* - `"ohlc"`—Displays the data as OHLC (open-high-low-close) bars, which show the open, high, low, and close values of a series.
|
|
22
|
+
* - `"pie"`—Displays the data as a series of pie slices, which show the contribution of each value to a total.
|
|
23
|
+
* - `"polarArea"`—Displays the data as a series of polar area segments, which show the contribution of each value to a total.
|
|
24
|
+
* - `"polarLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
|
|
25
|
+
* - `"polarScatter"`—Displays the data as points distributed in a polar coordinate system.
|
|
26
|
+
* - `"polynomialTrendline"`—Displays a polynomial [trendline]({% slug trendlines_chart_charts %}#toc-polynomial-trendline) for the specified parent series.
|
|
27
|
+
* - `"powerTrendline"`—Displays a power [trendline]({% slug trendlines_chart_charts %}#toc-power-trendline) for the specified parent series.
|
|
28
|
+
* - `"pyramid"`—Displays the data as a pyramid divided in segments proportional to each value.
|
|
29
|
+
* - `"radarArea"`—Displays the data as a series of radar area segments, which show the contribution of each value to a total.
|
|
30
|
+
* - `"radarColumn"`—Displays the data as sets of vertical bars that show the relationship between individual items and the whole category.
|
|
31
|
+
* - `"radarLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
|
|
32
|
+
* - `"rangeArea"`—Displays the data as a series of range area segments, which show the contribution of each value to a total.
|
|
33
|
+
* - `"rangeBar"`—Displays the data as sets of horizontal bars that show the relationship between individual items and the whole category.
|
|
34
|
+
* - `"rangeColumn"`—Displays the data as sets of vertical bars that show the relationship between individual items and the whole category.
|
|
35
|
+
* - `"scatter"`—Displays the data as points that show the relationship between two variables.
|
|
36
|
+
* - `"scatterLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
|
|
37
|
+
* - `"verticalArea"`—Displays the data as continuous lines that show trends over time, evenly distributed along the category field.
|
|
38
|
+
* - `"verticalBoxPlot"`—Displays the data as a box-and-whisker diagram, which shows the distribution of values in a series.
|
|
39
|
+
* - `"verticalBullet"`—Displays the data as vertical bars that show the performance measure, and markers that show the comparative measure.
|
|
40
|
+
* - `"verticalLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
|
|
41
|
+
* - `"verticalRangeArea"`—Displays the data as a series of range area segments, which show the contribution of each value to a total.
|
|
42
|
+
* - `"waterfall"`—Displays the data as a waterfall chart, which is useful for comparing positive and negative values over a period.
|
|
43
|
+
*
|
|
4
44
|
* @example
|
|
5
45
|
* ```jsx
|
|
6
46
|
* import {
|
|
@@ -35,4 +75,4 @@
|
|
|
35
75
|
* </script>
|
|
36
76
|
* ```
|
|
37
77
|
*/
|
|
38
|
-
export declare type SeriesType = 'area' | 'bar' | 'boxPlot' | 'bubble' | 'bullet' | 'candlestick' | 'column' | 'donut' | 'funnel' | 'pyramid' | 'horizontalWaterfall' | 'line' | 'linearTrendline' | 'movingAverageTrendline' | 'ohlc' | 'pie' | 'polarArea' | 'polarLine' | 'polarScatter' | 'radarArea' | 'radarColumn' | 'radarLine' | 'rangeArea' | 'rangeBar' | 'rangeColumn' | 'scatter' | 'scatterLine' | 'verticalArea' | 'verticalBoxPlot' | 'verticalBullet' | 'verticalLine' | 'verticalRangeArea' | 'waterfall';
|
|
78
|
+
export declare 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';
|
|
@@ -15,4 +15,16 @@ export interface SeriesTrendline {
|
|
|
15
15
|
* The period setting is supported only for Moving Average trendlines.
|
|
16
16
|
*/
|
|
17
17
|
period?: number;
|
|
18
|
+
/**
|
|
19
|
+
* The order (degree) of the Polynomial trendline. The default value is 2.
|
|
20
|
+
*
|
|
21
|
+
* Accepted values are from 2 to 6:
|
|
22
|
+
* * 2: a Quadratic polynomial trendline with a single extreme point (minimum or maximum) point.
|
|
23
|
+
* * 3: a Cubic polynomial trendline with up to 2 extreme points.
|
|
24
|
+
* * 4: a polynomial trendline of 4th degree with up to 3 extreme points.
|
|
25
|
+
* * 5: a polynomial trendline of 5th degree with up to 4 extreme points.
|
|
26
|
+
* * 6: a polynomial trendline of 6th degree with up to 5 extreme points.
|
|
27
|
+
*
|
|
28
|
+
*/
|
|
29
|
+
order?: number;
|
|
18
30
|
}
|
|
@@ -132,7 +132,8 @@ export interface Series {
|
|
|
132
132
|
/**
|
|
133
133
|
* The name of the parent series of the trendline.
|
|
134
134
|
*
|
|
135
|
-
* The `for` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to
|
|
135
|
+
* The `for` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to
|
|
136
|
+
* "`linearTrendline`", "`exponentialTrendline`", "`logarithmicTrendline`", "`powerTrendline`", "`polynomialTrendline`" or "`movingAverageTrendline`".
|
|
136
137
|
*/
|
|
137
138
|
for?: string;
|
|
138
139
|
/**
|
|
@@ -305,14 +306,22 @@ export interface Series {
|
|
|
305
306
|
* - `candlestick`
|
|
306
307
|
* - `column`
|
|
307
308
|
* - `donut`
|
|
309
|
+
* - `exponentialTrendline`
|
|
308
310
|
* - `funnel`
|
|
311
|
+
* - `pyramid`
|
|
312
|
+
* - `heatmap`
|
|
309
313
|
* - `horizontalWaterfall`
|
|
310
314
|
* - `line`
|
|
315
|
+
* - `linearTrendline`
|
|
316
|
+
* - `logarithmicTrendline`
|
|
317
|
+
* - `movingAverageTrendline`
|
|
311
318
|
* - `ohlc`
|
|
312
319
|
* - `pie`
|
|
313
320
|
* - `polarArea`
|
|
314
321
|
* - `polarLine`
|
|
315
322
|
* - `polarScatter`
|
|
323
|
+
* - `polynomialTrendline`
|
|
324
|
+
* - `powerTrendline`
|
|
316
325
|
* - `radarArea`
|
|
317
326
|
* - `radarColumn`
|
|
318
327
|
* - `radarLine`
|
|
@@ -449,6 +458,9 @@ export interface Series {
|
|
|
449
458
|
tooltip?: SeriesTooltip;
|
|
450
459
|
/**
|
|
451
460
|
* The configuration options of the series trendlines.
|
|
461
|
+
*
|
|
462
|
+
* The `trendline` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to
|
|
463
|
+
* "`linearTrendline`", "`exponentialTrendline`", "`logarithmicTrendline`", "`powerTrendline`", "`polynomialTrendline`" or "`movingAverageTrendline`".
|
|
452
464
|
*/
|
|
453
465
|
trendline?: SeriesTrendline;
|
|
454
466
|
}
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-charts',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1706033026,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
11
11
|
};
|
|
@@ -1,6 +1,46 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* The series type.
|
|
3
3
|
*
|
|
4
|
+
* The supported values are:
|
|
5
|
+
* - `"area"`—Displays the data as continuous lines that show trends over time, evenly distributed along the category field.
|
|
6
|
+
* - `"bar"`—Displays the data as sets of horizontal bars that show the relationship between individual items and the whole category.
|
|
7
|
+
* - `"boxPlot"`—Displays the data as a box-and-whisker diagram, which shows the distribution of values in a series.
|
|
8
|
+
* - `"bubble"`—Displays the data as bubbles, where each bubble represents a value from the series data.
|
|
9
|
+
* - `"bullet"`—Displays the data as vertical bars that show the performance measure, and markers that show the comparative measure.
|
|
10
|
+
* - `"candlestick"`—Displays the data as candlesticks, which show the open, close, high, and low values of a series.
|
|
11
|
+
* - `"column"`—Displays the data as sets of vertical bars that show the relationship between individual items and the whole category.
|
|
12
|
+
* - `"donut"`—Displays the data as a series of rings that are sliced depending on the value.
|
|
13
|
+
* - `"exponentialTrendline"`—Displays an exponential [trendline]({% slug trendlines_chart_charts %}#toc-exponential-trendline) for the specified parent series.
|
|
14
|
+
* - `"funnel"`—Displays the data as a funnel, which is useful for sales data visualization.
|
|
15
|
+
* - `"heatmap"`—Displays the data as a heatmap, which is useful for comparing values in a matrix.
|
|
16
|
+
* - `"horizontalWaterfall"`—Displays the data as a horizontal waterfall chart, which is useful for comparing positive and negative values over a period.
|
|
17
|
+
* - `"line"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
|
|
18
|
+
* - `"linearTrendline"`—Displays a linear [trendline]({% slug trendlines_chart_charts %}#toc-linear-trendline) for the specified parent series.
|
|
19
|
+
* - `"logarithmicTrendline"`—Displays a logarithmic [trendline]({% slug trendlines_chart_charts %}#toc-logarithmic-trendline) for the specified parent series.
|
|
20
|
+
* - `"movingAverageTrendline"`—Displays a moving average [trendline]({% slug trendlines_chart_charts %}#toc-moving-average-trendline) for the specified parent series.
|
|
21
|
+
* - `"ohlc"`—Displays the data as OHLC (open-high-low-close) bars, which show the open, high, low, and close values of a series.
|
|
22
|
+
* - `"pie"`—Displays the data as a series of pie slices, which show the contribution of each value to a total.
|
|
23
|
+
* - `"polarArea"`—Displays the data as a series of polar area segments, which show the contribution of each value to a total.
|
|
24
|
+
* - `"polarLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
|
|
25
|
+
* - `"polarScatter"`—Displays the data as points distributed in a polar coordinate system.
|
|
26
|
+
* - `"polynomialTrendline"`—Displays a polynomial [trendline]({% slug trendlines_chart_charts %}#toc-polynomial-trendline) for the specified parent series.
|
|
27
|
+
* - `"powerTrendline"`—Displays a power [trendline]({% slug trendlines_chart_charts %}#toc-power-trendline) for the specified parent series.
|
|
28
|
+
* - `"pyramid"`—Displays the data as a pyramid divided in segments proportional to each value.
|
|
29
|
+
* - `"radarArea"`—Displays the data as a series of radar area segments, which show the contribution of each value to a total.
|
|
30
|
+
* - `"radarColumn"`—Displays the data as sets of vertical bars that show the relationship between individual items and the whole category.
|
|
31
|
+
* - `"radarLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
|
|
32
|
+
* - `"rangeArea"`—Displays the data as a series of range area segments, which show the contribution of each value to a total.
|
|
33
|
+
* - `"rangeBar"`—Displays the data as sets of horizontal bars that show the relationship between individual items and the whole category.
|
|
34
|
+
* - `"rangeColumn"`—Displays the data as sets of vertical bars that show the relationship between individual items and the whole category.
|
|
35
|
+
* - `"scatter"`—Displays the data as points that show the relationship between two variables.
|
|
36
|
+
* - `"scatterLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
|
|
37
|
+
* - `"verticalArea"`—Displays the data as continuous lines that show trends over time, evenly distributed along the category field.
|
|
38
|
+
* - `"verticalBoxPlot"`—Displays the data as a box-and-whisker diagram, which shows the distribution of values in a series.
|
|
39
|
+
* - `"verticalBullet"`—Displays the data as vertical bars that show the performance measure, and markers that show the comparative measure.
|
|
40
|
+
* - `"verticalLine"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
|
|
41
|
+
* - `"verticalRangeArea"`—Displays the data as a series of range area segments, which show the contribution of each value to a total.
|
|
42
|
+
* - `"waterfall"`—Displays the data as a waterfall chart, which is useful for comparing positive and negative values over a period.
|
|
43
|
+
*
|
|
4
44
|
* @example
|
|
5
45
|
* ```jsx
|
|
6
46
|
* import {
|
|
@@ -35,4 +75,4 @@
|
|
|
35
75
|
* </script>
|
|
36
76
|
* ```
|
|
37
77
|
*/
|
|
38
|
-
export declare type SeriesType = 'area' | 'bar' | 'boxPlot' | 'bubble' | 'bullet' | 'candlestick' | 'column' | 'donut' | 'funnel' | 'pyramid' | 'horizontalWaterfall' | 'line' | 'linearTrendline' | 'movingAverageTrendline' | 'ohlc' | 'pie' | 'polarArea' | 'polarLine' | 'polarScatter' | 'radarArea' | 'radarColumn' | 'radarLine' | 'rangeArea' | 'rangeBar' | 'rangeColumn' | 'scatter' | 'scatterLine' | 'verticalArea' | 'verticalBoxPlot' | 'verticalBullet' | 'verticalLine' | 'verticalRangeArea' | 'waterfall';
|
|
78
|
+
export declare 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';
|
|
@@ -15,4 +15,16 @@ export interface SeriesTrendline {
|
|
|
15
15
|
* The period setting is supported only for Moving Average trendlines.
|
|
16
16
|
*/
|
|
17
17
|
period?: number;
|
|
18
|
+
/**
|
|
19
|
+
* The order (degree) of the Polynomial trendline. The default value is 2.
|
|
20
|
+
*
|
|
21
|
+
* Accepted values are from 2 to 6:
|
|
22
|
+
* * 2: a Quadratic polynomial trendline with a single extreme point (minimum or maximum) point.
|
|
23
|
+
* * 3: a Cubic polynomial trendline with up to 2 extreme points.
|
|
24
|
+
* * 4: a polynomial trendline of 4th degree with up to 3 extreme points.
|
|
25
|
+
* * 5: a polynomial trendline of 5th degree with up to 4 extreme points.
|
|
26
|
+
* * 6: a polynomial trendline of 6th degree with up to 5 extreme points.
|
|
27
|
+
*
|
|
28
|
+
*/
|
|
29
|
+
order?: number;
|
|
18
30
|
}
|
|
@@ -132,7 +132,8 @@ export interface Series {
|
|
|
132
132
|
/**
|
|
133
133
|
* The name of the parent series of the trendline.
|
|
134
134
|
*
|
|
135
|
-
* The `for` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to
|
|
135
|
+
* The `for` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to
|
|
136
|
+
* "`linearTrendline`", "`exponentialTrendline`", "`logarithmicTrendline`", "`powerTrendline`", "`polynomialTrendline`" or "`movingAverageTrendline`".
|
|
136
137
|
*/
|
|
137
138
|
for?: string;
|
|
138
139
|
/**
|
|
@@ -305,14 +306,22 @@ export interface Series {
|
|
|
305
306
|
* - `candlestick`
|
|
306
307
|
* - `column`
|
|
307
308
|
* - `donut`
|
|
309
|
+
* - `exponentialTrendline`
|
|
308
310
|
* - `funnel`
|
|
311
|
+
* - `pyramid`
|
|
312
|
+
* - `heatmap`
|
|
309
313
|
* - `horizontalWaterfall`
|
|
310
314
|
* - `line`
|
|
315
|
+
* - `linearTrendline`
|
|
316
|
+
* - `logarithmicTrendline`
|
|
317
|
+
* - `movingAverageTrendline`
|
|
311
318
|
* - `ohlc`
|
|
312
319
|
* - `pie`
|
|
313
320
|
* - `polarArea`
|
|
314
321
|
* - `polarLine`
|
|
315
322
|
* - `polarScatter`
|
|
323
|
+
* - `polynomialTrendline`
|
|
324
|
+
* - `powerTrendline`
|
|
316
325
|
* - `radarArea`
|
|
317
326
|
* - `radarColumn`
|
|
318
327
|
* - `radarLine`
|
|
@@ -449,6 +458,9 @@ export interface Series {
|
|
|
449
458
|
tooltip?: SeriesTooltip;
|
|
450
459
|
/**
|
|
451
460
|
* The configuration options of the series trendlines.
|
|
461
|
+
*
|
|
462
|
+
* The `trendline` option is supported when [`series.type`]({% slug api_charts_chartseriesitemprops %}#toc-type) is set to
|
|
463
|
+
* "`linearTrendline`", "`exponentialTrendline`", "`logarithmicTrendline`", "`powerTrendline`", "`polynomialTrendline`" or "`movingAverageTrendline`".
|
|
452
464
|
*/
|
|
453
465
|
trendline?: SeriesTrendline;
|
|
454
466
|
}
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-charts',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1706033026,
|
|
12
12
|
version: '',
|
|
13
13
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
14
14
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-charts",
|
|
3
3
|
"description": "Kendo UI for Vue Charts package",
|
|
4
|
-
"version": "4.
|
|
4
|
+
"version": "4.3.0-dev.202401231815",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -44,17 +44,17 @@
|
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@progress/kendo-charts": "2.0.0",
|
|
47
|
-
"@progress/kendo-vue-common": "4.
|
|
48
|
-
"@progress/kendo-vue-popup": "4.
|
|
47
|
+
"@progress/kendo-vue-common": "4.3.0-dev.202401231815",
|
|
48
|
+
"@progress/kendo-vue-popup": "4.3.0-dev.202401231815"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@progress/kendo-data-query": "^1.0.0",
|
|
52
52
|
"@progress/kendo-drawing": "^1.8.0",
|
|
53
53
|
"@progress/kendo-file-saver": "^1.0.1",
|
|
54
54
|
"@progress/kendo-licensing": "^1.3.0",
|
|
55
|
-
"@progress/kendo-vue-dropdowns": "4.
|
|
56
|
-
"@progress/kendo-vue-inputs": "4.
|
|
57
|
-
"@progress/kendo-vue-intl": "4.
|
|
55
|
+
"@progress/kendo-vue-dropdowns": "4.3.0-dev.202401231815",
|
|
56
|
+
"@progress/kendo-vue-inputs": "4.3.0-dev.202401231815",
|
|
57
|
+
"@progress/kendo-vue-intl": "4.3.0-dev.202401231815",
|
|
58
58
|
"cldr-core": "^41.0.0",
|
|
59
59
|
"cldr-dates-full": "^41.0.0",
|
|
60
60
|
"cldr-numbers-full": "^41.0.0",
|