@esfaenza/es-charts 11.2.38 → 11.2.39

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.
@@ -18,7 +18,7 @@ export declare class LineSerie {
18
18
  * @param {string} name Nome della serie
19
19
  * @param {DateValue[]} values Valori della serie
20
20
  * @param {BaseInterval} interval Intervallo della serie. Viene utilizzato per gestire Gap e date in Istante Finale
21
- * @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)
21
+ * @param {string} color Colore della serie in notazione HTML, verrà usato sia per la linea base che eventualmente per il riempimento (in caso si utilizzi l'Input **Fill** nel grafico)
22
22
  * @param {string} uom Unità di misura da presentare nell'asse delle Y
23
23
  * @param {boolean} fill Override della proprietà **Fill** del grafico, specifico per ogni serie
24
24
  * @param {boolean} stacked Override della proprietà **Stacked** del grafico, specifico per ogni serie
@@ -16,6 +16,7 @@ export declare class AreaChartService implements IBaseService<am4charts.XYChart>
16
16
  * Metodo che data una coppia Dati - Impostazioni li utilizza per creare e visualizzare un AreaChart
17
17
  */
18
18
  graphicate(data: AreaChartData | any, settings: AreaChartSettings): IBaseService<am4charts.XYChart>;
19
+ fixTimeUnit(tu: any): "millisecond" | "second" | "minute" | "hour" | "day" | "week" | "month" | "year";
19
20
  /** @ignore */
20
21
  setSelection(from: Date, to: Date): void;
21
22
  /** @ignore */
@@ -28,6 +28,7 @@ export declare class LineChartService implements IBaseService<am4charts.XYChart>
28
28
  * Metodo che data una coppia Dati - Impostazioni li utilizza per creare e visualizzare un LineChart
29
29
  */
30
30
  graphicate(data: LineChartData | any, settings: LineChartSettings): IBaseService<am4charts.XYChart>;
31
+ fixTimeUnit(tu: any): "millisecond" | "second" | "minute" | "hour" | "day" | "week" | "month" | "year";
31
32
  /** @ignore */
32
33
  setSelection(from: Date, to: Date): void;
33
34
  /** @ignore */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esfaenza/es-charts",
3
- "version": "11.2.38",
3
+ "version": "11.2.39",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },