@carbon/charts 0.41.43 → 0.41.47

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,7 +3,7 @@
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.43](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.42...v0.41.43) (2021-03-15)
6
+ ## [0.41.47](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.46...v0.41.47) (2021-03-30)
7
7
 
8
8
  **Note:** Version bump only for package @carbon/charts
9
9
 
@@ -11,7 +11,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
11
11
 
12
12
 
13
13
 
14
- ## [0.41.42](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.41...v0.41.42) (2021-03-12)
14
+ ## [0.41.46](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.45...v0.41.46) (2021-03-29)
15
15
 
16
16
  **Note:** Version bump only for package @carbon/charts
17
17
 
@@ -19,7 +19,12 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
19
19
 
20
20
 
21
21
 
22
- ## [0.41.41](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.40...v0.41.41) (2021-03-02)
22
+ # Change Log
23
+
24
+ All notable changes to this project will be documented in this file. See
25
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
26
+
27
+ ## [0.41.45](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.44...v0.41.45) (2021-03-29)
23
28
 
24
29
  **Note:** Version bump only for package @carbon/charts
25
30
 
@@ -27,7 +32,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
27
32
 
28
33
 
29
34
 
30
- ## [0.41.40](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.39...v0.41.40) (2021-03-01)
35
+ ## [0.41.44](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.43...v0.41.44) (2021-03-24)
31
36
 
32
37
  **Note:** Version bump only for package @carbon/charts
33
38
 
@@ -35,30 +40,34 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
35
40
 
36
41
 
37
42
 
38
- ## [0.41.39](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.38...v0.41.39) (2021-02-25)
43
+ ## [0.41.43](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.42...v0.41.43) (2021-03-15)
39
44
 
40
45
  **Note:** Version bump only for package @carbon/charts
41
46
 
47
+ ## [0.41.42](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.41...v0.41.42) (2021-03-12)
42
48
 
49
+ **Note:** Version bump only for package @carbon/charts
43
50
 
51
+ ## [0.41.41](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.40...v0.41.41) (2021-03-02)
44
52
 
53
+ **Note:** Version bump only for package @carbon/charts
45
54
 
46
- ## [0.41.38](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.37...v0.41.38) (2021-02-23)
55
+ ## [0.41.40](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.39...v0.41.40) (2021-03-01)
47
56
 
48
57
  **Note:** Version bump only for package @carbon/charts
49
58
 
59
+ ## [0.41.39](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.38...v0.41.39) (2021-02-25)
50
60
 
61
+ **Note:** Version bump only for package @carbon/charts
51
62
 
63
+ ## [0.41.38](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.37...v0.41.38) (2021-02-23)
52
64
 
65
+ **Note:** Version bump only for package @carbon/charts
53
66
 
54
67
  ## [0.41.37](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.36...v0.41.37) (2021-02-23)
55
68
 
56
69
  **Note:** Version bump only for package @carbon/charts
57
70
 
58
-
59
-
60
-
61
-
62
71
  # Change Log
63
72
 
64
73
  All notable changes to this project will be documented in this file. See
@@ -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
  }
@@ -89,10 +89,12 @@ export interface GridOptions {
89
89
  y?: {
90
90
  enabled?: boolean;
91
91
  numberOfTicks?: number;
92
+ alignWithAxisTicks?: boolean;
92
93
  };
93
94
  x?: {
94
95
  enabled?: boolean;
95
96
  numberOfTicks?: number;
97
+ alignWithAxisTicks?: boolean;
96
98
  };
97
99
  }
98
100
  /**