@carbon/charts 0.32.10 → 0.33.1
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 +333 -147
- package/README.md +18 -8
- package/axis-chart.js +20 -20
- package/axis-chart.js.map +1 -1
- package/build/demo/data/area.d.ts +17 -0
- package/build/demo/data/bar.d.ts +32 -48
- package/build/demo/data/line.d.ts +29 -0
- package/build/src/interfaces/charts.d.ts +5 -0
- package/build/src/model.d.ts +1 -0
- package/build/src/services/scales-cartesian.d.ts +1 -1
- package/build/src/tools.d.ts +7 -7
- package/bundle.js +1 -1
- package/charts/area-stacked.js +3 -3
- package/charts/area-stacked.js.map +1 -1
- package/charts/area.js +3 -3
- package/charts/area.js.map +1 -1
- package/charts/bar-grouped.js +3 -3
- package/charts/bar-grouped.js.map +1 -1
- package/charts/bar-simple.js +3 -3
- package/charts/bar-simple.js.map +1 -1
- package/charts/bar-stacked.js +3 -3
- package/charts/bar-stacked.js.map +1 -1
- package/charts/bubble.js +3 -3
- package/charts/bubble.js.map +1 -1
- package/charts/donut.js +3 -3
- package/charts/donut.js.map +1 -1
- package/charts/gauge.js +2 -1
- package/charts/gauge.js.map +1 -1
- package/charts/line.js +3 -3
- package/charts/line.js.map +1 -1
- package/charts/pie.js +3 -3
- package/charts/pie.js.map +1 -1
- package/charts/radar.js +1 -1
- package/charts/radar.js.map +1 -1
- package/charts/scatter.js +3 -3
- package/charts/scatter.js.map +1 -1
- package/components/axes/axis.js +25 -23
- package/components/axes/axis.js.map +1 -1
- package/components/axes/grid.js +1 -1
- package/components/axes/grid.js.map +1 -1
- package/components/axes/ruler.js +2 -2
- package/components/axes/ruler.js.map +1 -1
- package/components/axes/two-dimensional-axes.js +3 -3
- package/components/axes/two-dimensional-axes.js.map +1 -1
- package/components/axes/zero-line.js +1 -1
- package/components/axes/zero-line.js.map +1 -1
- package/components/essentials/legend.js +20 -11
- package/components/essentials/legend.js.map +1 -1
- package/components/essentials/threshold.js +9 -9
- package/components/essentials/threshold.js.map +1 -1
- package/components/essentials/title.js +2 -2
- package/components/essentials/title.js.map +1 -1
- package/components/essentials/tooltip-bar.js +9 -7
- package/components/essentials/tooltip-bar.js.map +1 -1
- package/components/essentials/tooltip.js +7 -7
- package/components/essentials/tooltip.js.map +1 -1
- package/components/graphs/area-stacked.js +8 -7
- package/components/graphs/area-stacked.js.map +1 -1
- package/components/graphs/bar-grouped.js +7 -7
- package/components/graphs/bar-grouped.js.map +1 -1
- package/components/graphs/bar-simple.js +6 -6
- package/components/graphs/bar-simple.js.map +1 -1
- package/components/graphs/bar-stacked.js +6 -6
- package/components/graphs/bar-stacked.js.map +1 -1
- package/components/graphs/gauge.js +4 -3
- package/components/graphs/gauge.js.map +1 -1
- package/components/graphs/line.js +14 -10
- package/components/graphs/line.js.map +1 -1
- package/components/graphs/pie.js +12 -12
- package/components/graphs/pie.js.map +1 -1
- package/components/graphs/radar.js +11 -11
- package/components/graphs/radar.js.map +1 -1
- package/components/graphs/scatter-stacked.js +2 -4
- package/components/graphs/scatter-stacked.js.map +1 -1
- package/components/graphs/scatter.js +6 -8
- package/components/graphs/scatter.js.map +1 -1
- package/components/graphs/skeleton.js +3 -3
- package/components/graphs/skeleton.js.map +1 -1
- package/components/layout/layout.js +10 -4
- package/components/layout/layout.js.map +1 -1
- package/configuration.js +14 -9
- package/configuration.js.map +1 -1
- package/demo/create-codesandbox.js +19 -19
- package/demo/create-codesandbox.js.map +1 -1
- package/demo/data/area.d.ts +17 -0
- package/demo/data/area.js +26 -0
- package/demo/data/area.js.map +1 -1
- package/demo/data/bar.d.ts +32 -48
- package/demo/data/bar.js +134 -141
- package/demo/data/bar.js.map +1 -1
- package/demo/data/bubble.js +29 -29
- package/demo/data/bubble.js.map +1 -1
- package/demo/data/bundle.js +1 -1
- package/demo/data/index.js +21 -5
- package/demo/data/index.js.map +1 -1
- package/demo/data/line.d.ts +29 -0
- package/demo/data/line.js +122 -60
- package/demo/data/line.js.map +1 -1
- package/demo/data/pie.js +5 -5
- package/demo/data/pie.js.map +1 -1
- package/demo/data/radar.js +12 -12
- package/demo/data/radar.js.map +1 -1
- package/demo/data/scatter.js +48 -32
- package/demo/data/scatter.js.map +1 -1
- package/demo/data/step.js +6 -6
- package/demo/data/step.js.map +1 -1
- package/demo/data/time-series-axis.js +107 -107
- package/demo/data/time-series-axis.js.map +1 -1
- package/demo/tsconfig.tsbuildinfo +20 -20
- package/interfaces/a11y.js.map +1 -1
- package/interfaces/charts.d.ts +5 -0
- package/interfaces/charts.js.map +1 -1
- package/interfaces/enums.js.map +1 -1
- package/interfaces/events.js.map +1 -1
- package/model.d.ts +1 -0
- package/model.js +61 -5
- package/model.js.map +1 -1
- package/package.json +1 -1
- package/polyfills.js +1 -1
- package/polyfills.js.map +1 -1
- package/services/angle-utils.js +8 -8
- package/services/angle-utils.js.map +1 -1
- package/services/colorPalettes.js +2 -2
- package/services/colorPalettes.js.map +1 -1
- package/services/colors.js +1 -1
- package/services/colors.js.map +1 -1
- package/services/curves.js +2 -2
- package/services/curves.js.map +1 -1
- package/services/essentials/dom-utils.js +6 -6
- package/services/essentials/dom-utils.js.map +1 -1
- package/services/essentials/events.js +1 -1
- package/services/essentials/events.js.map +1 -1
- package/services/scales-cartesian.d.ts +1 -1
- package/services/scales-cartesian.js +18 -18
- package/services/scales-cartesian.js.map +1 -1
- package/services/time-series.js +2 -2
- package/services/time-series.js.map +1 -1
- package/tools.d.ts +7 -7
- package/tools.js +16 -14
- package/tools.js.map +1 -1
- package/tsconfig.tsbuildinfo +55 -55
package/CHANGELOG.md
CHANGED
|
@@ -3,18 +3,18 @@
|
|
|
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.
|
|
6
|
+
## [0.33.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.33.0...v0.33.1) (2020-07-08)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
|
10
10
|
|
|
11
|
-
*
|
|
11
|
+
* fix bar chart tooltip data ([#692](https://github.com/carbon-design-system/carbon-charts/issues/692)) ([05e4bb3](https://github.com/carbon-design-system/carbon-charts/commit/05e4bb364ac96697aefa4c2096b391fc248e2369))
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
# [0.33.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.12...v0.33.0) (2020-07-07)
|
|
18
18
|
|
|
19
19
|
**Note:** Version bump only for package @carbon/charts
|
|
20
20
|
|
|
@@ -22,48 +22,54 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
**Note:** Version bump only for package @carbon/charts
|
|
25
|
+
# Change Log
|
|
28
26
|
|
|
27
|
+
All notable changes to this project will be documented in this file. See
|
|
28
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
29
29
|
|
|
30
|
+
## [0.32.12](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.11...v0.32.12) (2020-06-26)
|
|
30
31
|
|
|
32
|
+
**Note:** Version bump only for package @carbon/charts
|
|
31
33
|
|
|
32
|
-
|
|
33
|
-
## [0.32.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.6...v0.32.7) (2020-06-16)
|
|
34
|
+
## [0.32.11](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.10...v0.32.11) (2020-06-24)
|
|
34
35
|
|
|
35
36
|
**Note:** Version bump only for package @carbon/charts
|
|
36
37
|
|
|
38
|
+
## [0.32.10](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.9...v0.32.10) (2020-06-24)
|
|
37
39
|
|
|
40
|
+
### Bug Fixes
|
|
38
41
|
|
|
42
|
+
- **core:** fix gauge charts without a delta number
|
|
43
|
+
([#680](https://github.com/carbon-design-system/carbon-charts/issues/680))
|
|
44
|
+
([f65a084](https://github.com/carbon-design-system/carbon-charts/commit/f65a084bb66f1e8241fdbd6b101daf98d059d548))
|
|
39
45
|
|
|
40
|
-
|
|
41
|
-
## [0.32.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.5...v0.32.6) (2020-06-12)
|
|
46
|
+
## [0.32.9](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.8...v0.32.9) (2020-06-23)
|
|
42
47
|
|
|
43
48
|
**Note:** Version bump only for package @carbon/charts
|
|
44
49
|
|
|
50
|
+
## [0.32.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.7...v0.32.8) (2020-06-19)
|
|
45
51
|
|
|
52
|
+
**Note:** Version bump only for package @carbon/charts
|
|
46
53
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
## [0.32.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.4...v0.32.5) (2020-06-11)
|
|
54
|
+
## [0.32.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.6...v0.32.7) (2020-06-16)
|
|
50
55
|
|
|
51
56
|
**Note:** Version bump only for package @carbon/charts
|
|
52
57
|
|
|
58
|
+
## [0.32.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.5...v0.32.6) (2020-06-12)
|
|
53
59
|
|
|
60
|
+
**Note:** Version bump only for package @carbon/charts
|
|
54
61
|
|
|
62
|
+
## [0.32.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.4...v0.32.5) (2020-06-11)
|
|
55
63
|
|
|
64
|
+
**Note:** Version bump only for package @carbon/charts
|
|
56
65
|
|
|
57
66
|
## [0.32.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.3...v0.32.4) (2020-06-10)
|
|
58
67
|
|
|
59
|
-
|
|
60
68
|
### Bug Fixes
|
|
61
69
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
70
|
+
- update tslint and prettier options
|
|
71
|
+
([#661](https://github.com/carbon-design-system/carbon-charts/issues/661))
|
|
72
|
+
([ebc53d9](https://github.com/carbon-design-system/carbon-charts/commit/ebc53d9f4caea047f656ae98075b9c8ca307b280))
|
|
67
73
|
|
|
68
74
|
## [0.32.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.2...v0.32.3) (2020-06-08)
|
|
69
75
|
|
|
@@ -73,27 +79,34 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
73
79
|
|
|
74
80
|
### Bug Fixes
|
|
75
81
|
|
|
76
|
-
- **core, angular, react, vue, svelte:** fix scatter graph data updates
|
|
82
|
+
- **core, angular, react, vue, svelte:** fix scatter graph data updates
|
|
83
|
+
([#654](https://github.com/carbon-design-system/carbon-charts/issues/654))
|
|
84
|
+
([673d627](https://github.com/carbon-design-system/carbon-charts/commit/673d627f47274b9815ef94e4a48bb25485e1b9a3))
|
|
77
85
|
|
|
78
86
|
## [0.32.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.0...v0.32.1) (2020-06-03)
|
|
79
87
|
|
|
80
88
|
### Bug Fixes
|
|
81
89
|
|
|
82
|
-
- fix missing title option in charts interface
|
|
90
|
+
- fix missing title option in charts interface
|
|
91
|
+
([b74d658](https://github.com/carbon-design-system/carbon-charts/commit/b74d6582277632c8a2a1f460f3ce73aadd40e500))
|
|
83
92
|
|
|
84
93
|
# [0.32.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.24...v0.32.0) (2020-05-29)
|
|
85
94
|
|
|
86
95
|
### Bug Fixes
|
|
87
96
|
|
|
88
|
-
- **core:** threshold - support non JS-date values
|
|
89
|
-
|
|
97
|
+
- **core:** threshold - support non JS-date values
|
|
98
|
+
([a132497](https://github.com/carbon-design-system/carbon-charts/commit/a1324972fa5266151b490cb7eeed92a92da5b2c4))
|
|
99
|
+
- **svelte:** copy svelte source to dist/src
|
|
100
|
+
([492a504](https://github.com/carbon-design-system/carbon-charts/commit/492a50470d2b64793bd2c67c4115bb2732bc44f7))
|
|
90
101
|
|
|
91
102
|
# [0.31.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.24...v0.31.0) (2020-05-29)
|
|
92
103
|
|
|
93
104
|
### Bug Fixes
|
|
94
105
|
|
|
95
|
-
- **core:** threshold - support non JS-date values
|
|
96
|
-
|
|
106
|
+
- **core:** threshold - support non JS-date values
|
|
107
|
+
([a132497](https://github.com/carbon-design-system/carbon-charts/commit/a1324972fa5266151b490cb7eeed92a92da5b2c4))
|
|
108
|
+
- **svelte:** copy svelte source to dist/src
|
|
109
|
+
([492a504](https://github.com/carbon-design-system/carbon-charts/commit/492a50470d2b64793bd2c67c4115bb2732bc44f7))
|
|
97
110
|
|
|
98
111
|
## [0.30.24](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.23...v0.30.24) (2020-05-15)
|
|
99
112
|
|
|
@@ -139,7 +152,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
139
152
|
|
|
140
153
|
### Bug Fixes
|
|
141
154
|
|
|
142
|
-
- **core:** Support for Horizontal Line and Scatter Chart
|
|
155
|
+
- **core:** Support for Horizontal Line and Scatter Chart
|
|
156
|
+
([28b571f](https://github.com/carbon-design-system/carbon-charts/commit/28b571fa4565de5b81a5a178776eb701a88bfe91))
|
|
143
157
|
|
|
144
158
|
## [0.30.13](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.12...v0.30.13) (2020-04-20)
|
|
145
159
|
|
|
@@ -149,7 +163,9 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
149
163
|
|
|
150
164
|
### Bug Fixes
|
|
151
165
|
|
|
152
|
-
- **core:** fix backwards compatibility for pie/donut
|
|
166
|
+
- **core:** fix backwards compatibility for pie/donut
|
|
167
|
+
([#576](https://github.com/carbon-design-system/carbon-charts/issues/576))
|
|
168
|
+
([aed1a4d](https://github.com/carbon-design-system/carbon-charts/commit/aed1a4dbb2d5ff8f85ac29b69b32c1035a326071))
|
|
153
169
|
|
|
154
170
|
## [0.30.11](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.10...v0.30.11) (2020-04-15)
|
|
155
171
|
|
|
@@ -159,13 +175,16 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
159
175
|
|
|
160
176
|
### Bug Fixes
|
|
161
177
|
|
|
162
|
-
- **core:** title string contains html ascii characters
|
|
178
|
+
- **core:** title string contains html ascii characters
|
|
179
|
+
([#547](https://github.com/carbon-design-system/carbon-charts/issues/547))
|
|
180
|
+
([1a6b646](https://github.com/carbon-design-system/carbon-charts/commit/1a6b6463f576c1ba297883e734a4a953e4a22829))
|
|
163
181
|
|
|
164
182
|
## [0.30.9](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.8...v0.30.9) (2020-04-09)
|
|
165
183
|
|
|
166
184
|
### Bug Fixes
|
|
167
185
|
|
|
168
|
-
- **bar-stacked:** render 0 value bars
|
|
186
|
+
- **bar-stacked:** render 0 value bars
|
|
187
|
+
([425e11d](https://github.com/carbon-design-system/carbon-charts/commit/425e11d9dacb8bbaf9740759754eab1f0aa45843))
|
|
169
188
|
|
|
170
189
|
## [0.30.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.7...v0.30.8) (2020-04-03)
|
|
171
190
|
|
|
@@ -175,7 +194,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
175
194
|
|
|
176
195
|
### Bug Fixes
|
|
177
196
|
|
|
178
|
-
- **core:** update import path carbon-components
|
|
197
|
+
- **core:** update import path carbon-components
|
|
198
|
+
([e9fca73](https://github.com/carbon-design-system/carbon-charts/commit/e9fca73cd3768b1b85247a2798908c26da99216b)),
|
|
199
|
+
closes
|
|
200
|
+
[#546](https://github.com/carbon-design-system/carbon-charts/issues/546)
|
|
179
201
|
|
|
180
202
|
## [0.30.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.5...v0.30.6) (2020-03-30)
|
|
181
203
|
|
|
@@ -205,12 +227,16 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
205
227
|
|
|
206
228
|
### Bug Fixes
|
|
207
229
|
|
|
208
|
-
- **core:** fix default axes creation logic
|
|
230
|
+
- **core:** fix default axes creation logic
|
|
231
|
+
([e4fb861](https://github.com/carbon-design-system/carbon-charts/commit/e4fb86185f04ff42cbe7dc003c05556586f6c518))
|
|
209
232
|
|
|
210
233
|
### Features
|
|
211
234
|
|
|
212
|
-
- **core:** Add configuration option to not include 0 on axes
|
|
213
|
-
|
|
235
|
+
- **core:** Add configuration option to not include 0 on axes
|
|
236
|
+
([44d51de](https://github.com/carbon-design-system/carbon-charts/commit/44d51ded6af78d57a848d68e093fe69858405594))
|
|
237
|
+
- **core:** Axes configuration options defaultable, Add option to not include
|
|
238
|
+
0 on axes
|
|
239
|
+
([03969c3](https://github.com/carbon-design-system/carbon-charts/commit/03969c319248064cf1c1ef6eb79ec534aa04c972))
|
|
214
240
|
|
|
215
241
|
## [0.29.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.29.7...v0.29.8) (2020-03-03)
|
|
216
242
|
|
|
@@ -232,13 +258,16 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
232
258
|
|
|
233
259
|
### Bug Fixes
|
|
234
260
|
|
|
235
|
-
- **core:** Tools.getProperty did return 'null' for falsy values, now returns
|
|
261
|
+
- **core:** Tools.getProperty did return 'null' for falsy values, now returns
|
|
262
|
+
the actual values
|
|
263
|
+
([3b78c3a](https://github.com/carbon-design-system/carbon-charts/commit/3b78c3a27d4551e7d7b51f911ea2f7e0f155ef42))
|
|
236
264
|
|
|
237
265
|
## [0.29.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.29.2...v0.29.3) (2020-02-20)
|
|
238
266
|
|
|
239
267
|
### Bug Fixes
|
|
240
268
|
|
|
241
|
-
- **build:** fix bundle output for core
|
|
269
|
+
- **build:** fix bundle output for core
|
|
270
|
+
([4d3d6b4](https://github.com/carbon-design-system/carbon-charts/commit/4d3d6b450fe54b55479aeaffc3706b28d926fffa))
|
|
242
271
|
|
|
243
272
|
## [0.29.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.29.1...v0.29.2) (2020-02-18)
|
|
244
273
|
|
|
@@ -252,22 +281,35 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
252
281
|
|
|
253
282
|
### Bug Fixes
|
|
254
283
|
|
|
255
|
-
- **bar:** tooltip to render bar should provide original datapoint
|
|
256
|
-
|
|
257
|
-
- **
|
|
258
|
-
|
|
259
|
-
- **
|
|
260
|
-
|
|
261
|
-
- **
|
|
262
|
-
|
|
263
|
-
- **
|
|
264
|
-
|
|
284
|
+
- **bar:** tooltip to render bar should provide original datapoint
|
|
285
|
+
([ed04f98](https://github.com/carbon-design-system/carbon-charts/commit/ed04f98891a783d8d5bbc77f9dfdb8d1ed8a46b1))
|
|
286
|
+
- **charts:** simplify the interface to match
|
|
287
|
+
([96da97b](https://github.com/carbon-design-system/carbon-charts/commit/96da97b59c2e22cb661b9297f1cb4ace9bb8ec9e))
|
|
288
|
+
- **line:** remove console.logs
|
|
289
|
+
([5e0413f](https://github.com/carbon-design-system/carbon-charts/commit/5e0413f6c77ae17f74818c04ed2bdf82f386fa58))
|
|
290
|
+
- **lint:** fix linting errors with format
|
|
291
|
+
([04cdefd](https://github.com/carbon-design-system/carbon-charts/commit/04cdefda021ef1dee948231e8713481b9439f287))
|
|
292
|
+
- **scatter:** custom point colors demo
|
|
293
|
+
([f367f83](https://github.com/carbon-design-system/carbon-charts/commit/f367f8337df8b45811afbc3eee0a3a6d3b6f8bcc))
|
|
294
|
+
- **scatter:** simplify the callback parameters
|
|
295
|
+
([c541e8a](https://github.com/carbon-design-system/carbon-charts/commit/c541e8a4a83d026bb5b9c28afe39f749064b3b24))
|
|
296
|
+
- **styles:** don't import and use carbon themes in styles.scss
|
|
297
|
+
([1da8b3e](https://github.com/carbon-design-system/carbon-charts/commit/1da8b3e2ba770c06dc74fe2bf08393e3d6b6778c))
|
|
298
|
+
- **tooltip:** need to pass the datum along with the tooltip calls
|
|
299
|
+
([3bd7bfc](https://github.com/carbon-design-system/carbon-charts/commit/3bd7bfc1d435cb4ba3636361cdbbfe16de10d9d5))
|
|
300
|
+
- **tooltip:** stroke color should always be default
|
|
301
|
+
([b3b6812](https://github.com/carbon-design-system/carbon-charts/commit/b3b6812d9fac5964ae50053332840be8d1b7246f))
|
|
302
|
+
- **tooltip:** use original line color in the tooltip
|
|
303
|
+
([f42d245](https://github.com/carbon-design-system/carbon-charts/commit/f42d2458bdd104898f79d1b7103bcd055bdb1cdf))
|
|
265
304
|
|
|
266
305
|
### Features
|
|
267
306
|
|
|
268
|
-
- **core:** parse non JS date objects within the model
|
|
269
|
-
|
|
270
|
-
- **scatter:**
|
|
307
|
+
- **core:** parse non JS date objects within the model
|
|
308
|
+
([a410fa4](https://github.com/carbon-design-system/carbon-charts/commit/a410fa415fb967ef0529495b300a0327cc4d474b))
|
|
309
|
+
- **scatter:** add getIsFilled to model
|
|
310
|
+
([a160159](https://github.com/carbon-design-system/carbon-charts/commit/a160159ee0fa188ce174ef36f022ad44caf77aeb))
|
|
311
|
+
- **scatter:** enhance custom stroke and fill colors
|
|
312
|
+
([64cfbb6](https://github.com/carbon-design-system/carbon-charts/commit/64cfbb657c6089ab75cf132f09a49d5da75d4c4f))
|
|
271
313
|
|
|
272
314
|
## [0.28.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.28.0...v0.28.1) (2020-01-30)
|
|
273
315
|
|
|
@@ -277,36 +319,50 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
277
319
|
|
|
278
320
|
### Features
|
|
279
321
|
|
|
280
|
-
- **core:** add support for horizontal bar charts
|
|
322
|
+
- **core:** add support for horizontal bar charts
|
|
323
|
+
([#415](https://github.com/carbon-design-system/carbon-charts/issues/415))
|
|
324
|
+
([6a480f0](https://github.com/carbon-design-system/carbon-charts/commit/6a480f0))
|
|
281
325
|
|
|
282
326
|
# [0.27.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.26.1...v0.27.0) (2020-01-20)
|
|
283
327
|
|
|
284
328
|
### Bug Fixes
|
|
285
329
|
|
|
286
|
-
- **chart:** update isLegendEnabled instead of isEnabled
|
|
287
|
-
|
|
288
|
-
- **
|
|
330
|
+
- **chart:** update isLegendEnabled instead of isEnabled
|
|
331
|
+
([d413a8c](https://github.com/carbon-design-system/carbon-charts/commit/d413a8c))
|
|
332
|
+
- **enabled:** rename visible to enabled
|
|
333
|
+
([ac4862f](https://github.com/carbon-design-system/carbon-charts/commit/ac4862f))
|
|
334
|
+
- **lint:** whitespace tslint issue
|
|
335
|
+
([53216f5](https://github.com/carbon-design-system/carbon-charts/commit/53216f5))
|
|
289
336
|
|
|
290
337
|
### Features
|
|
291
338
|
|
|
292
|
-
- **chart:** legend.visible = false to hide the legend
|
|
339
|
+
- **chart:** legend.visible = false to hide the legend
|
|
340
|
+
([6461128](https://github.com/carbon-design-system/carbon-charts/commit/6461128))
|
|
293
341
|
|
|
294
342
|
## [0.26.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.26.0...v0.26.1) (2020-01-20)
|
|
295
343
|
|
|
296
344
|
### Bug Fixes
|
|
297
345
|
|
|
298
|
-
- **axis:** better support small time scales
|
|
299
|
-
|
|
300
|
-
- **axis:** fix
|
|
301
|
-
|
|
302
|
-
- **
|
|
303
|
-
|
|
346
|
+
- **axis:** better support small time scales
|
|
347
|
+
([8cfa595](https://github.com/carbon-design-system/carbon-charts/commit/8cfa595))
|
|
348
|
+
- **axis:** fix lint issue
|
|
349
|
+
([debeed9](https://github.com/carbon-design-system/carbon-charts/commit/debeed9))
|
|
350
|
+
- **axis:** fix linting errors
|
|
351
|
+
([f810d4a](https://github.com/carbon-design-system/carbon-charts/commit/f810d4a))
|
|
352
|
+
- **axis:** remove confusing timeRangeToExtend property
|
|
353
|
+
([0456e24](https://github.com/carbon-design-system/carbon-charts/commit/0456e24))
|
|
354
|
+
- **config:** add additional property to control extension
|
|
355
|
+
([2da3404](https://github.com/carbon-design-system/carbon-charts/commit/2da3404))
|
|
356
|
+
- **configuration:** fix default baseBarChart options
|
|
357
|
+
([1a6dcef](https://github.com/carbon-design-system/carbon-charts/commit/1a6dcef))
|
|
304
358
|
|
|
305
359
|
# [0.26.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.25.0...v0.26.0) (2020-01-16)
|
|
306
360
|
|
|
307
361
|
### Features
|
|
308
362
|
|
|
309
|
-
- **core:** add event dispatches for mouseover, mousemove, click & mouseout
|
|
363
|
+
- **core:** add event dispatches for mouseover, mousemove, click & mouseout
|
|
364
|
+
for all graphs
|
|
365
|
+
([284012c](https://github.com/carbon-design-system/carbon-charts/commit/284012c))
|
|
310
366
|
|
|
311
367
|
# [0.25.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.24.5...v0.25.0) (2020-01-10)
|
|
312
368
|
|
|
@@ -316,13 +372,16 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
316
372
|
|
|
317
373
|
### Bug Fixes
|
|
318
374
|
|
|
319
|
-
- **core:** fix to allow chart to toggle on and off using attribute/css
|
|
375
|
+
- **core:** fix to allow chart to toggle on and off using attribute/css
|
|
376
|
+
properties
|
|
377
|
+
([77e26af](https://github.com/carbon-design-system/carbon-charts/commit/77e26af))
|
|
320
378
|
|
|
321
379
|
## [0.24.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.24.3...v0.24.4) (2020-01-06)
|
|
322
380
|
|
|
323
381
|
### Bug Fixes
|
|
324
382
|
|
|
325
|
-
- **demos:** add IBM Plex Sans Condensed to the core demo site
|
|
383
|
+
- **demos:** add IBM Plex Sans Condensed to the core demo site
|
|
384
|
+
([1761a36](https://github.com/carbon-design-system/carbon-charts/commit/1761a36))
|
|
326
385
|
|
|
327
386
|
## [0.24.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.24.2...v0.24.3) (2019-12-19)
|
|
328
387
|
|
|
@@ -340,13 +399,15 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
340
399
|
|
|
341
400
|
### Features
|
|
342
401
|
|
|
343
|
-
- **core, react, angular, vue:** add WAI-ARIA tags to elements
|
|
402
|
+
- **core, react, angular, vue:** add WAI-ARIA tags to elements
|
|
403
|
+
([1216ed6](https://github.com/carbon-design-system/carbon-charts/commit/1216ed6))
|
|
344
404
|
|
|
345
405
|
# [0.23.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.22.4...v0.23.0) (2019-12-17)
|
|
346
406
|
|
|
347
407
|
### Features
|
|
348
408
|
|
|
349
|
-
- **core:** add spacer components
|
|
409
|
+
- **core:** add spacer components
|
|
410
|
+
([4e5ab5c](https://github.com/carbon-design-system/carbon-charts/commit/4e5ab5c))
|
|
350
411
|
|
|
351
412
|
## [0.22.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.22.3...v0.22.4) (2019-12-16)
|
|
352
413
|
|
|
@@ -356,7 +417,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
356
417
|
|
|
357
418
|
### Bug Fixes
|
|
358
419
|
|
|
359
|
-
- **core:** update tooltip value formatter
|
|
420
|
+
- **core:** update tooltip value formatter
|
|
421
|
+
([2a978d8](https://github.com/carbon-design-system/carbon-charts/commit/2a978d8))
|
|
360
422
|
|
|
361
423
|
## [0.22.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.22.1...v0.22.2) (2019-12-16)
|
|
362
424
|
|
|
@@ -370,67 +432,84 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
370
432
|
|
|
371
433
|
### Features
|
|
372
434
|
|
|
373
|
-
- **core, angular, react, vue:** Update chart width & height through options
|
|
435
|
+
- **core, angular, react, vue:** Update chart width & height through options
|
|
436
|
+
([f050c35](https://github.com/carbon-design-system/carbon-charts/commit/f050c35))
|
|
374
437
|
|
|
375
438
|
# [0.21.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.20.1...v0.21.0) (2019-12-09)
|
|
376
439
|
|
|
377
440
|
### Features
|
|
378
441
|
|
|
379
|
-
- **core, angular, react, vue:** allow customizations to pie labels & the
|
|
442
|
+
- **core, angular, react, vue:** allow customizations to pie labels & the
|
|
443
|
+
donut center number
|
|
444
|
+
([#427](https://github.com/carbon-design-system/carbon-charts/issues/427))
|
|
445
|
+
([0446045](https://github.com/carbon-design-system/carbon-charts/commit/0446045))
|
|
380
446
|
|
|
381
447
|
## [0.20.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.20.0...v0.20.1) (2019-12-04)
|
|
382
448
|
|
|
383
449
|
### Bug Fixes
|
|
384
450
|
|
|
385
|
-
- **core:** loop also through non-display data to assign colors to datasets
|
|
451
|
+
- **core:** loop also through non-display data to assign colors to datasets
|
|
452
|
+
([#394](https://github.com/carbon-design-system/carbon-charts/issues/394))
|
|
453
|
+
([5ba8952](https://github.com/carbon-design-system/carbon-charts/commit/5ba8952))
|
|
386
454
|
|
|
387
455
|
# [0.20.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.19.0...v0.20.0) (2019-12-02)
|
|
388
456
|
|
|
389
457
|
### Features
|
|
390
458
|
|
|
391
|
-
- **core:** add title truncation to tooltip
|
|
459
|
+
- **core:** add title truncation to tooltip
|
|
460
|
+
([bdd677c](https://github.com/carbon-design-system/carbon-charts/commit/bdd677c))
|
|
392
461
|
|
|
393
462
|
# [0.19.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.18.0...v0.19.0) (2019-12-02)
|
|
394
463
|
|
|
395
464
|
### Features
|
|
396
465
|
|
|
397
|
-
- **core:** export interfaces and configurations
|
|
466
|
+
- **core:** export interfaces and configurations
|
|
467
|
+
([df7f557](https://github.com/carbon-design-system/carbon-charts/commit/df7f557))
|
|
398
468
|
|
|
399
469
|
# [0.18.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.17.1...v0.18.0) (2019-12-02)
|
|
400
470
|
|
|
401
471
|
### Bug Fixes
|
|
402
472
|
|
|
403
|
-
- **bar:** fix lint errors
|
|
404
|
-
|
|
473
|
+
- **bar:** fix lint errors
|
|
474
|
+
([0d04b04](https://github.com/carbon-design-system/carbon-charts/commit/0d04b04))
|
|
475
|
+
- **tooltip:** rename defaultTooltip defaultHTML
|
|
476
|
+
([cf8f34e](https://github.com/carbon-design-system/carbon-charts/commit/cf8f34e))
|
|
405
477
|
|
|
406
478
|
### Features
|
|
407
479
|
|
|
408
|
-
- **bar:** pass default tooltip to customHTML tooltip
|
|
409
|
-
|
|
480
|
+
- **bar:** pass default tooltip to customHTML tooltip
|
|
481
|
+
([b6f519b](https://github.com/carbon-design-system/carbon-charts/commit/b6f519b))
|
|
482
|
+
- **tooltip:** for customHTML pass along the HTML tooltip
|
|
483
|
+
([7d1a026](https://github.com/carbon-design-system/carbon-charts/commit/7d1a026))
|
|
410
484
|
|
|
411
485
|
## [0.17.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.17.0...v0.17.1) (2019-11-29)
|
|
412
486
|
|
|
413
487
|
### Bug Fixes
|
|
414
488
|
|
|
415
|
-
- **core:** build optimizations
|
|
489
|
+
- **core:** build optimizations
|
|
490
|
+
([fef77e5](https://github.com/carbon-design-system/carbon-charts/commit/fef77e5))
|
|
416
491
|
|
|
417
492
|
# [0.17.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.25...v0.17.0) (2019-11-29)
|
|
418
493
|
|
|
419
494
|
### Features
|
|
420
495
|
|
|
421
|
-
- **core:** date/time locale support + tick formatting
|
|
496
|
+
- **core:** date/time locale support + tick formatting
|
|
497
|
+
([bc02012](https://github.com/carbon-design-system/carbon-charts/commit/bc02012))
|
|
422
498
|
|
|
423
499
|
## [0.16.25](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.24...v0.16.25) (2019-10-29)
|
|
424
500
|
|
|
425
501
|
### Bug Fixes
|
|
426
502
|
|
|
427
|
-
- **core:** update type to scaleType and backgroundColors to fillColors
|
|
503
|
+
- **core:** update type to scaleType and backgroundColors to fillColors
|
|
504
|
+
([3ca0a0f](https://github.com/carbon-design-system/carbon-charts/commit/3ca0a0f))
|
|
428
505
|
|
|
429
506
|
## [0.16.24](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.23...v0.16.24) (2019-10-25)
|
|
430
507
|
|
|
431
508
|
### Bug Fixes
|
|
432
509
|
|
|
433
|
-
- **core, react, angular, vue:** default width & height to 100%, and call
|
|
510
|
+
- **core, react, angular, vue:** default width & height to 100%, and call
|
|
511
|
+
setOptions on option change
|
|
512
|
+
([db251b4](https://github.com/carbon-design-system/carbon-charts/commit/db251b4))
|
|
434
513
|
|
|
435
514
|
## [0.16.23](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.22...v0.16.23) (2019-10-25)
|
|
436
515
|
|
|
@@ -444,7 +523,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
444
523
|
|
|
445
524
|
### Bug Fixes
|
|
446
525
|
|
|
447
|
-
- **core:** update typescript version
|
|
526
|
+
- **core:** update typescript version
|
|
527
|
+
([949379f](https://github.com/carbon-design-system/carbon-charts/commit/949379f))
|
|
448
528
|
|
|
449
529
|
## [0.16.20](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.19...v0.16.20) (2019-10-24)
|
|
450
530
|
|
|
@@ -454,7 +534,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
454
534
|
|
|
455
535
|
### Bug Fixes
|
|
456
536
|
|
|
457
|
-
- **tooltip:** fix to be multiline instead of multitooltip
|
|
537
|
+
- **tooltip:** fix to be multiline instead of multitooltip
|
|
538
|
+
([0f90325](https://github.com/carbon-design-system/carbon-charts/commit/0f90325))
|
|
458
539
|
|
|
459
540
|
## [0.16.18](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.17...v0.16.18) (2019-10-21)
|
|
460
541
|
|
|
@@ -468,7 +549,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
468
549
|
|
|
469
550
|
### Bug Fixes
|
|
470
551
|
|
|
471
|
-
- custom global object in UMD bundle generated by webpack
|
|
552
|
+
- custom global object in UMD bundle generated by webpack
|
|
553
|
+
([a4d1e54](https://github.com/carbon-design-system/carbon-charts/commit/a4d1e54))
|
|
472
554
|
|
|
473
555
|
## [0.16.15](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.14...v0.16.15) (2019-10-09)
|
|
474
556
|
|
|
@@ -522,13 +604,15 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
522
604
|
|
|
523
605
|
### Bug Fixes
|
|
524
606
|
|
|
525
|
-
- **angular:** Fix angular SSR issues
|
|
607
|
+
- **angular:** Fix angular SSR issues
|
|
608
|
+
([86aa9d3](https://github.com/carbon-design-system/carbon-charts/commit/86aa9d3))
|
|
526
609
|
|
|
527
610
|
## [0.16.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.1...v0.16.2) (2019-09-09)
|
|
528
611
|
|
|
529
612
|
### Bug Fixes
|
|
530
613
|
|
|
531
|
-
- **core, react:** fix react SSR & legend sizing issues
|
|
614
|
+
- **core, react:** fix react SSR & legend sizing issues
|
|
615
|
+
([abedba0](https://github.com/carbon-design-system/carbon-charts/commit/abedba0))
|
|
532
616
|
|
|
533
617
|
## [0.16.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.0...v0.16.1) (2019-09-06)
|
|
534
618
|
|
|
@@ -538,8 +622,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
538
622
|
|
|
539
623
|
### Features
|
|
540
624
|
|
|
541
|
-
- **core:** Expand slice arcs in pie and donut on hover, and remove strokes
|
|
542
|
-
|
|
625
|
+
- **core:** Expand slice arcs in pie and donut on hover, and remove strokes
|
|
626
|
+
([ca5a467](https://github.com/carbon-design-system/carbon-charts/commit/ca5a467))
|
|
627
|
+
- **core:** support width & maxWidth values for bars
|
|
628
|
+
([a2e7120](https://github.com/carbon-design-system/carbon-charts/commit/a2e7120))
|
|
543
629
|
|
|
544
630
|
## [0.15.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.15.7...v0.15.8) (2019-08-24)
|
|
545
631
|
|
|
@@ -561,7 +647,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
561
647
|
|
|
562
648
|
### Bug Fixes
|
|
563
649
|
|
|
564
|
-
- **core:** fix resize grid backdrop
|
|
650
|
+
- **core:** fix resize grid backdrop
|
|
651
|
+
([8e1211e](https://github.com/carbon-design-system/carbon-charts/commit/8e1211e))
|
|
565
652
|
|
|
566
653
|
## [0.15.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.15.2...v0.15.3) (2019-08-16)
|
|
567
654
|
|
|
@@ -571,19 +658,22 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
571
658
|
|
|
572
659
|
### Bug Fixes
|
|
573
660
|
|
|
574
|
-
- **core:** fix for better backdrop resizing on axis grids
|
|
661
|
+
- **core:** fix for better backdrop resizing on axis grids
|
|
662
|
+
([6a12a60](https://github.com/carbon-design-system/carbon-charts/commit/6a12a60))
|
|
575
663
|
|
|
576
664
|
## [0.15.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.15.0...v0.15.1) (2019-07-17)
|
|
577
665
|
|
|
578
666
|
### Bug Fixes
|
|
579
667
|
|
|
580
|
-
- **core:** backdrop resize with chart
|
|
668
|
+
- **core:** backdrop resize with chart
|
|
669
|
+
([bbc288d](https://github.com/carbon-design-system/carbon-charts/commit/bbc288d))
|
|
581
670
|
|
|
582
671
|
# [0.15.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.14.1...v0.15.0) (2019-07-17)
|
|
583
672
|
|
|
584
673
|
### Features
|
|
585
674
|
|
|
586
|
-
- **core:** adding carbon themes
|
|
675
|
+
- **core:** adding carbon themes
|
|
676
|
+
([a31fbcf](https://github.com/carbon-design-system/carbon-charts/commit/a31fbcf))
|
|
587
677
|
|
|
588
678
|
## [0.14.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.14.0...v0.14.1) (2019-07-11)
|
|
589
679
|
|
|
@@ -597,7 +687,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
597
687
|
|
|
598
688
|
### Features
|
|
599
689
|
|
|
600
|
-
- **core:** addition of titles within svg chart
|
|
690
|
+
- **core:** addition of titles within svg chart
|
|
691
|
+
([56380bb](https://github.com/carbon-design-system/carbon-charts/commit/56380bb))
|
|
601
692
|
|
|
602
693
|
## [0.12.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.12.4...v0.12.5) (2019-07-04)
|
|
603
694
|
|
|
@@ -607,7 +698,9 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
607
698
|
|
|
608
699
|
### Bug Fixes
|
|
609
700
|
|
|
610
|
-
- **react core:** change main bundle to umd in core, and update imports in
|
|
701
|
+
- **react core:** change main bundle to umd in core, and update imports in
|
|
702
|
+
react
|
|
703
|
+
([df9c7c3](https://github.com/carbon-design-system/carbon-charts/commit/df9c7c3))
|
|
611
704
|
|
|
612
705
|
## [0.12.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.12.2...v0.12.3) (2019-06-26)
|
|
613
706
|
|
|
@@ -625,26 +718,32 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
625
718
|
|
|
626
719
|
### Features
|
|
627
720
|
|
|
628
|
-
- **core:** Colors, themes & more design updates
|
|
629
|
-
|
|
721
|
+
- **core:** Colors, themes & more design updates
|
|
722
|
+
([#261](https://github.com/carbon-design-system/carbon-charts/issues/261))
|
|
723
|
+
([b0b9070](https://github.com/carbon-design-system/carbon-charts/commit/b0b9070))
|
|
724
|
+
- **feat(core:** Color palettes):
|
|
725
|
+
([edcf601](https://github.com/carbon-design-system/carbon-charts/commit/edcf601))
|
|
630
726
|
|
|
631
727
|
## [0.11.15](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.14...v0.11.15) (2019-05-07)
|
|
632
728
|
|
|
633
729
|
### Bug Fixes
|
|
634
730
|
|
|
635
|
-
- **core:** Fix tooltip positioning
|
|
731
|
+
- **core:** Fix tooltip positioning
|
|
732
|
+
([dd17048](https://github.com/carbon-design-system/carbon-charts/commit/dd17048))
|
|
636
733
|
|
|
637
734
|
## [0.11.14](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.12...v0.11.14) (2019-05-06)
|
|
638
735
|
|
|
639
736
|
### Bug Fixes
|
|
640
737
|
|
|
641
|
-
- **core:** Show empty state for when there is no data
|
|
738
|
+
- **core:** Show empty state for when there is no data
|
|
739
|
+
([b5db127](https://github.com/carbon-design-system/carbon-charts/commit/b5db127))
|
|
642
740
|
|
|
643
741
|
## [0.11.13](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.12...v0.11.13) (2019-04-30)
|
|
644
742
|
|
|
645
743
|
### Bug Fixes
|
|
646
744
|
|
|
647
|
-
- **core:** Show empty state for when there is no data
|
|
745
|
+
- **core:** Show empty state for when there is no data
|
|
746
|
+
([b5db127](https://github.com/carbon-design-system/carbon-charts/commit/b5db127))
|
|
648
747
|
|
|
649
748
|
## [0.11.12](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.11...v0.11.12) (2019-04-22)
|
|
650
749
|
|
|
@@ -666,25 +765,34 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
666
765
|
|
|
667
766
|
### Bug Fixes
|
|
668
767
|
|
|
669
|
-
- **core:** add babel-polyfill as a hard dependency
|
|
768
|
+
- **core:** add babel-polyfill as a hard dependency
|
|
769
|
+
([#230](https://github.com/carbon-design-system/carbon-charts/issues/230))
|
|
770
|
+
([d3e8c0c](https://github.com/carbon-design-system/carbon-charts/commit/d3e8c0c))
|
|
670
771
|
|
|
671
772
|
## [0.11.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.6...v0.11.7) (2019-03-26)
|
|
672
773
|
|
|
673
774
|
### Bug Fixes
|
|
674
775
|
|
|
675
|
-
- **core:** remove suffixes to use regular module resolution, and force
|
|
776
|
+
- **core:** remove suffixes to use regular module resolution, and force
|
|
777
|
+
publish all packages with every release
|
|
778
|
+
([#229](https://github.com/carbon-design-system/carbon-charts/issues/229))
|
|
779
|
+
([2e33ca6](https://github.com/carbon-design-system/carbon-charts/commit/2e33ca6))
|
|
676
780
|
|
|
677
781
|
## [0.11.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.5...v0.11.6) (2019-03-26)
|
|
678
782
|
|
|
679
783
|
### Bug Fixes
|
|
680
784
|
|
|
681
|
-
- **core:** export patterns as strings of svgs
|
|
785
|
+
- **core:** export patterns as strings of svgs
|
|
786
|
+
([#227](https://github.com/carbon-design-system/carbon-charts/issues/227))
|
|
787
|
+
([14391ae](https://github.com/carbon-design-system/carbon-charts/commit/14391ae))
|
|
682
788
|
|
|
683
789
|
## [0.11.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.4...v0.11.5) (2019-03-26)
|
|
684
790
|
|
|
685
791
|
### Bug Fixes
|
|
686
792
|
|
|
687
|
-
- **build:** refactor deploy and update package.jsons
|
|
793
|
+
- **build:** refactor deploy and update package.jsons
|
|
794
|
+
([#223](https://github.com/carbon-design-system/carbon-charts/issues/223))
|
|
795
|
+
([fb512cb](https://github.com/carbon-design-system/carbon-charts/commit/fb512cb))
|
|
688
796
|
|
|
689
797
|
## [0.11.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.3...v0.11.4) (2019-03-25)
|
|
690
798
|
|
|
@@ -694,7 +802,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
694
802
|
|
|
695
803
|
### Features
|
|
696
804
|
|
|
697
|
-
- **core:** specify config as interfaces
|
|
805
|
+
- **core:** specify config as interfaces
|
|
806
|
+
([e474fb6](https://github.com/carbon-design-system/carbon-charts/commit/e474fb6))
|
|
698
807
|
|
|
699
808
|
## [0.10.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.10.4...v0.10.5) (2019-03-12)
|
|
700
809
|
|
|
@@ -704,14 +813,21 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
704
813
|
|
|
705
814
|
### Bug Fixes
|
|
706
815
|
|
|
707
|
-
- **core:** remove updateSVG()
|
|
816
|
+
- **core:** remove updateSVG()
|
|
817
|
+
([38f7e83](https://github.com/carbon-design-system/carbon-charts/commit/38f7e83)),
|
|
818
|
+
closes
|
|
819
|
+
[#185](https://github.com/carbon-design-system/carbon-charts/issues/185)
|
|
708
820
|
|
|
709
821
|
## [0.10.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.10.1...v0.10.2) (2019-03-06)
|
|
710
822
|
|
|
711
823
|
### Bug Fixes
|
|
712
824
|
|
|
713
|
-
- **core:** Enforce text alignment of legend popup in the styles
|
|
714
|
-
|
|
825
|
+
- **core:** Enforce text alignment of legend popup in the styles
|
|
826
|
+
([#203](https://github.com/carbon-design-system/carbon-charts/issues/203))
|
|
827
|
+
([6a4fe1e](https://github.com/carbon-design-system/carbon-charts/commit/6a4fe1e))
|
|
828
|
+
- **core:** Fix loss of letters in labels in wrapTicks()
|
|
829
|
+
([#202](https://github.com/carbon-design-system/carbon-charts/issues/202))
|
|
830
|
+
([8635e7b](https://github.com/carbon-design-system/carbon-charts/commit/8635e7b))
|
|
715
831
|
|
|
716
832
|
## [0.10.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.10.0...v0.10.1) (2019-02-28)
|
|
717
833
|
|
|
@@ -721,7 +837,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
721
837
|
|
|
722
838
|
### Features
|
|
723
839
|
|
|
724
|
-
- **\$core:** Adds getStrokeColor and getFillColor options
|
|
840
|
+
- **\$core:** Adds getStrokeColor and getFillColor options
|
|
841
|
+
([e1766d3](https://github.com/carbon-design-system/carbon-charts/commit/e1766d3)),
|
|
842
|
+
closes
|
|
843
|
+
[#136](https://github.com/carbon-design-system/carbon-charts/issues/136)
|
|
725
844
|
|
|
726
845
|
## [0.9.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.9.6...v0.9.7) (2019-02-22)
|
|
727
846
|
|
|
@@ -731,75 +850,96 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
731
850
|
|
|
732
851
|
### Bug Fixes
|
|
733
852
|
|
|
734
|
-
- **bar:** add maxWidth and other bar fixes
|
|
853
|
+
- **bar:** add maxWidth and other bar fixes
|
|
854
|
+
([3866d86](https://github.com/carbon-design-system/carbon-charts/commit/3866d86))
|
|
735
855
|
|
|
736
856
|
## [0.9.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.9.4...v0.9.5) (2019-02-20)
|
|
737
857
|
|
|
738
858
|
### Bug Fixes
|
|
739
859
|
|
|
740
|
-
- **\$core:** Fixes opacity transitions not completing when data is updated.
|
|
860
|
+
- **\$core:** Fixes opacity transitions not completing when data is updated.
|
|
861
|
+
Ensures use SVG vs CSS op
|
|
862
|
+
([f6b245e](https://github.com/carbon-design-system/carbon-charts/commit/f6b245e))
|
|
741
863
|
|
|
742
864
|
## [0.9.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.9.3...v0.9.4) (2019-02-16)
|
|
743
865
|
|
|
744
866
|
### Bug Fixes
|
|
745
867
|
|
|
746
|
-
- **\$browser:** Fix duplication of titles during title resize
|
|
868
|
+
- **\$browser:** Fix duplication of titles during title resize
|
|
869
|
+
([4698efd](https://github.com/carbon-design-system/carbon-charts/commit/4698efd))
|
|
747
870
|
|
|
748
871
|
## [0.9.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.9.2...v0.9.3) (2019-02-15)
|
|
749
872
|
|
|
750
873
|
### Bug Fixes
|
|
751
874
|
|
|
752
|
-
- **core:** Fix NPM vulnerabilities
|
|
875
|
+
- **core:** Fix NPM vulnerabilities
|
|
876
|
+
([73ef611](https://github.com/carbon-design-system/carbon-charts/commit/73ef611))
|
|
753
877
|
|
|
754
878
|
## [0.9.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.9.1...v0.9.2) (2019-02-15)
|
|
755
879
|
|
|
756
880
|
### Bug Fixes
|
|
757
881
|
|
|
758
|
-
- **core:** Allow custom circle size for line chart
|
|
882
|
+
- **core:** Allow custom circle size for line chart
|
|
883
|
+
([5fb93bd](https://github.com/carbon-design-system/carbon-charts/commit/5fb93bd))
|
|
759
884
|
|
|
760
885
|
## [0.9.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.9.0...v0.9.1) (2019-02-07)
|
|
761
886
|
|
|
762
887
|
### Bug Fixes
|
|
763
888
|
|
|
764
|
-
- **core:** Allow the usage of different size variants of tooltip
|
|
889
|
+
- **core:** Allow the usage of different size variants of tooltip
|
|
890
|
+
([4f6aa1d](https://github.com/carbon-design-system/carbon-charts/commit/4f6aa1d))
|
|
765
891
|
|
|
766
892
|
# [0.9.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.8.6...v0.9.0) (2019-01-28)
|
|
767
893
|
|
|
768
894
|
### Features
|
|
769
895
|
|
|
770
|
-
- **CORE:** ability to customize donut label & number
|
|
896
|
+
- **CORE:** ability to customize donut label & number
|
|
897
|
+
([07014cf](https://github.com/carbon-design-system/carbon-charts/commit/07014cf))
|
|
771
898
|
|
|
772
899
|
## [0.8.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.8.5...v0.8.6) (2019-01-18)
|
|
773
900
|
|
|
774
901
|
### Bug Fixes
|
|
775
902
|
|
|
776
|
-
- **\$browser:** Fixes the issue with pie labels not lining up on smaller
|
|
777
|
-
|
|
778
|
-
|
|
903
|
+
- **\$browser:** Fixes the issue with pie labels not lining up on smaller
|
|
904
|
+
sizes.
|
|
905
|
+
([154467f](https://github.com/carbon-design-system/carbon-charts/commit/154467f)),
|
|
906
|
+
closes
|
|
907
|
+
[#151](https://github.com/carbon-design-system/carbon-charts/issues/151)
|
|
908
|
+
- **\$browser:** Use dynamic step value for margin instead of fixed value.
|
|
909
|
+
([1c96d7a](https://github.com/carbon-design-system/carbon-charts/commit/1c96d7a))
|
|
910
|
+
- **core:** Fix interference of thresholds and bar chart elements
|
|
911
|
+
([a69dc15](https://github.com/carbon-design-system/carbon-charts/commit/a69dc15))
|
|
779
912
|
|
|
780
913
|
## [0.8.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.8.4...v0.8.5) (2019-01-17)
|
|
781
914
|
|
|
782
915
|
### Bug Fixes
|
|
783
916
|
|
|
784
|
-
- **\$browser:** Fixes the issue with pie labels not lining up on smaller
|
|
917
|
+
- **\$browser:** Fixes the issue with pie labels not lining up on smaller
|
|
918
|
+
sizes.
|
|
919
|
+
([54e2227](https://github.com/carbon-design-system/carbon-charts/commit/54e2227)),
|
|
920
|
+
closes
|
|
921
|
+
[#151](https://github.com/carbon-design-system/carbon-charts/issues/151)
|
|
785
922
|
|
|
786
923
|
## [0.8.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.8.3...v0.8.4) (2019-01-17)
|
|
787
924
|
|
|
788
925
|
### Bug Fixes
|
|
789
926
|
|
|
790
|
-
- **core:** Fix interference of thresholds and bar chart elements
|
|
927
|
+
- **core:** Fix interference of thresholds and bar chart elements
|
|
928
|
+
([67ff065](https://github.com/carbon-design-system/carbon-charts/commit/67ff065))
|
|
791
929
|
|
|
792
930
|
## [0.8.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.8.2...v0.8.3) (2019-01-16)
|
|
793
931
|
|
|
794
932
|
### Bug Fixes
|
|
795
933
|
|
|
796
|
-
- **core:** Fix tooltip positioning and clean up styling
|
|
934
|
+
- **core:** Fix tooltip positioning and clean up styling
|
|
935
|
+
([6de0665](https://github.com/carbon-design-system/carbon-charts/commit/6de0665))
|
|
797
936
|
|
|
798
937
|
## [0.8.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.8.1...v0.8.2) (2019-01-14)
|
|
799
938
|
|
|
800
939
|
### Bug Fixes
|
|
801
940
|
|
|
802
|
-
- **core demo:** Fix experimental link issue
|
|
941
|
+
- **core demo:** Fix experimental link issue
|
|
942
|
+
([d9d660a](https://github.com/carbon-design-system/carbon-charts/commit/d9d660a))
|
|
803
943
|
|
|
804
944
|
## [0.8.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.8.0...v0.8.1) (2019-01-09)
|
|
805
945
|
|
|
@@ -809,13 +949,17 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
809
949
|
|
|
810
950
|
### Features
|
|
811
951
|
|
|
812
|
-
- **\$core:** adds support for tension, beta, alpha in curves
|
|
952
|
+
- **\$core:** adds support for tension, beta, alpha in curves
|
|
953
|
+
([09437dc](https://github.com/carbon-design-system/carbon-charts/commit/09437dc)),
|
|
954
|
+
closes
|
|
955
|
+
[#39](https://github.com/carbon-design-system/carbon-charts/issues/39)
|
|
813
956
|
|
|
814
957
|
## [0.7.16](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.15...v0.7.16) (2019-01-03)
|
|
815
958
|
|
|
816
959
|
### Bug Fixes
|
|
817
960
|
|
|
818
|
-
- **core:** Remove extension of addLegend in PieChart
|
|
961
|
+
- **core:** Remove extension of addLegend in PieChart
|
|
962
|
+
([c66b633](https://github.com/carbon-design-system/carbon-charts/commit/c66b633))
|
|
819
963
|
|
|
820
964
|
## [0.7.14](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.13...v0.7.14) (2019-01-03)
|
|
821
965
|
|
|
@@ -829,19 +973,25 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
829
973
|
|
|
830
974
|
### Bug Fixes
|
|
831
975
|
|
|
832
|
-
- **react:** Fix react wrappers resizing with animation
|
|
976
|
+
- **react:** Fix react wrappers resizing with animation
|
|
977
|
+
([4219f33](https://github.com/carbon-design-system/carbon-charts/commit/4219f33))
|
|
833
978
|
|
|
834
979
|
## [0.7.9](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.8...v0.7.9) (2018-11-22)
|
|
835
980
|
|
|
836
981
|
### Bug Fixes
|
|
837
982
|
|
|
838
|
-
- **core:** Use a minimum size for all charts, and use resizeObserver rather
|
|
983
|
+
- **core:** Use a minimum size for all charts, and use resizeObserver rather
|
|
984
|
+
than requestAnimationFra
|
|
985
|
+
([462c2d6](https://github.com/carbon-design-system/carbon-charts/commit/462c2d6))
|
|
839
986
|
|
|
840
987
|
## [0.7.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.7...v0.7.8) (2018-11-22)
|
|
841
988
|
|
|
842
989
|
### Bug Fixes
|
|
843
990
|
|
|
844
|
-
- **core:** Remove and update addDataPointEventListener
|
|
991
|
+
- **core:** Remove and update addDataPointEventListener
|
|
992
|
+
([f40f775](https://github.com/carbon-design-system/carbon-charts/commit/f40f775)),
|
|
993
|
+
closes
|
|
994
|
+
[#97](https://github.com/carbon-design-system/carbon-charts/issues/97)
|
|
845
995
|
|
|
846
996
|
## [0.7.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.4...v0.7.5) (2018-11-20)
|
|
847
997
|
|
|
@@ -851,7 +1001,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
851
1001
|
|
|
852
1002
|
### Bug Fixes
|
|
853
1003
|
|
|
854
|
-
- **packages/core/src/line-chart.ts:** Fix tooltips bug
|
|
1004
|
+
- **packages/core/src/line-chart.ts:** Fix tooltips bug
|
|
1005
|
+
[#89](https://github.com/carbon-design-system/carbon-charts/issues/89): Fix
|
|
1006
|
+
imports and addDataPointEventListene
|
|
1007
|
+
([5a63f94](https://github.com/carbon-design-system/carbon-charts/commit/5a63f94))
|
|
855
1008
|
|
|
856
1009
|
## [0.7.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.2...v0.7.3) (2018-11-13)
|
|
857
1010
|
|
|
@@ -861,41 +1014,52 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
861
1014
|
|
|
862
1015
|
### Bug Fixes
|
|
863
1016
|
|
|
864
|
-
- **core:** Fixed label colours on donut charts
|
|
1017
|
+
- **core:** Fixed label colours on donut charts
|
|
1018
|
+
([5e40ef6](https://github.com/carbon-design-system/carbon-charts/commit/5e40ef6))
|
|
865
1019
|
|
|
866
1020
|
## [0.7.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.0...v0.7.1) (2018-11-12)
|
|
867
1021
|
|
|
868
1022
|
### Bug Fixes
|
|
869
1023
|
|
|
870
|
-
- **core:** Refactor thresholds to support a range of values, closes
|
|
1024
|
+
- **core:** Refactor thresholds to support a range of values, closes
|
|
1025
|
+
[#85](https://github.com/carbon-design-system/carbon-charts/issues/85)
|
|
1026
|
+
([50b44c0](https://github.com/carbon-design-system/carbon-charts/commit/50b44c0))
|
|
871
1027
|
|
|
872
1028
|
# [0.7.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.6.2...v0.7.0) (2018-11-12)
|
|
873
1029
|
|
|
874
1030
|
### Features
|
|
875
1031
|
|
|
876
|
-
- **core:** Automatic calculation of DonutCenter value, closes
|
|
1032
|
+
- **core:** Automatic calculation of DonutCenter value, closes
|
|
1033
|
+
[#83](https://github.com/carbon-design-system/carbon-charts/issues/83)
|
|
1034
|
+
([d20e883](https://github.com/carbon-design-system/carbon-charts/commit/d20e883))
|
|
877
1035
|
|
|
878
1036
|
## [0.6.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.6.1...v0.6.2) (2018-11-12)
|
|
879
1037
|
|
|
880
1038
|
### Bug Fixes
|
|
881
1039
|
|
|
882
|
-
- **\$core:** Remove hover effect and pointer on non-clickable legends
|
|
1040
|
+
- **\$core:** Remove hover effect and pointer on non-clickable legends
|
|
1041
|
+
([dc9a2f2](https://github.com/carbon-design-system/carbon-charts/commit/dc9a2f2)),
|
|
1042
|
+
closes
|
|
1043
|
+
[#71](https://github.com/carbon-design-system/carbon-charts/issues/71)
|
|
883
1044
|
|
|
884
1045
|
## [0.6.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.6.0...v0.6.1) (2018-11-09)
|
|
885
1046
|
|
|
886
1047
|
### Bug Fixes
|
|
887
1048
|
|
|
888
|
-
- **angular:** Fix babel-polyfill multiple instances issue
|
|
1049
|
+
- **angular:** Fix babel-polyfill multiple instances issue
|
|
1050
|
+
([4a2f165](https://github.com/carbon-design-system/carbon-charts/commit/4a2f165))
|
|
889
1051
|
|
|
890
1052
|
# [0.6.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.5.4...v0.6.0) (2018-11-01)
|
|
891
1053
|
|
|
892
1054
|
### Bug Fixes
|
|
893
1055
|
|
|
894
|
-
- **core:** Resize thresholds, and update threshold theme colors
|
|
1056
|
+
- **core:** Resize thresholds, and update threshold theme colors
|
|
1057
|
+
([3d86841](https://github.com/carbon-design-system/carbon-charts/commit/3d86841))
|
|
895
1058
|
|
|
896
1059
|
### Features
|
|
897
1060
|
|
|
898
|
-
- **core:** changed threshold config format, code refactor
|
|
1061
|
+
- **core:** changed threshold config format, code refactor
|
|
1062
|
+
([d931a82](https://github.com/carbon-design-system/carbon-charts/commit/d931a82))
|
|
899
1063
|
|
|
900
1064
|
<a name="0.5.4"></a>
|
|
901
1065
|
|
|
@@ -927,12 +1091,16 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
927
1091
|
|
|
928
1092
|
### Bug Fixes
|
|
929
1093
|
|
|
930
|
-
- **core:** legend updates in pie & donut should respect legend filters
|
|
931
|
-
|
|
1094
|
+
- **core:** legend updates in pie & donut should respect legend filters
|
|
1095
|
+
([203c7e6](https://github.com/carbon-design-system/carbon-charts/commit/203c7e6))
|
|
1096
|
+
- **core:** use correct default colors, and replace loading bee with carbon
|
|
1097
|
+
loading spinner
|
|
1098
|
+
([80ff9bd](https://github.com/carbon-design-system/carbon-charts/commit/80ff9bd))
|
|
932
1099
|
|
|
933
1100
|
### Features
|
|
934
1101
|
|
|
935
|
-
- **core:** first attempt at combo-chart
|
|
1102
|
+
- **core:** first attempt at combo-chart
|
|
1103
|
+
([6613160](https://github.com/carbon-design-system/carbon-charts/commit/6613160))
|
|
936
1104
|
|
|
937
1105
|
<a name="0.4.3"></a>
|
|
938
1106
|
|
|
@@ -946,7 +1114,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
946
1114
|
|
|
947
1115
|
### Bug Fixes
|
|
948
1116
|
|
|
949
|
-
- **core angular:** IE11 Support
|
|
1117
|
+
- **core angular:** IE11 Support
|
|
1118
|
+
([b0dd2b5](https://github.com/carbon-design-system/carbon-charts/commit/b0dd2b5))
|
|
950
1119
|
|
|
951
1120
|
<a name="0.4.1"></a>
|
|
952
1121
|
|
|
@@ -954,8 +1123,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
954
1123
|
|
|
955
1124
|
### Bug Fixes
|
|
956
1125
|
|
|
957
|
-
- **core angular:** Remove demo folders from published packages
|
|
958
|
-
|
|
1126
|
+
- **core angular:** Remove demo folders from published packages
|
|
1127
|
+
([5e3c556](https://github.com/carbon-design-system/carbon-charts/commit/5e3c556))
|
|
1128
|
+
- **core angular:** Remove demos & add dist in packages
|
|
1129
|
+
([94bb9f4](https://github.com/carbon-design-system/carbon-charts/commit/94bb9f4))
|
|
959
1130
|
|
|
960
1131
|
<a name="0.4.0"></a>
|
|
961
1132
|
|
|
@@ -963,7 +1134,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
963
1134
|
|
|
964
1135
|
### Features
|
|
965
1136
|
|
|
966
|
-
- **core angular react:** Resolve DAP violations
|
|
1137
|
+
- **core angular react:** Resolve DAP violations
|
|
1138
|
+
([86f6e05](https://github.com/carbon-design-system/carbon-charts/commit/86f6e05))
|
|
967
1139
|
|
|
968
1140
|
<a name="0.3.0"></a>
|
|
969
1141
|
|
|
@@ -971,7 +1143,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
971
1143
|
|
|
972
1144
|
### Features
|
|
973
1145
|
|
|
974
|
-
- **core angular:** trigger minor release on Travis
|
|
1146
|
+
- **core angular:** trigger minor release on Travis
|
|
1147
|
+
([1c476b2](https://github.com/carbon-design-system/carbon-charts/commit/1c476b2))
|
|
975
1148
|
|
|
976
1149
|
<a name="0.2.0"></a>
|
|
977
1150
|
|
|
@@ -979,7 +1152,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
979
1152
|
|
|
980
1153
|
### Features
|
|
981
1154
|
|
|
982
|
-
- **core angular react:** trigger a minor release in Travis
|
|
1155
|
+
- **core angular react:** trigger a minor release in Travis
|
|
1156
|
+
([2995cfa](https://github.com/carbon-design-system/carbon-charts/commit/2995cfa))
|
|
983
1157
|
|
|
984
1158
|
<a name="0.1.0"></a>
|
|
985
1159
|
|
|
@@ -987,15 +1161,27 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
987
1161
|
|
|
988
1162
|
### Bug Fixes
|
|
989
1163
|
|
|
990
|
-
- **core angular react:** fix tooltip styling
|
|
991
|
-
|
|
992
|
-
- **
|
|
1164
|
+
- **core angular react:** fix tooltip styling
|
|
1165
|
+
([80b36f5](https://github.com/carbon-design-system/carbon-charts/commit/80b36f5))
|
|
1166
|
+
- **peretz-icons:** show peretz-icons instead of raw SVG for tooltip close
|
|
1167
|
+
button
|
|
1168
|
+
([19a54d4](https://github.com/carbon-design-system/carbon-charts/commit/19a54d4))
|
|
1169
|
+
- **scope angular react:** use a more specific class name for chart tooltips
|
|
1170
|
+
([4cbe680](https://github.com/carbon-design-system/carbon-charts/commit/4cbe680))
|
|
993
1171
|
|
|
994
1172
|
### Features
|
|
995
1173
|
|
|
996
|
-
- **core angular react:** support negative y-values
|
|
997
|
-
|
|
998
|
-
- **react
|
|
1174
|
+
- **core angular react:** support negative y-values
|
|
1175
|
+
([cfa941d](https://github.com/carbon-design-system/carbon-charts/commit/cfa941d))
|
|
1176
|
+
- **core react angular:** carbon styling
|
|
1177
|
+
([5064f63](https://github.com/carbon-design-system/carbon-charts/commit/5064f63))
|
|
1178
|
+
- **react wrappers storybook:** full react wrappers
|
|
1179
|
+
([4a456ee](https://github.com/carbon-design-system/carbon-charts/commit/4a456ee)),
|
|
1180
|
+
closes
|
|
1181
|
+
[#117](https://github.com/carbon-design-system/carbon-charts/issues/117)
|
|
1182
|
+
[#115](https://github.com/carbon-design-system/carbon-charts/issues/115)
|
|
1183
|
+
[#120](https://github.com/carbon-design-system/carbon-charts/issues/120)
|
|
1184
|
+
[#121](https://github.com/carbon-design-system/carbon-charts/issues/121)
|
|
999
1185
|
|
|
1000
1186
|
# Change Log
|
|
1001
1187
|
|