@esfaenza/es-charts 11.2.30 → 11.2.32
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/bundles/esfaenza-es-charts.umd.js +5 -5
- package/bundles/esfaenza-es-charts.umd.js.map +1 -1
- package/bundles/esfaenza-es-charts.umd.min.js +1 -1
- package/bundles/esfaenza-es-charts.umd.min.js.map +1 -1
- package/esm2015/lib/models/data/Vertical2DChartData.js +4 -4
- package/esm2015/lib/services/Vertical2DChartService.js +3 -3
- package/fesm2015/esfaenza-es-charts.js +5 -5
- package/fesm2015/esfaenza-es-charts.js.map +1 -1
- package/lib/models/data/Vertical2DChartData.d.ts +3 -3
- package/package.json +4 -4
|
@@ -7,19 +7,19 @@ export declare class Vertical2DChartData {
|
|
|
7
7
|
name: string;
|
|
8
8
|
values: KeyValue[];
|
|
9
9
|
}[];
|
|
10
|
-
|
|
10
|
+
colorinfos?: {
|
|
11
11
|
color: string;
|
|
12
12
|
}[];
|
|
13
13
|
/**
|
|
14
14
|
* Costruttore
|
|
15
15
|
*
|
|
16
16
|
* @param {{ name: string; values: KeyValue[]; }[]} groups Gruppi di valori raggruppati per nome
|
|
17
|
-
* @param {{ color: string }[]}
|
|
17
|
+
* @param {{ color: string }[]} colorinfos Lista dei colori da utilizzare. Vanno a sovrascrivere quelli di default di amcharts
|
|
18
18
|
*/
|
|
19
19
|
constructor(groups?: {
|
|
20
20
|
name: string;
|
|
21
21
|
values: KeyValue[];
|
|
22
|
-
}[],
|
|
22
|
+
}[], colorinfos?: {
|
|
23
23
|
color: string;
|
|
24
24
|
}[]);
|
|
25
25
|
}
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esfaenza/es-charts",
|
|
3
|
-
"version": "11.2.
|
|
3
|
+
"version": "11.2.32",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"tslib": "^2.0.0"
|
|
6
6
|
},
|
|
7
7
|
"peerDependencies": {
|
|
8
|
-
"@amcharts/amcharts4": "4.10.
|
|
8
|
+
"@amcharts/amcharts4": "4.10.28",
|
|
9
9
|
"@angular/common": "~11.2.14",
|
|
10
10
|
"@angular/core": "~11.2.14",
|
|
11
|
-
"@esfaenza/extensions": "^11.2.
|
|
12
|
-
"dayjs": "1.
|
|
11
|
+
"@esfaenza/extensions": "^11.2.29",
|
|
12
|
+
"dayjs": "1.11.5"
|
|
13
13
|
},
|
|
14
14
|
"main": "bundles/esfaenza-es-charts.umd.js",
|
|
15
15
|
"module": "fesm2015/esfaenza-es-charts.js",
|