@esfaenza/es-charts 11.2.4 → 11.2.8
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 +9 -17
- 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/specializations/es-area-chart.component.js +2 -5
- package/esm2015/lib/es-charts.module.js +4 -3
- package/esm2015/lib/models/core/classes/ChartLoader.js +4 -13
- package/esm2015/lib/tokens.js +2 -2
- package/fesm2015/esfaenza-es-charts.js +9 -17
- package/fesm2015/esfaenza-es-charts.js.map +1 -1
- package/lib/components/specializations/es-area-chart.component.d.ts +1 -3
- package/package.json +1 -1
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { NgZone, ElementRef } from '@angular/core';
|
|
2
|
-
import { DateService } from "@esfaenza/extensions";
|
|
3
2
|
import { BaseAdapter } from '../../adapters';
|
|
4
3
|
import { BaseChartComponent } from '../base/base-chart.component';
|
|
5
4
|
import { ChartLoader, ChartDispatcher } from "../../models/core";
|
|
@@ -10,7 +9,6 @@ import { AreaChartData, PagedChartData } from '../../models/data';
|
|
|
10
9
|
*/
|
|
11
10
|
export declare class EsAreaChartComponent extends BaseChartComponent {
|
|
12
11
|
private adapter;
|
|
13
|
-
private dateService;
|
|
14
12
|
/**
|
|
15
13
|
* Dati specifici per il grafico o di un tipo tramutabile al tipo **AreaChartData** col supporto del **BaseAdapter**
|
|
16
14
|
*/
|
|
@@ -22,7 +20,7 @@ export declare class EsAreaChartComponent extends BaseChartComponent {
|
|
|
22
20
|
/**
|
|
23
21
|
* @ignore
|
|
24
22
|
*/
|
|
25
|
-
constructor(el: ElementRef, ChartLoader: ChartLoader, ChartDispatcher: ChartDispatcher, adapter: BaseAdapter,
|
|
23
|
+
constructor(el: ElementRef, ChartLoader: ChartLoader, ChartDispatcher: ChartDispatcher, adapter: BaseAdapter, zone: NgZone, platformId: Object, ESC_LOGS: boolean, ESC_ANIMATIONS: boolean, ESC_LOCALE: string, ESC_THEME: string);
|
|
26
24
|
/**
|
|
27
25
|
* Ottiene le proprietà specifiche per questa tipologia di grafico per cui serve rigraficare
|
|
28
26
|
*/
|