@carbon/charts 0.54.6 → 0.54.10

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,47 @@
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.54.10](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.9...v0.54.10) (2022-01-27)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **radar:** only show active datapoints in tooltips ([#1289](https://github.com/carbon-design-system/carbon-charts/issues/1289)) ([58738da](https://github.com/carbon-design-system/carbon-charts/commit/58738da230ab8dcf8c115f955dabfaf5504b0252))
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.54.9](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.8...v0.54.9) (2022-01-27)
18
+
19
+ **Note:** Version bump only for package @carbon/charts
20
+
21
+
22
+
23
+
24
+
25
+ ## [0.54.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.7...v0.54.8) (2022-01-25)
26
+
27
+
28
+ ### Bug Fixes
29
+
30
+ * **core:** position bounds correctly in secondary axis of combo chart ([#1281](https://github.com/carbon-design-system/carbon-charts/issues/1281)) ([ab9b8e9](https://github.com/carbon-design-system/carbon-charts/commit/ab9b8e90a0e128f6c9a185091d06e62c35e90042)), closes [#1253](https://github.com/carbon-design-system/carbon-charts/issues/1253)
31
+
32
+
33
+
34
+
35
+
36
+ ## [0.54.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.6...v0.54.7) (2022-01-13)
37
+
38
+
39
+ ### Bug Fixes
40
+
41
+ * **core:** prevent chart from breaking if thresholds array is empty ([#1267](https://github.com/carbon-design-system/carbon-charts/issues/1267)) ([f566213](https://github.com/carbon-design-system/carbon-charts/commit/f566213ba4bc5c515f0a8da65a85dd14452186be)), closes [#1264](https://github.com/carbon-design-system/carbon-charts/issues/1264)
42
+
43
+
44
+
45
+
46
+
6
47
  ## [0.54.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.5...v0.54.6) (2022-01-13)
7
48
 
8
49
 
@@ -116,6 +116,7 @@ export interface RulerOptions {
116
116
  export interface BarOptions {
117
117
  width?: number;
118
118
  maxWidth?: number;
119
+ spacingFactor?: number;
119
120
  }
120
121
  export interface StackedBarOptions extends BarOptions {
121
122
  dividerSize?: number;