@esfaenza/es-charts 11.2.32 → 11.2.34

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.
@@ -6,6 +6,7 @@ export declare class Vertical2DChartData {
6
6
  groups: {
7
7
  name: string;
8
8
  values: KeyValue[];
9
+ uom?: string;
9
10
  }[];
10
11
  colorinfos?: {
11
12
  color: string;
@@ -13,12 +14,13 @@ export declare class Vertical2DChartData {
13
14
  /**
14
15
  * Costruttore
15
16
  *
16
- * @param {{ name: string; values: KeyValue[]; }[]} groups Gruppi di valori raggruppati per nome
17
+ * @param {{ name: string; values: KeyValue[];, uom: string }[]} groups Gruppi di valori raggruppati per nome
17
18
  * @param {{ color: string }[]} colorinfos Lista dei colori da utilizzare. Vanno a sovrascrivere quelli di default di amcharts
18
19
  */
19
20
  constructor(groups?: {
20
21
  name: string;
21
22
  values: KeyValue[];
23
+ uom?: string;
22
24
  }[], colorinfos?: {
23
25
  color: string;
24
26
  }[]);
@@ -1,13 +1,13 @@
1
- import { KeyValue } from './base/KeyValue';
1
+ import { KeyValueColor } from './base/KeyValueColor';
2
2
  /**
3
3
  * Dati relativi a un grafico di tipo VerticalChart
4
4
  */
5
5
  export declare class VerticalChartData {
6
- values: KeyValue[];
6
+ values: KeyValueColor[];
7
7
  /**
8
8
  * Costruttore
9
9
  *
10
- * @param {KeyValue[]} values Lista di Chiave-Valore che rappresentano ognuno una colonna
10
+ * @param {KeyValueColor[]} values Lista di Chiave-Valore-Colore che rappresentano ognuno una colonna
11
11
  */
12
- constructor(values?: KeyValue[]);
12
+ constructor(values?: KeyValueColor[]);
13
13
  }
@@ -6,14 +6,16 @@ export declare class VerticalStackedChartData {
6
6
  groups: {
7
7
  name: string;
8
8
  values: KeyValue[];
9
+ uom?: string;
9
10
  }[];
10
11
  /**
11
12
  * Costruttore
12
13
  *
13
- * @param {{ name: string; values: KeyValue[]; }[]} groups Gruppi di valori raggruppati per nome
14
+ * @param {{ name: string; values: KeyValue[], uom: string }[]} groups Gruppi di valori raggruppati per nome
14
15
  */
15
16
  constructor(groups?: {
16
17
  name: string;
17
18
  values: KeyValue[];
19
+ uom?: string;
18
20
  }[]);
19
21
  }
@@ -5,6 +5,7 @@ export declare class KeyValueColor {
5
5
  k: string;
6
6
  v: number;
7
7
  c?: string;
8
+ t?: string;
8
9
  /** @ignore */
9
- constructor(k: string, v: number, c?: string);
10
+ constructor(k: string, v: number, c?: string, t?: string);
10
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esfaenza/es-charts",
3
- "version": "11.2.32",
3
+ "version": "11.2.34",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },