@progress/kendo-angular-charts 12.0.2-develop.1 → 12.0.2-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.
@@ -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: 1683200974,
13
- version: '12.0.2-develop.1',
12
+ publishDate: 1683884137,
13
+ version: '12.0.2-develop.3',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -1818,8 +1818,8 @@ const packageMetadata = {
1818
1818
  name: '@progress/kendo-angular-charts',
1819
1819
  productName: 'Kendo UI for Angular',
1820
1820
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
1821
- publishDate: 1683200974,
1822
- version: '12.0.2-develop.1',
1821
+ publishDate: 1683884137,
1822
+ version: '12.0.2-develop.3',
1823
1823
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
1824
1824
  };
1825
1825
 
@@ -2189,8 +2189,8 @@ const packageMetadata = {
2189
2189
  name: '@progress/kendo-angular-charts',
2190
2190
  productName: 'Kendo UI for Angular',
2191
2191
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
2192
- publishDate: 1683200974,
2193
- version: '12.0.2-develop.1',
2192
+ publishDate: 1683884137,
2193
+ version: '12.0.2-develop.3',
2194
2194
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
2195
2195
  };
2196
2196
 
@@ -5,6 +5,12 @@
5
5
  /**
6
6
  * The position of the axis labels.
7
7
  *
8
+ * The possible values are:
9
+ * - `"start"`—The labels are positioned at the start of the axis.
10
+ * - `"end"`—The labels are positioned at the end of the axis.
11
+ * - `"onAxis"`—The labels are positioned on the axis.
12
+ * - `""`—The labels are positioned based on the axis type.
13
+ *
8
14
  * @example
9
15
  * ```ts
10
16
  * import { Component } from '@angular/core';
@@ -5,6 +5,13 @@
5
5
  /**
6
6
  * The position of an axis title.
7
7
  *
8
+ * The possible values are:
9
+ * - `"top"`—The title is positioned at the top of the axis.
10
+ * - `"bottom"`—The title is positioned at the bottom of the axis.
11
+ * - `"left"`—The title is positioned at the left of the axis.
12
+ * - `"right"`—The title is positioned at the right of the axis.
13
+ * - `"center"`—The title is positioned at the center of the axis.
14
+ *
8
15
  * @example
9
16
  * ```ts
10
17
  * import { Component } from '@angular/core';
@@ -5,6 +5,16 @@
5
5
  /**
6
6
  * The `baseUnit` type of a X or Y axis.
7
7
  *
8
+ * The possible values are:
9
+ * - `"milliseconds"`—The base unit is milliseconds.
10
+ * - `"seconds"`—The base unit is seconds.
11
+ * - `"minutes"`—The base unit is minutes.
12
+ * - `"hours"`—The base unit is hours.
13
+ * - `"days"`—The base unit is days.
14
+ * - `"weeks"`—The base unit is weeks.
15
+ * - `"months"`—The base unit is months.
16
+ * - `"years"`—The base unit is years.
17
+ *
8
18
  * @example
9
19
  * ```ts
10
20
  * import { Component } from '@angular/core';
@@ -6,6 +6,11 @@ import { BaseUnit } from './base-unit';
6
6
  /**
7
7
  * The `baseUnit` type of the category axis.
8
8
  *
9
+ * The possible values are:
10
+ * - [`BaseUnit`](slug:api_charts_baseunit)—The base time interval for the axis labels.
11
+ * - `"auto"`—The base unit is automatically determined by the minimum difference between subsequent categories.
12
+ * - `"fit"`—The [`categoryAxis.baseUnitStep`](slug:api_charts_categoryaxis#toc-baseunitstep) and base unit are adjusted so that the number of categories does not exceed [`categoryAxis.maxDateGroups`](slug:api_charts_categoryaxis#toc-maxdategroups), and the [`series.aggregate`](slug:api_charts_series#toc-aggregate) function is used to aggregate data based on the selected base unit.
13
+ *
9
14
  * @example
10
15
  * ```ts
11
16
  * import { Component } from '@angular/core';
@@ -5,6 +5,15 @@
5
5
  /**
6
6
  * The dash line type.
7
7
  *
8
+ * The possible values are:
9
+ * - `"dash"`—A line that consists of dashes.
10
+ * - `"dashDot"`—A line that consists of a repeating dash-dot pattern.
11
+ * - `"dot"`—A line that consists of dots.
12
+ * - `"longDash"`—A line that consists of a repeating long-dash pattern.
13
+ * - `"longDashDot"`—A line that consists of a repeating long-dash-dot pattern.
14
+ * - `"longDashDotDot"`—A line that consists of a repeating long-dash-dot-dot pattern.
15
+ * - `"solid"`—A solid line.
16
+ *
8
17
  * @example
9
18
  * ```ts
10
19
  * import { Component } from '@angular/core';
@@ -5,6 +5,11 @@
5
5
  /**
6
6
  * The line style of the series.
7
7
  *
8
+ * The possible values are:
9
+ * - `"normal"`—The line is straight.
10
+ * - `"step"`—The line is stepped.
11
+ * - `"smooth"`—The line is smoothed.
12
+ *
8
13
  * @example
9
14
  * ```ts
10
15
  * import { Component } from '@angular/core';
@@ -3,6 +3,12 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
6
- * Specifies an axis for locking during the pan and zoom operations.
6
+ * Specifies an axis for locking during the pan and zoom operations ([see example](slug:panzoom_chart_charts#toc-disabling-pan-and-zoom-directions)).
7
+ *
8
+ * The possible values are:
9
+ * - `"none"`—No axis is locked.
10
+ * - `"x"`—The X axis is locked.
11
+ * - `"y"`—The Y axis is locked.
12
+ *
7
13
  */
