@esfaenza/es-charts 11.2.17 → 11.2.18
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 +8 -2
- 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/components/base/base-chart.component.js +9 -3
- package/fesm2015/esfaenza-es-charts.js +8 -2
- package/fesm2015/esfaenza-es-charts.js.map +1 -1
- package/lib/components/base/base-chart.component.d.ts +5 -0
- package/package.json +1 -1
|
@@ -1173,6 +1173,11 @@
|
|
|
1173
1173
|
* Evento lanciato al termine del caricamento di una nuova pagina del grafico
|
|
1174
1174
|
*/
|
|
1175
1175
|
this.onLoadEnd = new core.EventEmitter();
|
|
1176
|
+
/**
|
|
1177
|
+
* Evento lanciato al termine della creazione del grafico referenziando l'istanza nativa del grafico creato in modo da poter effettuare modifiche
|
|
1178
|
+
* post inizializzazione lato applicativo
|
|
1179
|
+
*/
|
|
1180
|
+
this.chartLoaded = new core.EventEmitter();
|
|
1176
1181
|
/**
|
|
1177
1182
|
* Serve a decidere se sarà presente l'interfaccia di paginazione
|
|
1178
1183
|
*/
|
|
@@ -1264,7 +1269,7 @@
|
|
|
1264
1269
|
_this.Chart = _this.ChartService.ChartInstance;
|
|
1265
1270
|
if (!_this.Chart)
|
|
1266
1271
|
_this.log("Chart " + _this.name + ": Could not create graph");
|
|
1267
|
-
return _this.Charter.applyLocale(_this.Chart, _this.Locale).then(function () {
|
|
1272
|
+
return _this.Charter.applyLocale(_this.Chart, _this.Locale).then(function () { _this.initDone = true; _this.chartLoaded.emit(_this.Chart); });
|
|
1268
1273
|
})
|
|
1269
1274
|
]);
|
|
1270
1275
|
};
|
|
@@ -1434,7 +1439,8 @@
|
|
|
1434
1439
|
onSelectionChanged: [{ type: core.Output }],
|
|
1435
1440
|
onSeriesClicked: [{ type: core.Output }],
|
|
1436
1441
|
onLoadStart: [{ type: core.Output }],
|
|
1437
|
-
onLoadEnd: [{ type: core.Output }]
|
|
1442
|
+
onLoadEnd: [{ type: core.Output }],
|
|
1443
|
+
chartLoaded: [{ type: core.Output }]
|
|
1438
1444
|
};
|
|
1439
1445
|
|
|
1440
1446
|
/**
|