@carbon/charts 0.41.78 → 0.41.82

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,41 @@
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.82](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.81...v0.41.82) (2021-07-13)
7
+
8
+ **Note:** Version bump only for package @carbon/charts
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.41.81](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.80...v0.41.81) (2021-07-13)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **core:** display the first and last data elements when addSpaceOnEdges is set to 0 ([#1064](https://github.com/carbon-design-system/carbon-charts/issues/1064)) ([f321807](https://github.com/carbon-design-system/carbon-charts/commit/f32180774720c7d916f6bd441b7d72500b77e7f9)), closes [#763](https://github.com/carbon-design-system/carbon-charts/issues/763)
20
+
21
+
22
+
23
+
24
+
25
+ ## [0.41.80](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.79...v0.41.80) (2021-07-07)
26
+
27
+ **Note:** Version bump only for package @carbon/charts
28
+
29
+
30
+
31
+
32
+
33
+ ## [0.41.79](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.78...v0.41.79) (2021-06-29)
34
+
35
+ **Note:** Version bump only for package @carbon/charts
36
+
37
+
38
+
39
+
40
+
6
41
  ## [0.41.78](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.77...v0.41.78) (2021-06-29)
7
42
 
8
43
 
@@ -252,6 +252,26 @@ export declare const lineTimeSeriesRotatedTicksOptions: {
252
252
  clickable: boolean;
253
253
  };
254
254
  };
255
+ export declare const lineLogAxisData: {
256
+ group: string;
257
+ date: Date;
258
+ value: number;
259
+ }[];
260
+ export declare const lineLogAxisOptions: {
261
+ title: string;
262
+ width: string;
263
+ axes: {
264
+ bottom: {
265
+ scaleType: string;
266
+ mapsTo: string;
267
+ };
268
+ left: {
269
+ mapsTo: string;
270
+ scaleType: string;
271
+ includeZero: boolean;
272
+ };
273
+ };
274
+ };
255
275
  export declare const lineEmptyStateData: any[];
256
276
  export declare const lineEmptyStateOptions: {
257
277
  title: string;
@@ -55,10 +55,10 @@ export declare enum Axis {
55
55
  * enum of all area graph events
56
56
  */
57
57
  export declare enum Area {
58
- AREA_MOUSEOVER = "area-mouseover",
59
- AREA_MOUSEMOVE = "area-mousemove",
60
- AREA_CLICK = "area-click",
61
- AREA_MOUSEOUT = "area-mouseout"
58
+ POINT_MOUSEOVER = "scatter-mouseover",
59
+ POINT_MOUSEMOVE = "scatter-mousemove",
60
+ POINT_CLICK = "scatter-click",
61
+ POINT_MOUSEOUT = "scatter-mouseout"
62
62
  }
63
63
  /**
64
64
  * enum of all wordcloud graph events