@carbon/charts 0.39.1 → 0.40.0

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,22 @@
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.40.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.39.1...v0.40.0) (2020-10-08)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **core:** fix Legend and Tooltip group color ([#834](https://github.com/carbon-design-system/carbon-charts/issues/834)) ([da4c9f4](https://github.com/carbon-design-system/carbon-charts/commit/da4c9f4d5da605f19db87fde9ab4caa45056373d)), closes [#828](https://github.com/carbon-design-system/carbon-charts/issues/828) [#828](https://github.com/carbon-design-system/carbon-charts/issues/828)
12
+
13
+
14
+ ### Features
15
+
16
+ * provide option to refresh range axis label ([#766](https://github.com/carbon-design-system/carbon-charts/issues/766)) ([070f9e3](https://github.com/carbon-design-system/carbon-charts/commit/070f9e38481362e1ad55f036915deb66d8a16648))
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.39.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.39.0...v0.39.1) (2020-10-05)
7
23
 
8
24
 
@@ -121,6 +121,10 @@ export interface ZoomBarsOptions {
121
121
  * currently only the top position is supported
122
122
  */
123
123
  top?: ZoomBarOptions;
124
+ /**
125
+ * whether keep updating range axis in real time while zoom domain is changing
126
+ */
127
+ updateRangeAxis?: boolean;
124
128
  }
125
129
  /**
126
130
  * customize the ZoomBar component
@@ -1,9 +1,11 @@
1
1
  import { Service } from "./service";
2
2
  export declare class Zoom extends Service {
3
+ isZoomBarEnabled(): boolean;
3
4
  getZoomBarData(): {}[];
4
5
  getDefaultZoomBarDomain(): any;
5
6
  handleDomainChange(newDomain: any, configs?: {
6
7
  dispatchEvent: boolean;
7
8
  }): void;
8
9
  getZoomRatio(): any;
10
+ filterDataForRangeAxis(displayData: object[], configs?: any): object[];
9
11
  }