@progress/kendo-angular-charts 13.3.1-develop.1 → 13.4.0-develop.10

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/README.md CHANGED
@@ -34,6 +34,7 @@ The [Angular Charts](https://www.telerik.com/kendo-angular-ui/components/charts/
34
34
  - [Angular Donut Chart](https://www.telerik.com/kendo-angular-ui/components/charts/series-types/donut/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-charts)
35
35
  - [Angular Pie Chart](https://www.telerik.com/kendo-angular-ui/components/charts/series-types/pie/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-charts)
36
36
  - [Angular Funnel Chart](https://www.telerik.com/kendo-angular-ui/components/charts/series-types/funnel/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-charts)
37
+ - [Angular Pyramid Chart](https://www.telerik.com/kendo-angular-ui/components/charts/series-types/pyramid/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-charts)
37
38
  - [Angular Bubble Chart](https://www.telerik.com/kendo-angular-ui/components/charts/series-types/bubble/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-charts)
38
39
  - [Angular Polar Chart](https://www.telerik.com/kendo-angular-ui/components/charts/series-types/polar/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-charts)
39
40
  - [Angular Scatter Plot Chart](https://www.telerik.com/kendo-angular-ui/components/charts/series-types/scatter/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-charts)
@@ -45,7 +46,7 @@ The [Angular Charts](https://www.telerik.com/kendo-angular-ui/components/charts/
45
46
 
46
47
  Among the many features which the Kendo UI for Angular Charts deliver are:
47
48
 
48
- * [Chart series types](https://www.telerik.com/kendo-angular-ui/components/charts/series-types/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-charts)—The Charts support a wide range of series types such as Categorical, Scatter, Circular, Funnel, and Scatter.
49
+ * [Chart series types](https://www.telerik.com/kendo-angular-ui/components/charts/series-types/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-charts)—The Charts support a wide range of series types such as Categorical, Scatter, Circular, Funnel, Pyramid, and Scatter.
49
50
  * [Data binding](https://www.telerik.com/kendo-angular-ui/components/charts/chart/data-binding/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-charts)—The Charts support the binding of their data series to arrays, arrays of arrays, objects, and observables. Beyond the actual series, other areas of the Chart, like the axis and labels, can all be bound to your data as well.
50
51
  * [Rendering modes](https://www.telerik.com/kendo-angular-ui/components/charts/chart/rendering/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-charts)—The Charts support two modes for rendering—Canvas (bitmap) and SVG (vector graphics). By default, the Charts are rendered through SVG. Switching between the two is as easy as updating a single configuration option.
51
52
  * [Export options](https://www.telerik.com/kendo-angular-ui/components/charts/chart/export-options/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-angular-trial-npm-charts)—The Charts provide built-in support to save your Charts as an Image (PNG), PDF, SVG—without the need for server-side helpers.
@@ -20,12 +20,12 @@ export interface LegendLabelsContentArgs {
20
20
  value?: any;
21
21
  /**
22
22
  * The point value represented as a percentage value.
23
- * Available only for the Donut, Pie, and Funnel charts.
23
+ * Available only for the Donut, Pie, Funnel and Pyramid charts.
24
24
  */
25
25
  percentage?: number;
26
26
  /**
27
27
  * The point dataItem.
28
- * Available only for the Donut, Pie, and Funnel charts.
28
+ * Available only for the Donut, Pie, Funnel and Pyramid charts.
29
29
  */
30
30
  dataItem?: any;
31
31
  }
@@ -15,7 +15,7 @@ export interface SeriesLabelsContentArgs {
15
15
  */
16
16
  dataItem: any;
17
17
  /**
18
- * The category name. Available for the Area, Bar, Column, Bubble, Donut, Funnel, Line, and Pie
18
+ * The category name. Available for the Area, Bar, Column, Bubble, Donut, Funnel, Pyramid, Line, and Pie
19
19
  * series.
20
20
  */
21
21
  category: any;
@@ -105,7 +105,7 @@ export declare class SeriesItemComponent extends CollectionItemComponent impleme
105
105
  downColorField: string;
106
106
  drilldownField: string;
107
107
  /**
108
- * The `dynamicHeight` option is supported when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"funnel"`.
108
+ * The `dynamicHeight` option is supported when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"funnel"` or `"pyramid"`.
109
109
  * When set to `false`, all segments become with the same height.
110
110
  * Otherwise, the height of each segment is based on its value.
111
111
  * @default true
@@ -207,7 +207,7 @@ export declare class SeriesItemComponent extends CollectionItemComponent impleme
207
207
  missingValues: 'gap' | 'interpolate' | 'zero';
208
208
  name: string;
209
209
  /**
210
- * Specifies the top-base/bottom-base ratio of the whole Chart. If the `neckRatio` is set to `3`,
210
+ * Specifies the top-base/bottom-base ratio of the whole Funnel Chart. If the `neckRatio` is set to `3`,
211
211
  * it means the top base is three times smaller than the bottom base.
212
212
  * The `neckRatio` option is supported when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"funnel"` and `dynamicSlope` is set to `false`.
213
213
  * @default 0.3
@@ -247,8 +247,8 @@ export declare class SeriesItemComponent extends CollectionItemComponent impleme
247
247
  */
248
248
  q3Field: string;
249
249
  /**
250
- * The space in pixels between the different segments of the Funnel Chart.
251
- * The `segmentSpacing` option is supported when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"funnel"`.
250
+ * The space in pixels between the different segments of the Funnel or Pyramid Chart.
251
+ * The `segmentSpacing` option is supported when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"funnel"` or `"pyramid"`.
252
252
  * @default 0
253
253
  */
254
254
  segmentSpacing: number;
@@ -322,7 +322,7 @@ export declare class SeriesItemComponent extends CollectionItemComponent impleme
322
322
  */
323
323
  visible: boolean;
324
324
  /**
325
- * A value which indicates whether to show the point category (for Funnel, Donut, and Pie series)
325
+ * A value which indicates whether to show the point category (for Funnel, Pyramid, Donut, and Pie series)
326
326
  * or the series name (for other available series types) in the legend.
327
327
  * @default true
328
328
  */
@@ -404,7 +404,7 @@ export declare class SeriesItemComponent extends CollectionItemComponent impleme
404
404
  toggleVisibility(): void;
405
405
  /**
406
406
  * Toggles the visibility of a point with the given index.
407
- * Applicable for the Pie, Donut, and Funnel series.
407
+ * Applicable for the Pie, Donut, Funnel and Pyramid series.
408
408
  *
409
409
  * @param pointIndex - The zero-based index of the point to toggle.
410
410
  */
@@ -372,7 +372,7 @@ export declare class ChartComponent implements ChartOptions, OnChanges, OnInit,
372
372
  */
373
373
  getPlotArea(): ChartPlotArea;
374
374
  /**
375
- * Highlights the series points or the segments of a Pie, Donut, or Funnel charts.
375
+ * Highlights the series points or the segments of a Pie, Donut, Funnel or Pyramid charts.
376
376
  *
377
377
  * See [Series Highlight]({% slug serieshighlight_chart_charts %}) for more details (with an [example](slug:serieshighlight_chart_charts#toc-toggling-the-highlight-with-code)).
378
378
  * @param show - A Boolean value that indicates whether the highlight is shown or hidden.
@@ -40,7 +40,7 @@ export class SeriesItemComponent extends CollectionItemComponent {
40
40
  }
41
41
  /**
42
42
  * Toggles the visibility of a point with the given index.
43
- * Applicable for the Pie, Donut, and Funnel series.
43
+ * Applicable for the Pie, Donut, Funnel and Pyramid series.
44
44
  *
45
45
  * @param pointIndex - The zero-based index of the point to toggle.
46
46
  */
@@ -68,7 +68,7 @@ ChartBreadcrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0",
68
68
  ChartBreadcrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ChartBreadcrumbComponent, selector: "kendo-chart-breadcrumb", inputs: { chart: "chart", rootItem: "rootItem" }, viewQueries: [{ propertyName: "breadcrumb", first: true, predicate: ["breadcrumb"], descendants: true, static: true }], exportAs: ["kendoChartBreadcrumb"], usesOnChanges: true, ngImport: i0, template: `
69
69
  <kendo-breadcrumb [items]="items" (itemClick)="onItemClick($event)">
70
70
  </kendo-breadcrumb>
71
- `, isInline: true, components: [{ type: i1.BreadCrumbComponent, selector: "kendo-breadcrumb", inputs: ["items", "separatorIcon", "separatorSVGIcon", "collapseMode"], outputs: ["itemClick"], exportAs: ["kendoBreadCrumb"] }] });
71
+ `, isInline: true, components: [{ type: i1.BreadCrumbComponent, selector: "kendo-breadcrumb", inputs: ["items", "separatorIcon", "separatorSVGIcon", "collapseMode", "size"], outputs: ["itemClick"], exportAs: ["kendoBreadCrumb"] }] });
72
72
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartBreadcrumbComponent, decorators: [{
73
73
  type: Component,
74
74
  args: [{
@@ -422,7 +422,7 @@ export class ChartComponent {
422
422
  }
423
423
  }
424
424
  /**
425
- * Highlights the series points or the segments of a Pie, Donut, or Funnel charts.
425
+ * Highlights the series points or the segments of a Pie, Donut, Funnel or Pyramid charts.
426
426
  *
427
427
  * See [Series Highlight]({% slug serieshighlight_chart_charts %}) for more details (with an [example](slug:serieshighlight_chart_charts#toc-toggling-the-highlight-with-code)).
428
428
  * @param show - A Boolean value that indicates whether the highlight is shown or hidden.
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-charts',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1692174955,
13
- version: '13.3.1-develop.1',
12
+ publishDate: 1692971816,
13
+ version: '13.4.0-develop.10',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -19,7 +19,7 @@ export declare class LegendEvent extends PreventableEvent {
19
19
  seriesIndex: number;
20
20
  /**
21
21
  * The point index in the series.
22
- * Applicable only for the Pie, Donut, and Funnel series.
22
+ * Applicable only for the Pie, Donut, Funnel and Pyramid series.
23
23
  */
24
24
  pointIndex: number;
25
25
  /**
@@ -566,7 +566,7 @@ class SeriesItemComponent extends CollectionItemComponent {
566
566
  }
567
567
  /**
568
568
  * Toggles the visibility of a point with the given index.
569
- * Applicable for the Pie, Donut, and Funnel series.
569
+ * Applicable for the Pie, Donut, Funnel and Pyramid series.
570
570
  *
571
571
  * @param pointIndex - The zero-based index of the point to toggle.
572
572
  */
@@ -1867,8 +1867,8 @@ const packageMetadata = {
1867
1867
  name: '@progress/kendo-angular-charts',
1868
1868
  productName: 'Kendo UI for Angular',
1869
1869
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
1870
- publishDate: 1692174955,
1871
- version: '13.3.1-develop.1',
1870
+ publishDate: 1692971816,
1871
+ version: '13.4.0-develop.10',
1872
1872
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
1873
1873
  };
1874
1874
 
@@ -2736,7 +2736,7 @@ class ChartComponent {
2736
2736
  }
2737
2737
  }
2738
2738
  /**
2739
- * Highlights the series points or the segments of a Pie, Donut, or Funnel charts.
2739
+ * Highlights the series points or the segments of a Pie, Donut, Funnel or Pyramid charts.
2740
2740
  *
2741
2741
  * See [Series Highlight]({% slug serieshighlight_chart_charts %}) for more details (with an [example](slug:serieshighlight_chart_charts#toc-toggling-the-highlight-with-code)).
2742
2742
  * @param show - A Boolean value that indicates whether the highlight is shown or hidden.
@@ -6354,7 +6354,7 @@ ChartBreadcrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0",
6354
6354
  ChartBreadcrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ChartBreadcrumbComponent, selector: "kendo-chart-breadcrumb", inputs: { chart: "chart", rootItem: "rootItem" }, viewQueries: [{ propertyName: "breadcrumb", first: true, predicate: ["breadcrumb"], descendants: true, static: true }], exportAs: ["kendoChartBreadcrumb"], usesOnChanges: true, ngImport: i0, template: `
6355
6355
  <kendo-breadcrumb [items]="items" (itemClick)="onItemClick($event)">
6356
6356
  </kendo-breadcrumb>
6357
- `, isInline: true, components: [{ type: i1$1.BreadCrumbComponent, selector: "kendo-breadcrumb", inputs: ["items", "separatorIcon", "separatorSVGIcon", "collapseMode"], outputs: ["itemClick"], exportAs: ["kendoBreadCrumb"] }] });
6357
+ `, isInline: true, components: [{ type: i1$1.BreadCrumbComponent, selector: "kendo-breadcrumb", inputs: ["items", "separatorIcon", "separatorSVGIcon", "collapseMode", "size"], outputs: ["itemClick"], exportAs: ["kendoBreadCrumb"] }] });
6358
6358
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartBreadcrumbComponent, decorators: [{
6359
6359
  type: Component,
6360
6360
  args: [{
@@ -562,7 +562,7 @@ class SeriesItemComponent extends CollectionItemComponent {
562
562
  }
563
563
  /**
564
564
  * Toggles the visibility of a point with the given index.
565
- * Applicable for the Pie, Donut, and Funnel series.
565
+ * Applicable for the Pie, Donut, Funnel and Pyramid series.
566
566
  *
567
567
  * @param pointIndex - The zero-based index of the point to toggle.
568
568
  */
@@ -2236,8 +2236,8 @@ const packageMetadata = {
2236
2236
  name: '@progress/kendo-angular-charts',
2237
2237
  productName: 'Kendo UI for Angular',
2238
2238
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
2239
- publishDate: 1692174955,
2240
- version: '13.3.1-develop.1',
2239
+ publishDate: 1692971816,
2240
+ version: '13.4.0-develop.10',
2241
2241
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
2242
2242
  };
2243
2243
 
@@ -2728,7 +2728,7 @@ class ChartComponent {
2728
2728
  }
2729
2729
  }
2730
2730
  /**
2731
- * Highlights the series points or the segments of a Pie, Donut, or Funnel charts.
2731
+ * Highlights the series points or the segments of a Pie, Donut, Funnel or Pyramid charts.
2732
2732
  *
2733
2733
  * See [Series Highlight]({% slug serieshighlight_chart_charts %}) for more details (with an [example](slug:serieshighlight_chart_charts#toc-toggling-the-highlight-with-code)).
2734
2734
  * @param show - A Boolean value that indicates whether the highlight is shown or hidden.
@@ -6377,7 +6377,7 @@ ChartBreadcrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0",
6377
6377
  ChartBreadcrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ChartBreadcrumbComponent, selector: "kendo-chart-breadcrumb", inputs: { chart: "chart", rootItem: "rootItem" }, viewQueries: [{ propertyName: "breadcrumb", first: true, predicate: ["breadcrumb"], descendants: true, static: true }], exportAs: ["kendoChartBreadcrumb"], usesOnChanges: true, ngImport: i0, template: `
6378
6378
  <kendo-breadcrumb [items]="items" (itemClick)="onItemClick($event)">
6379
6379
  </kendo-breadcrumb>
6380
- `, isInline: true, components: [{ type: i1$1.BreadCrumbComponent, selector: "kendo-breadcrumb", inputs: ["items", "separatorIcon", "separatorSVGIcon", "collapseMode"], outputs: ["itemClick"], exportAs: ["kendoBreadCrumb"] }] });
6380
+ `, isInline: true, components: [{ type: i1$1.BreadCrumbComponent, selector: "kendo-breadcrumb", inputs: ["items", "separatorIcon", "separatorSVGIcon", "collapseMode", "size"], outputs: ["itemClick"], exportAs: ["kendoBreadCrumb"] }] });
6381
6381
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartBreadcrumbComponent, decorators: [{
6382
6382
  type: Component,
6383
6383
  args: [{
@@ -3,18 +3,18 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
6
- * The alignment of the label when [`series.type`](slug:api_charts_series#toc-type) is set to `"donut"`, `"funnel"`, or `"pie"`.
6
+ * The alignment of the label when [`series.type`](slug:api_charts_series#toc-type) is set to `"donut"`, `"funnel"`, `"pyramid"` or `"pie"`.
7
7
  *
8
8
  * The supported values for `"donut"` and `"pie"` are:
9
9
  *
10
10
  * - `"circle"`&mdash;The labels are positioned in circle around the Chart.
11
11
  * - `"column"`&mdash;The labels are positioned in columns to the left and right of the Chart.
12
12
  *
13
- * The supported values for `"funnel"` are:
13
+ * The supported values for `"funnel"` and `"pyramid"` are:
14
14
  *
15
- * - `"center"`&mdash;The labels are positioned in the center over the funnel segment.
16
- * - `"right"`&mdash;The labels are positioned on the right side of the Chart and, if there is enough space, do not overlap the funnel segments.
17
- * - `"left"`&mdash;The labels are positioned on the left side of the Chart and, if there is enough space, do not overlap the funnel segments.
15
+ * - `"center"`&mdash;The labels are positioned in the center over the segment.
16
+ * - `"right"`&mdash;The labels are positioned on the right side of the Chart and, if there is enough space, do not overlap the segments.
17
+ * - `"left"`&mdash;The labels are positioned on the left side of the Chart and, if there is enough space, do not overlap the segments.
18
18
  *
19
19
  */
20
20
  export declare type SeriesLabelsAlignment = 'circle' | 'column' | 'center' | 'right' | 'left';
@@ -7,14 +7,14 @@
7
7
  *
8
8
  * - `"above"`&mdash;The label is positioned at the top of the marker. Applicable for series that render points, including the Bubble series.
9
9
  * - `"below"`&mdash;The label is positioned at the bottom of the marker. Applicable for series that render points, including the Bubble series.
10
- * - `"center"`&mdash;The label is positioned at the point center. Applicable for the Bar, Column, Donut, Pie, Funnel, RadarColumn, and Waterfall series.
10
+ * - `"center"`&mdash;The label is positioned at the point center. Applicable for the Bar, Column, Donut, Pie, Funnel, Pyramid, RadarColumn, and Waterfall series.
11
11
  * - `"insideBase"`&mdash;The label is positioned inside, near the base of the bar. Applicable for the Bar, Column, and Waterfall series.
12
12
  * - `"insideEnd"`&mdash;The label is positioned inside, near the end of the point. Applicable for the Bar, Column, Donut, Pie, RadarColumn, and Waterfall series.
13
13
  * - `"left"`&mdash;The label is positioned to the left of the marker. Applicable for series that render points, including the Bubble series.
14
14
  * - `"outsideEnd"`&mdash;The label is positioned outside, near the end of the point. Applicable for the Bar, Column, Donut, Pie, RadarColumn, and Waterfall series. Not applicable for stacked series.
15
15
  * - `"right"`&mdash;The label is positioned to the right of the marker. Applicable for series that render points, including the Bubble series.
16
- * - `"top"`&mdash;The label is positioned at the top of the segment. Applicable for the Funnel series.
17
- * - `"bottom"`&mdash;The label is positioned at the bottom of the segment. Applicable for the Funnel series.
16
+ * - `"top"`&mdash;The label is positioned at the top of the segment. Applicable for the Funnel and Pyramid series.
17
+ * - `"bottom"`&mdash;The label is positioned at the bottom of the segment. Applicable for the Funnel and Pyramid series.
18
18
  * - `"auto"`&mdash;The from and to labels are positioned at the top or bottom (for the RangeArea series), or to the left or right (for the VerticalRangeArea series), so that they are outside the filled area. Applicable for the RangeArea and VerticalRangeArea series.
19
19
  *
20
20
  */
@@ -23,6 +23,7 @@
23
23
  * - `"polarArea"`&mdash;Displays the data as a series of polar area segments, which show the contribution of each value to a total.
24
24
  * - `"polarLine"`&mdash;Displays the data as continuous lines that connect data points evenly distributed along the category field.
25
25
  * - `"polarScatter"`&mdash;Displays the data as points distributed in a polar coordinate system.
26
+ * - `"pyramid"`&mdash;Displays the data as a pyramid divided in segments proportional to each value.
26
27
  * - `"radarArea"`&mdash;Displays the data as a series of radar area segments, which show the contribution of each value to a total.
27
28
  * - `"radarColumn"`&mdash;Displays the data as sets of vertical bars that show the relationship between individual items and the whole category.
28
29
  * - `"radarLine"`&mdash;Displays the data as continuous lines that connect data points evenly distributed along the category field.
@@ -60,4 +61,4 @@
60
61
  *
61
62
  * ```
62
63
  */
63
- export declare type SeriesType = 'area' | 'bar' | 'boxPlot' | 'bubble' | 'bullet' | 'candlestick' | 'column' | 'donut' | 'funnel' | 'heatmap' | 'horizontalWaterfall' | 'line' | 'ohlc' | 'pie' | 'polarArea' | 'polarLine' | 'polarScatter' | 'radarArea' | 'radarColumn' | 'radarLine' | 'rangeArea' | 'rangeBar' | 'rangeColumn' | 'scatter' | 'scatterLine' | 'verticalArea' | 'verticalBoxPlot' | 'verticalBullet' | 'verticalLine' | 'verticalRangeArea' | 'waterfall';
64
+ export declare type SeriesType = 'area' | 'bar' | 'boxPlot' | 'bubble' | 'bullet' | 'candlestick' | 'column' | 'donut' | 'funnel' | 'pyramid' | 'heatmap' | 'horizontalWaterfall' | 'line' | 'ohlc' | 'pie' | 'polarArea' | 'polarLine' | 'polarScatter' | 'radarArea' | 'radarColumn' | 'radarLine' | 'rangeArea' | 'rangeBar' | 'rangeColumn' | 'scatter' | 'scatterLine' | 'verticalArea' | 'verticalBoxPlot' | 'verticalBullet' | 'verticalLine' | 'verticalRangeArea' | 'waterfall';
@@ -26,7 +26,7 @@ export interface SeriesDefaultsTooltip {
26
26
  /**
27
27
  * The format of the labels. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of `IntlService`.
28
28
  *
29
- * The Area, Bar, Column, Funnel, Line, and Pie are represented by `{0}` as the value placeholder.
29
+ * The Area, Bar, Column, Funnel, Pyramid, Line, and Pie are represented by `{0}` as the value placeholder.
30
30
  *
31
31
  * The Bubble chart type uses the following value placeholders: `{0}` - x value, `{1}` - y value, `{2}` - size value, and `{3}` - category name.
32
32
  *
@@ -44,6 +44,10 @@ export interface SeriesDefaults {
44
44
  * Default settings for funnel series.
45
45
  */
46
46
  funnel?: Series;
47
+ /**
48
+ * Default settings for pyramid series.
49
+ */
50
+ pyramid?: Series;
47
51
  /**
48
52
  * Default settings for line series.
49
53
  */
@@ -13,7 +13,7 @@ import { SeriesLabelsTo } from './labels.to.interface';
13
13
  */
14
14
  export interface SeriesLabels {
15
15
  /**
16
- * The alignment of the label when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"donut"`, `"funnel"`, or `"pie"`.
16
+ * The alignment of the label when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"donut"`, `"funnel"`, `"pyramid"` or `"pie"`.
17
17
  */
18
18
  align?: SeriesLabelsAlignment;
19
19
  /**
@@ -26,7 +26,7 @@ export interface SeriesTooltip {
26
26
  /**
27
27
  * The format of the labels. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of `IntlService`.
28
28
  *
29
- * The Area, Bar, Column, Funnel, Line, and Pie are represented by `{0}` as the value placeholder.
29
+ * The Area, Bar, Column, Funnel, Pyramid, Line, and Pie are represented by `{0}` as the value placeholder.
30
30
  *
31
31
  * The Bubble chart type uses the following value placeholders: `{0}` - x value, `{1}` - y value, `{2}` - size value, and `{3}` - category name.
32
32
  *
@@ -133,7 +133,7 @@ export interface Series {
133
133
  */
134
134
  drilldownField?: string;
135
135
  /**
136
- * The `dynamicHeight` option is supported when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"funnel"`.
136
+ * The `dynamicHeight` option is supported when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"funnel"` or `"pyramid"`.
137
137
  * When set to `false`, all segments become with the same height.
138
138
  * Otherwise, the height of each segment is based on its value.
139
139
  */
@@ -249,7 +249,7 @@ export interface Series {
249
249
  */
250
250
  name?: string;
251
251
  /**
252
- * Specifies the top-base/bottom-base ratio of the whole Chart. If the `neckRatio` is set to `3`,
252
+ * Specifies the top-base/bottom-base ratio of the whole Funnel Chart. If the `neckRatio` is set to `3`,
253
253
  * it means the top base is three times smaller than the bottom base.
254
254
  * The `neckRatio` option is supported when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"funnel"` and `dynamicSlope` is set to `false`.
255
255
  */
@@ -301,8 +301,8 @@ export interface Series {
301
301
  */
302
302
  q3Field?: string;
303
303
  /**
304
- * The space in pixels between the different segments of the Funnel Chart.
305
- * The `segmentSpacing` option is supported when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"funnel"`.
304
+ * The space in pixels between the different segments of the Funnel or Pyramid Chart.
305
+ * The `segmentSpacing` option is supported when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"funnel"` or `"pyramid"`.
306
306
  */
307
307
  segmentSpacing?: number;
308
308
  /**
@@ -373,18 +373,18 @@ export interface Series {
373
373
  */
374
374
  visible?: boolean;
375
375
  /**
376
- * A value which indicates whether to show the point category (for Funnel, Donut, and Pie series)
376
+ * A value which indicates whether to show the point category (for Funnel, Pyramid, Donut, and Pie series)
377
377
  * or the series name (for other available series types) in the legend.
378
378
  */
379
379
  visibleInLegend?: boolean;
380
380
  /**
381
381
  * The data item field which indicates whether to show the point category name in the legend.
382
- * The `visibleInLegendField` option is supported when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"funnel"`, `"donut"`, or `"pie"`.
382
+ * The `visibleInLegendField` option is supported when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"funnel"`, `"pyramid"`, `"donut"`, or `"pie"`.
383
383
  */
384
384
  visibleInLegendField?: string;
385
385
  /**
386
386
  * A function that can be used to create a custom visual for the points. Applicable for the Bar, Column,
387
- * Pie, Donut, Funnel, Range Bar, Range Column, Line, ScatterLine, and Waterfall series.
387
+ * Pie, Donut, Funnel, Pyramid, Range Bar, Range Column, Line, ScatterLine, and Waterfall series.
388
388
  *
389
389
  * The available argument fields are:
390
390
  *
@@ -405,7 +405,7 @@ export interface Series {
405
405
  * - `startAngle`&mdash;The segment start angle. Available for the Donut and Pie series.
406
406
  * - `endAngle`&mdash;The segment end angle. Available for the Donut and Pie series.
407
407
  * - `center`&mdash;The segment center point. Available for the Donut and Pie series.
408
- * - `points`&mdash;The segment points. Available for the Funnel series.
408
+ * - `points`&mdash;The segment points. Available for the Funnel and Pyramid series.
409
409
  */
410
410
  visual?: (e: SeriesVisualArgs) => drawing.Element;
411
411
  /**
@@ -26,7 +26,7 @@ export interface Tooltip {
26
26
  /**
27
27
  * The format of the labels. Uses the [`format`]({% slug api_intl_intlservice %}#toc-format) method of IntlService.
28
28
  *
29
- * The Area, Bar, Column, Funnel, Line, and Pie are represented by `{0}` as the value placeholder.
29
+ * The Area, Bar, Column, Funnel, Pyramid, Line, and Pie are represented by `{0}` as the value placeholder.
30
30
  *
31
31
  * The Bubble chart type uses the following value placeholders: `{0}` - x value, `{1}` - y value, `{2}` - size value, and `{3}` - category name.
32
32
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-charts",
3
- "version": "13.3.1-develop.1",
3
+ "version": "13.4.0-develop.10",
4
4
  "description": "Kendo UI Charts for Angular - A comprehensive package for creating beautiful and interactive data visualization. Every chart type, stock charts, and sparklines are included.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -28,6 +28,7 @@
28
28
  "Donut Chart",
29
29
  "Pie Chart",
30
30
  "Funnel Chart",
31
+ "Pyramid Chart",
31
32
  "Bubble Chart",
32
33
  "Polar Chart",
33
34
  "Scatter Plot Chart",
@@ -46,17 +47,17 @@
46
47
  "@angular/platform-browser": "13 - 16",
47
48
  "@progress/kendo-drawing": "^1.17.2",
48
49
  "@progress/kendo-licensing": "^1.0.2",
49
- "@progress/kendo-angular-common": "13.3.1-develop.1",
50
- "@progress/kendo-angular-intl": "13.3.1-develop.1",
51
- "@progress/kendo-angular-l10n": "13.3.1-develop.1",
52
- "@progress/kendo-angular-popup": "13.3.1-develop.1",
53
- "@progress/kendo-angular-navigation": "13.3.1-develop.1",
50
+ "@progress/kendo-angular-common": "13.4.0-develop.10",
51
+ "@progress/kendo-angular-intl": "13.4.0-develop.10",
52
+ "@progress/kendo-angular-l10n": "13.4.0-develop.10",
53
+ "@progress/kendo-angular-popup": "13.4.0-develop.10",
54
+ "@progress/kendo-angular-navigation": "13.4.0-develop.10",
54
55
  "hammerjs": "^2.0.0",
55
56
  "rxjs": "^6.5.3 || ^7.0.0"
56
57
  },
57
58
  "dependencies": {
58
59
  "tslib": "^2.3.1",
59
- "@progress/kendo-angular-schematics": "13.3.1-develop.1",
60
+ "@progress/kendo-angular-schematics": "13.4.0-develop.10",
60
61
  "@progress/kendo-charts": "^1.29.0",
61
62
  "@progress/kendo-svg-icons": "^1.0.0"
62
63
  },