@carbon/charts 0.41.40 → 0.41.44

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/CHANGELOG.md CHANGED
@@ -3,6 +3,38 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.41.44](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.43...v0.41.44) (2021-03-24)
7
+
8
+ **Note:** Version bump only for package @carbon/charts
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.41.43](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.42...v0.41.43) (2021-03-15)
15
+
16
+ **Note:** Version bump only for package @carbon/charts
17
+
18
+
19
+
20
+
21
+
22
+ ## [0.41.42](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.41...v0.41.42) (2021-03-12)
23
+
24
+ **Note:** Version bump only for package @carbon/charts
25
+
26
+
27
+
28
+
29
+
30
+ ## [0.41.41](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.40...v0.41.41) (2021-03-02)
31
+
32
+ **Note:** Version bump only for package @carbon/charts
33
+
34
+
35
+
36
+
37
+
6
38
  ## [0.41.40](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.39...v0.41.40) (2021-03-01)
7
39
 
8
40
  **Note:** Version bump only for package @carbon/charts
@@ -6,5 +6,5 @@ export declare class AxisChart extends Chart {
6
6
  services: any;
7
7
  model: ChartModelCartesian;
8
8
  constructor(holder: Element, chartConfigs: ChartConfig<AxisChartOptions>);
9
- protected getAxisChartComponents(graphFrameComponents: any[], configs?: object): (AxisChartsTooltip | LayoutComponent)[];
9
+ protected getAxisChartComponents(graphFrameComponents: any[], configs?: object): (LayoutComponent | AxisChartsTooltip)[];
10
10
  }
@@ -10,5 +10,5 @@ export declare class Chart {
10
10
  getComponents(): any[];
11
11
  update(animate?: boolean): void;
12
12
  destroy(): void;
13
- protected getChartComponents(graphFrameComponents: any[]): (Tooltip | LayoutComponent)[];
13
+ protected getChartComponents(graphFrameComponents: any[]): (LayoutComponent | Tooltip)[];
14
14
  }
@@ -14,7 +14,7 @@ export declare class Tooltip extends Component {
14
14
  getItems(e: CustomEvent): any;
15
15
  formatItems(items: any): any;
16
16
  getTooltipHTML(e: CustomEvent): any;
17
- valueFormatter(value: any): any;
17
+ valueFormatter(value: any, label: string): any;
18
18
  render(): void;
19
19
  positionTooltip(e: CustomEvent): void;
20
20
  }
@@ -239,6 +239,7 @@ export interface GaugeChartOptions extends BaseChartOptions {
239
239
  size?: Function;
240
240
  enabled: Boolean;
241
241
  };
242
+ showPercentageSymbol?: Boolean;
242
243
  status?: Statuses;
243
244
  deltaFontSize?: Function;
244
245
  numberSpacing?: number;