8
14
  export declare type LockAxis = 'none' | 'x' | 'y';
@@ -7,6 +7,14 @@
7
7
  *
8
8
  * > Note that `"rect"` is an alias for `"square"`.
9
9
  *
10
+ * The possible values are:
11
+ * - `"square"`—The marker is a square.
12
+ * - `"circle"`—The marker is a circle.
13
+ * - `"triangle"`—The marker is a triangle.
14
+ * - `"cross"`—The marker is a cross.
15
+ * - `"rect"`—The marker is a rectangle.
16
+ * - `"roundedRect"`—The marker is a rounded rectangle.
17
+ *
10
18
  * @example
11
19
  * ```ts
12
20
  * import { Component } from '@angular/core';
@@ -4,5 +4,29 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
6
6
  * Specifies a modifier key.
7
+ *
8
+ * The possible values are:
9
+ * - `"none"`—No modifier key is pressed.
10
+ * - `"ctrl"`—The `Ctrl` key is pressed.
11
+ * - `"shift"`—The `Shift` key is pressed.
12
+ * - `"alt"`—The `Alt` key is pressed.
13
+ *
14
+ * @example
15
+ * ```ts
16
+ * import { Component } from '@angular/core';
17
+ * import { DragAction } from '@progress/kendo-angular-charts';
18
+ *
19
+ * _@Component({
20
+ * selector: 'my-app',
21
+ * template: `
22
+ * <kendo-chart [zoomable]="true">
23
+ * <kendo-chart-zoomable [selection]="dragAction"></kendo-chart-zoomable>
24
+ * </kendo-chart>
25
+ * `
26
+ * })
27
+ * export class AppComponent {
28
+ * public dragAction: DragAction = { key: 'shift' };
29
+ * }
30
+ * ```
7
31
  */
8
32
  export declare type ModifierKey = 'none' | 'ctrl' | 'shift' | 'alt';
@@ -5,6 +5,10 @@
5
5
  /**
6
6
  * The position of a note label.
7
7
  *
8
+ * The possible values are:
9
+ * - `"inside"`&mdash;The note label is positioned inside the axis.
10
+ * - `"outside"`&mdash;The note label is positioned outside the axis.
11
+ *
8
12
  * @example
9
13
  * ```ts
10
14
  * import { Component } from '@angular/core';
