@progress/kendo-angular-charts 7.0.0 → 7.1.0-dev.202204261149
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/api-types/series-point.interface.d.ts +8 -0
- package/argument-types/axis-label-content-args.interface.d.ts +39 -0
- package/argument-types/axis-note-content-args.interface.d.ts +21 -0
- package/argument-types/axis-note-visual-args.interface.d.ts +1 -1
- package/argument-types/series-labels-content-args.interface.d.ts +50 -0
- package/argument-types/series-note-content-args.interface.d.ts +29 -0
- package/bundles/kendo-angular-charts.umd.js +1 -1
- package/chart/axis-defaults/labels.component.d.ts +2 -2
- package/chart/category-axis-item/labels.component.d.ts +2 -2
- package/chart/category-axis-item/notes.label.component.d.ts +2 -2
- package/chart/series-defaults/labels.component.d.ts +2 -2
- package/chart/series-defaults/labels.from.component.d.ts +2 -2
- package/chart/series-defaults/labels.to.component.d.ts +2 -2
- package/chart/series-defaults/notes.label.component.d.ts +2 -2
- package/chart/series-item/labels.component.d.ts +2 -2
- package/chart/series-item/labels.from.component.d.ts +2 -2
- package/chart/series-item/labels.to.component.d.ts +2 -2
- package/chart/series-item/notes.label.component.d.ts +2 -2
- package/chart/value-axis-item/labels.component.d.ts +2 -2
- package/chart/value-axis-item/notes.label.component.d.ts +2 -2
- package/chart/x-axis-item/labels.component.d.ts +2 -2
- package/chart/x-axis-item/notes.label.component.d.ts +2 -2
- package/chart/y-axis-item/labels.component.d.ts +2 -2
- package/chart/y-axis-item/notes.label.component.d.ts +2 -2
- package/common/events.d.ts +1 -0
- package/common/property-types.d.ts +4 -0
- package/esm2015/argument-types/axis-label-content-args.interface.js +5 -0
- package/esm2015/argument-types/axis-note-content-args.interface.js +5 -0
- package/esm2015/argument-types/series-labels-content-args.interface.js +5 -0
- package/esm2015/argument-types/series-note-content-args.interface.js +5 -0
- package/esm2015/common/events.js +1 -0
- package/esm2015/package-metadata.js +1 -1
- package/esm2015/stock-chart/option-types/navigator/hint-content-args.interface.js +5 -0
- package/fesm2015/kendo-angular-charts.js +2 -2
- package/field-types/auto-base-unit-steps.interface.d.ts +1 -0
- package/field-types/border.interface.d.ts +4 -0
- package/option-types/axis-defaults/labels.interface.d.ts +2 -10
- package/option-types/category-axis-item/labels.interface.d.ts +2 -12
- package/option-types/category-axis-item/notes.label.interface.d.ts +2 -3
- package/option-types/series-defaults/labels.from.interface.d.ts +3 -16
- package/option-types/series-defaults/labels.interface.d.ts +2 -15
- package/option-types/series-defaults/labels.to.interface.d.ts +3 -16
- package/option-types/series-defaults/notes.label.interface.d.ts +2 -3
- package/option-types/series-item/labels.from.interface.d.ts +3 -17
- package/option-types/series-item/labels.interface.d.ts +3 -16
- package/option-types/series-item/labels.to.interface.d.ts +2 -15
- package/option-types/series-item/notes.label.interface.d.ts +2 -3
- package/option-types/value-axis-item/labels.interface.d.ts +2 -2
- package/option-types/value-axis-item/notes.label.interface.d.ts +2 -3
- package/option-types/x-axis-item/labels.interface.d.ts +2 -9
- package/option-types/x-axis-item/notes.label.interface.d.ts +2 -2
- package/option-types/y-axis-item/labels.interface.d.ts +2 -9
- package/option-types/y-axis-item/notes.label.interface.d.ts +2 -3
- package/package.json +1 -1
- package/stock-chart/navigator/hint.component.d.ts +2 -2
- package/stock-chart/option-types/navigator/hint-content-args.interface.d.ts +17 -0
- package/stock-chart/option-types/navigator/hint.interface.d.ts +2 -1
- package/stock-chart/option-types.d.ts +1 -0
|
@@ -36,6 +36,14 @@ export interface SeriesPoint {
|
|
|
36
36
|
* The sum of all previous series values. Available for the Waterfall series points.
|
|
37
37
|
*/
|
|
38
38
|
total?: number;
|
|
39
|
+
/**
|
|
40
|
+
* The minimum value for the series. Available for the Heatmap series points.
|
|
41
|
+
*/
|
|
42
|
+
min?: number;
|
|
43
|
+
/**
|
|
44
|
+
* The maximum value for the series. Available for the Heatmap series points.
|
|
45
|
+
*/
|
|
46
|
+
max?: number;
|
|
39
47
|
/**
|
|
40
48
|
* The point value.
|
|
41
49
|
*/
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
/**
|
|
6
|
+
* The context for the axis label content function.
|
|
7
|
+
*/
|
|
8
|
+
export interface AxisLabelContentArgs {
|
|
9
|
+
/**
|
|
10
|
+
* The value associated with the axis label.
|
|
11
|
+
*/
|
|
12
|
+
value: any;
|
|
13
|
+
/**
|
|
14
|
+
* The data item, if set.
|
|
15
|
+
*
|
|
16
|
+
* Available for category axis with set `categoryField`.
|
|
17
|
+
*/
|
|
18
|
+
dataItem?: any;
|
|
19
|
+
/**
|
|
20
|
+
* The default label text.
|
|
21
|
+
*/
|
|
22
|
+
text: string;
|
|
23
|
+
/**
|
|
24
|
+
* The index of the label.
|
|
25
|
+
*/
|
|
26
|
+
index: number;
|
|
27
|
+
/**
|
|
28
|
+
* The total number of rendered labels.
|
|
29
|
+
*/
|
|
30
|
+
count: number;
|
|
31
|
+
/**
|
|
32
|
+
* The default format string of the label.
|
|
33
|
+
*/
|
|
34
|
+
format: string;
|
|
35
|
+
/**
|
|
36
|
+
* The default culture (if set) of the label.
|
|
37
|
+
*/
|
|
38
|
+
culture: string;
|
|
39
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
/**
|
|
6
|
+
* The context for the axis highlight visual function.
|
|
7
|
+
*/
|
|
8
|
+
export interface AxisNoteContentArgs {
|
|
9
|
+
/**
|
|
10
|
+
* The original data item for the note.
|
|
11
|
+
*/
|
|
12
|
+
dataItem: any;
|
|
13
|
+
/**
|
|
14
|
+
* The note text.
|
|
15
|
+
*/
|
|
16
|
+
text: string;
|
|
17
|
+
/**
|
|
18
|
+
* The note value.
|
|
19
|
+
*/
|
|
20
|
+
value: string;
|
|
21
|
+
}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { ChartComponent } from '../chart.component';
|
|
6
6
|
import { drawing, geometry } from '@progress/kendo-drawing';
|
|
7
7
|
/**
|
|
8
|
-
* The context for the
|
|
8
|
+
* The context for the axis note visual function.
|
|
9
9
|
*/
|
|
10
10
|
export interface AxisNoteVisualArgs {
|
|
11
11
|
/**
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
/**
|
|
6
|
+
* The context for the function of the series label visual.
|
|
7
|
+
*/
|
|
8
|
+
export interface SeriesLabelsContentArgs {
|
|
9
|
+
/**
|
|
10
|
+
* The label text.
|
|
11
|
+
*/
|
|
12
|
+
text: string;
|
|
13
|
+
/**
|
|
14
|
+
* The original data item used to construct the point. If binding to an array, it will be `null`.
|
|
15
|
+
*/
|
|
16
|
+
dataItem: any;
|
|
17
|
+
/**
|
|
18
|
+
* The category name. Available for the Area, Bar, Column, Bubble, Donut, Funnel, Line, and Pie
|
|
19
|
+
* series.
|
|
20
|
+
*/
|
|
21
|
+
category: any;
|
|
22
|
+
/**
|
|
23
|
+
* The point value. Can be a number or object containing each bound field.
|
|
24
|
+
*/
|
|
25
|
+
value: any;
|
|
26
|
+
/**
|
|
27
|
+
* The point value that is represented as a percentage value.
|
|
28
|
+
* Available only for the Donut, Pie, and 100% stacked charts.
|
|
29
|
+
*/
|
|
30
|
+
percentage?: number;
|
|
31
|
+
/**
|
|
32
|
+
* The cumulative point value on the stack.
|
|
33
|
+
* Available only for the stackable series.
|
|
34
|
+
*/
|
|
35
|
+
stackValue?: number;
|
|
36
|
+
/**
|
|
37
|
+
* The sum of point values from the last `runningTotal` summary point onwards.
|
|
38
|
+
* Available for the Waterfall series.
|
|
39
|
+
*/
|
|
40
|
+
runningTotal?: number;
|
|
41
|
+
/**
|
|
42
|
+
* The sum of all previous series values.
|
|
43
|
+
* Available for the Waterfall series.
|
|
44
|
+
*/
|
|
45
|
+
total?: number;
|
|
46
|
+
/**
|
|
47
|
+
* The data series configuration object.
|
|
48
|
+
*/
|
|
49
|
+
series: any;
|
|
50
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
/**
|
|
6
|
+
* The context for the series note content function.
|
|
7
|
+
*/
|
|
8
|
+
export interface SeriesNoteContentArgs {
|
|
9
|
+
/**
|
|
10
|
+
* The point category.
|
|
11
|
+
*/
|
|
12
|
+
category: any;
|
|
13
|
+
/**
|
|
14
|
+
* The point data item.
|
|
15
|
+
*/
|
|
16
|
+
dataItem: any;
|
|
17
|
+
/**
|
|
18
|
+
* The point series.
|
|
19
|
+
*/
|
|
20
|
+
series: any;
|
|
21
|
+
/**
|
|
22
|
+
* The point value.
|
|
23
|
+
*/
|
|
24
|
+
value: string;
|
|
25
|
+
/**
|
|
26
|
+
* The note text.
|
|
27
|
+
*/
|
|
28
|
+
text: string;
|
|
29
|
+
}
|