@esfaenza/es-charts 11.2.9 → 11.2.13
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 +26 -20
- 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/esfaenza-es-charts.metadata.json +1 -1
- package/esm2015/lib/models/data/classes/base/LineSerie.js +5 -3
- package/esm2015/lib/services/classes/LineChartService.js +22 -18
- package/fesm2015/esfaenza-es-charts.js +25 -19
- package/fesm2015/esfaenza-es-charts.js.map +1 -1
- package/lib/models/data/classes/base/LineSerie.d.ts +4 -2
- package/package.json +4 -4
|
@@ -9,14 +9,16 @@ export declare class LineSerie {
|
|
|
9
9
|
interval?: BaseInterval;
|
|
10
10
|
color?: string;
|
|
11
11
|
uom?: string;
|
|
12
|
+
fill?: boolean;
|
|
12
13
|
/**
|
|
13
14
|
* Costruttore
|
|
14
15
|
*
|
|
15
16
|
* @param {string} name Nome della serie
|
|
16
17
|
* @param {DateValue[]} values Valori della serie
|
|
17
18
|
* @param {BaseInterval} interval Intervallo della serie. Viene utilizzato per gestire Gap e date in Istante Finale
|
|
18
|
-
* @param {string} color Colore della serie, verrà usato sia per la
|
|
19
|
+
* @param {string} color Colore della serie, verrà usato sia per la linea base che eventualmente per il riempimento (in caso si utilizzi l'Input **Fill** nel grafico)
|
|
19
20
|
* @param {string} uom Unità di misura da presentare nell'asse delle Y
|
|
21
|
+
* @param {boolean} fill Override della proprietà **Fill** del grafico, specifico per ogni serie
|
|
20
22
|
*/
|
|
21
|
-
constructor(name: string, values: DateValue[], interval?: BaseInterval, color?: string, uom?: string);
|
|
23
|
+
constructor(name: string, values: DateValue[], interval?: BaseInterval, color?: string, uom?: string, fill?: boolean);
|
|
22
24
|
}
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esfaenza/es-charts",
|
|
3
|
-
"version": "11.2.
|
|
3
|
+
"version": "11.2.13",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"tslib": "^2.0.0"
|
|
6
6
|
},
|
|
7
7
|
"peerDependencies": {
|
|
8
|
-
"@amcharts/amcharts4": "
|
|
8
|
+
"@amcharts/amcharts4": "4.10.22",
|
|
9
9
|
"@angular/common": "~11.2.14",
|
|
10
10
|
"@angular/core": "~11.2.14",
|
|
11
|
-
"@esfaenza/extensions": "^11.2.
|
|
12
|
-
"dayjs": "
|
|
11
|
+
"@esfaenza/extensions": "^11.2.8",
|
|
12
|
+
"dayjs": "1.10.7"
|
|
13
13
|
},
|
|
14
14
|
"main": "bundles/esfaenza-es-charts.umd.js",
|
|
15
15
|
"module": "fesm2015/esfaenza-es-charts.js",
|