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