@@ -5,6 +5,12 @@
5
5
  /**
6
6
  * Specifies the position of a note.
7
7
  *
8
+ * The possible values are:
9
+ * - `"top"`&mdash;The note is positioned at the top of the axis.
10
+ * - `"bottom"`&mdash;The note is positioned at the bottom of the axis.
11
+ * - `"left"`&mdash;The note is positioned at the left of the axis.
12
+ * - `"right"`&mdash;The note is positioned at the right of the axis.
13
+ *
8
14
  * @example
9
15
  * ```ts
10
16
  * import { Component } from '@angular/core';
@@ -3,7 +3,7 @@
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"`, or `"pie"`.
7
7
  *
8
8
  * The supported values for `"donut"` and `"pie"` are:
9
9
  *
@@ -13,9 +13,8 @@
13
13
  * The supported values for `"funnel"` are:
14
14
  *
15
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
17
- * space, do not overlap the funnel segments.
18
- * - `"left"`&mdash;The labels are positioned on the left side of the Chart and, if there is enough
19
- * space, do not overlap the funnel segments.
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.
18
+ *
20
19
  */
21
20
  export declare type SeriesLabelsAlignment = 'circle' | 'column' | 'center' | 'right' | 'left';
@@ -5,22 +5,14 @@
5
5
  /**
6
6
  * Configures the position of the series labels.
7
7
  *
8
- * - `"above"`&mdash;The label is positioned at the top of the marker. Applicable for series that render
9
- * points, including the Bubble series.
10
- * - `"below"`&mdash;The label is positioned at the bottom of the marker. Applicable for series that
11
- * render points, including the Bubble series.
12
- * - `"center"`&mdash;The label is positioned at the point center. Applicable for the Bar, Column, Donut, Pie,
13
- * Funnel, RadarColumn, and Waterfall series.
14
- * - `"insideBase"`&mdash;The label is positioned inside, near the base of the bar. Applicable for the Bar,
15
- * Column, and Waterfall series.
16
- * - `"insideEnd"`&mdash;The label is positioned inside, near the end of the point. Applicable for the Bar,
17
- * Column, Donut, Pie, RadarColumn, and Waterfall series.
18
- * - `"left"`&mdash;The label is positioned to the left of the marker. Applicable for series that render
19
- * points, including the Bubble series.
20
- * - `"outsideEnd"`&mdash;The label is positioned outside, near the end of the point. Applicable for the Bar,
21
- * Column, Donut, Pie, RadarColumn, and Waterfall series. Not applicable for stacked series.
22
- * - `"right"`&mdash;The label is positioned to the right of the marker. Applicable for series that render
23
- * points, including the Bubble series.
8
+ * - `"above"`&mdash;The label is positioned at the top of the marker. Applicable for series that render points, including the Bubble series.
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.
11
+ * - `"insideBase"`&mdash;The label is positioned inside, near the base of the bar. Applicable for the Bar, Column, and Waterfall series.
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
+ * - `"left"`&mdash;The label is positioned to the left of the marker. Applicable for series that render points, including the Bubble series.
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
+ * - `"right"`&mdash;The label is positioned to the right of the marker. Applicable for series that render points, including the Bubble series.
24
16
  * - `"top"`&mdash;The label is positioned at the top of the segment. Applicable for the Funnel series.
25
17
  * - `"bottom"`&mdash;The label is positioned at the bottom of the segment. Applicable for the Funnel series.
26
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.
@@ -5,6 +5,39 @@
5
5
  /**
6
6
  * The series type.
7
7
  *
8
+ * The supported values are:
9
+ * - `"area"`&mdash;Displays the data as continuous lines that show trends over time, evenly distributed along the category field.
10
+ * - `"bar"`&mdash;Displays the data as sets of horizontal bars that show the relationship between individual items and the whole category.
11
+ * - `"boxPlot"`&mdash;Displays the data as a box-and-whisker diagram, which shows the distribution of values in a series.
12
+ * - `"bubble"`&mdash;Displays the data as bubbles, where each bubble represents a value from the series data.
13
+ * - `"bullet"`&mdash;Displays the data as vertical bars that show the performance measure, and markers that show the comparative measure.
14
+ * - `"candlestick"`&mdash;Displays the data as candlesticks, which show the open, close, high, and low values of a series.
15
+ * - `"column"`&mdash;Displays the data as sets of vertical bars that show the relationship between individual items and the whole category.
16
+ * - `"donut"`&mdash;Displays the data as a series of rings that are sliced depending on the value.
17
+ * - `"funnel"`&mdash;Displays the data as a funnel, which is useful for sales data visualization.
18
+ * - `"heatmap"`&mdash;Displays the data as a heatmap, which is useful for comparing values in a matrix.
19
+ * - `"horizontalWaterfall"`&mdash;Displays the data as a horizontal waterfall chart, which is useful for comparing positive and negative values over a period.
20
+ * - `"line"`&mdash;Displays the data as continuous lines that connect data points evenly distributed along the category field.
21
+ * - `"ohlc"`&mdash;Displays the data as OHLC (open-high-low-close) bars, which show the open, high, low, and close values of a series.
22
+ * - `"pie"`&mdash;Displays the data as a series of pie slices, which show the contribution of each value to a total.
23
+ * - `"polarArea"`&mdash;Displays the data as a series of polar area segments, which show the contribution of each value to a total.
24
+ * - `"polarLine"`&mdash;Displays the data as continuous lines that connect data points evenly distributed along the category field.
25
+ * - `"polarScatter"`&mdash;Displays the data as points distributed in a polar coordinate system.
26
+ * - `"radarArea"`&mdash;Displays the data as a series of radar area segments, which show the contribution of each value to a total.
27
+ * - `"radarColumn"`&mdash;Displays the data as sets of vertical bars that show the relationship between individual items and the whole category.
28
+ * - `"radarLine"`&mdash;Displays the data as continuous lines that connect data points evenly distributed along the category field.
29
+ * - `"rangeArea"`&mdash;Displays the data as a series of range area segments, which show the contribution of each value to a total.
30
+ * - `"rangeBar"`&mdash;Displays the data as sets of horizontal bars that show the relationship between individual items and the whole category.
31
+ * - `"rangeColumn"`&mdash;Displays the data as sets of vertical bars that show the relationship between individual items and the whole category.
32
+ * - `"scatter"`&mdash;Displays the data as points that show the relationship between two variables.
33
+ * - `"scatterLine"`&mdash;Displays the data as continuous lines that connect data points evenly distributed along the category field.
34
+ * - `"verticalArea"`&mdash;Displays the data as continuous lines that show trends over time, evenly distributed along the category field.
35
+ * - `"verticalBoxPlot"`&mdash;Displays the data as a box-and-whisker diagram, which shows the distribution of values in a series.
36
+ * - `"verticalBullet"`&mdash;Displays the data as vertical bars that show the performance measure, and markers that show the comparative measure.
37
+ * - `"verticalLine"`&mdash;Displays the data as continuous lines that connect data points evenly distributed along the category field.
38
+ * - `"verticalRangeArea"`&mdash;Displays the data as a series of range area segments, which show the contribution of each value to a total.
39
+ * - `"waterfall"`&mdash;Displays the data as a waterfall chart, which is useful for comparing positive and negative values over a period.
40
+ *
8
41
  * @example
9
42
  * ```ts
10
43
  * import { Component } from '@angular/core';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-charts",
3
- "version": "12.0.2-develop.1",
3
+ "version": "12.0.2-develop.3",
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",
@@ -46,16 +46,16 @@
46
46
  "@angular/platform-browser": "13 - 16",
47
47
  "@progress/kendo-drawing": "^1.17.2",
48
48
  "@progress/kendo-licensing": "^1.0.2",
49
- "@progress/kendo-angular-common": "12.0.2-develop.1",
50
- "@progress/kendo-angular-intl": "12.0.2-develop.1",
51
- "@progress/kendo-angular-l10n": "12.0.2-develop.1",
52
- "@progress/kendo-angular-popup": "12.0.2-develop.1",
49
+ "@progress/kendo-angular-common": "12.0.2-develop.3",
50
+ "@progress/kendo-angular-intl": "12.0.2-develop.3",
51
+ "@progress/kendo-angular-l10n": "12.0.2-develop.3",
52
+ "@progress/kendo-angular-popup": "12.0.2-develop.3",
53
53
  "hammerjs": "^2.0.0",
54
54
  "rxjs": "^6.5.3 || ^7.0.0"
55
55
  },
56
56
  "dependencies": {
57
57
  "tslib": "^2.3.1",
58
- "@progress/kendo-angular-schematics": "12.0.2-develop.1",
58
+ "@progress/kendo-angular-schematics": "12.0.2-develop.3",
59
59
  "@progress/kendo-charts": "^1.28.0"
60
60
  },
61
61
  "schematics": "./schematics/collection.json",