@carbon/charts 0.54.7 → 0.54.11

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.11](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.10...v0.54.11) (2022-02-02)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **core:** render only the components that are being used in proportional meter ([#1273](https://github.com/carbon-design-system/carbon-charts/issues/1273)) ([46715c0](https://github.com/carbon-design-system/carbon-charts/commit/46715c0f285897958fe2008beac391ae8ab8f779)), closes [#1262](https://github.com/carbon-design-system/carbon-charts/issues/1262)
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.54.10](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.9...v0.54.10) (2022-01-27)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **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))
23
+
24
+
25
+
26
+
27
+
28
+ ## [0.54.9](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.8...v0.54.9) (2022-01-27)
29
+
30
+ **Note:** Version bump only for package @carbon/charts
31
+
32
+
33
+
34
+
35
+
36
+ ## [0.54.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.7...v0.54.8) (2022-01-25)
37
+
38
+
39
+ ### Bug Fixes
40
+
41
+ * **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)
42
+
43
+
44
+
45
+
46
+
6
47
  ## [0.54.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.6...v0.54.7) (2022-01-13)
7
48
 
8
49
 
@@ -346,6 +346,7 @@ export interface DonutChartOptions extends PieChartOptions {
346
346
  }
347
347
  export interface MeterChartOptions extends BaseChartOptions {
348
348
  meter?: {
349
+ showLabels?: boolean;
349
350
  proportional?: {
350
351
  total?: number;
351
352
  unit?: string;
@@ -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;