@esfaenza/es-charts 11.2.35 → 11.2.37

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.
@@ -11,6 +11,7 @@ export declare class LineSerie {
11
11
  uom?: string;
12
12
  fill?: boolean;
13
13
  stacked?: boolean;
14
+ hidden?: boolean;
14
15
  /**
15
16
  * Costruttore
16
17
  *
@@ -21,6 +22,7 @@ export declare class LineSerie {
21
22
  * @param {string} uom Unità di misura da presentare nell'asse delle Y
22
23
  * @param {boolean} fill Override della proprietà **Fill** del grafico, specifico per ogni serie
23
24
  * @param {boolean} stacked Override della proprietà **Stacked** del grafico, specifico per ogni serie
25
+ * @param {boolean} hidden Indica se la serie deve partire nascosta di default
24
26
  */
25
- constructor(name: string, values: DateValue[], interval?: BaseInterval, color?: string, uom?: string, fill?: boolean, stacked?: boolean);
27
+ constructor(name: string, values: DateValue[], interval?: BaseInterval, color?: string, uom?: string, fill?: boolean, stacked?: boolean, hidden?: boolean);
26
28
  }
@@ -17,6 +17,8 @@ export declare class LineChartService implements IBaseService<am4charts.XYChart>
17
17
  /** @ignore */
18
18
  private OpacityOnSelected;
19
19
  /** @ignore */
20
+ private OpacityOnFill;
21
+ /** @ignore */
20
22
  private singleDataSet;
21
23
  /** @ignore */
22
24
  constructor(Adapter: BaseAdapter, dateExts: DateService);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esfaenza/es-charts",
3
- "version": "11.2.35",
3
+ "version": "11.2.37",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },