@esfaenza/es-charts 11.2.26 → 11.2.29

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.
@@ -5,12 +5,12 @@ import { LineSerie } from './base/LineSerie';
5
5
  */
6
6
  export declare class LineChartData {
7
7
  series: LineSerie[];
8
- limit?: Limit;
8
+ limit?: Limit | Limit[];
9
9
  /**
10
10
  * Costruttore
11
11
  *
12
12
  * @param {LineSerie[]} series Lista di serie da graficare
13
13
  * @param {{upper: lower}}
14
14
  */
15
- constructor(series?: LineSerie[], limit?: Limit);
15
+ constructor(series?: LineSerie[], limit?: Limit | Limit[]);
16
16
  }
@@ -8,6 +8,7 @@ export declare class Limit {
8
8
  lower?: number;
9
9
  lowerlabel?: string;
10
10
  lowercolor?: string;
11
+ fillColor: string;
11
12
  /** @ignore */
12
- constructor(upper?: number, upperlabel?: string, uppercolor?: string, lower?: number, lowerlabel?: string, lowercolor?: string);
13
+ constructor(upper?: number, upperlabel?: string, uppercolor?: string, lower?: number, lowerlabel?: string, lowercolor?: string, fillColor?: string);
13
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esfaenza/es-charts",
3
- "version": "11.2.26",
3
+ "version": "11.2.29",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },