@carbon/charts 0.30.24 → 0.30.25

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.
Files changed (162) hide show
  1. package/CHANGELOG.md +330 -1052
  2. package/README.md +3 -0
  3. package/axis-chart.js +8 -14
  4. package/axis-chart.js.map +1 -1
  5. package/build/demo/{data/create-codesandbox.d.ts → create-codesandbox.d.ts} +16 -13
  6. package/build/demo/data/bar.d.ts +1 -1
  7. package/build/demo/data/line.d.ts +1 -1
  8. package/build/src/interfaces/axis-scales.d.ts +11 -11
  9. package/build/src/interfaces/charts.d.ts +1 -0
  10. package/bundle.js +1 -1
  11. package/chart.js +15 -24
  12. package/chart.js.map +1 -1
  13. package/charts/bar-grouped.js +3 -1
  14. package/charts/bar-grouped.js.map +1 -1
  15. package/charts/bar-simple.js +3 -1
  16. package/charts/bar-simple.js.map +1 -1
  17. package/charts/bar-stacked.js +3 -1
  18. package/charts/bar-stacked.js.map +1 -1
  19. package/charts/bubble.js +3 -1
  20. package/charts/bubble.js.map +1 -1
  21. package/charts/donut.js +3 -1
  22. package/charts/donut.js.map +1 -1
  23. package/charts/line.js +3 -1
  24. package/charts/line.js.map +1 -1
  25. package/charts/pie.js +3 -1
  26. package/charts/pie.js.map +1 -1
  27. package/charts/radar.js +1 -3
  28. package/charts/radar.js.map +1 -1
  29. package/charts/scatter.js +3 -1
  30. package/charts/scatter.js.map +1 -1
  31. package/components/axes/axis.js +72 -33
  32. package/components/axes/axis.js.map +1 -1
  33. package/components/axes/grid.js +23 -18
  34. package/components/axes/grid.js.map +1 -1
  35. package/components/axes/ruler.js +7 -5
  36. package/components/axes/ruler.js.map +1 -1
  37. package/components/axes/two-dimensional-axes.js +5 -2
  38. package/components/axes/two-dimensional-axes.js.map +1 -1
  39. package/components/axes/zero-line.js +2 -1
  40. package/components/axes/zero-line.js.map +1 -1
  41. package/components/component.js +2 -4
  42. package/components/component.js.map +1 -1
  43. package/components/essentials/legend.js +46 -23
  44. package/components/essentials/legend.js.map +1 -1
  45. package/components/essentials/threshold.js +11 -5
  46. package/components/essentials/threshold.js.map +1 -1
  47. package/components/essentials/title.js +6 -4
  48. package/components/essentials/title.js.map +1 -1
  49. package/components/essentials/tooltip-bar.js +39 -20
  50. package/components/essentials/tooltip-bar.js.map +1 -1
  51. package/components/essentials/tooltip-pie.js +4 -3
  52. package/components/essentials/tooltip-pie.js.map +1 -1
  53. package/components/essentials/tooltip-radar.js +6 -3
  54. package/components/essentials/tooltip-radar.js.map +1 -1
  55. package/components/essentials/tooltip-scatter.js +3 -1
  56. package/components/essentials/tooltip-scatter.js.map +1 -1
  57. package/components/essentials/tooltip.js +35 -15
  58. package/components/essentials/tooltip.js.map +1 -1
  59. package/components/graphs/bar-grouped.js +46 -20
  60. package/components/graphs/bar-grouped.js.map +1 -1
  61. package/components/graphs/bar-simple.js +39 -19
  62. package/components/graphs/bar-simple.js.map +1 -1
  63. package/components/graphs/bar-stacked.js +50 -28
  64. package/components/graphs/bar-stacked.js.map +1 -1
  65. package/components/graphs/bar.js.map +1 -1
  66. package/components/graphs/bubble.js +22 -8
  67. package/components/graphs/bubble.js.map +1 -1
  68. package/components/graphs/donut.js +12 -4
  69. package/components/graphs/donut.js.map +1 -1
  70. package/components/graphs/line.js +14 -7
  71. package/components/graphs/line.js.map +1 -1
  72. package/components/graphs/pie.js +80 -44
  73. package/components/graphs/pie.js.map +1 -1
  74. package/components/graphs/radar.js +271 -140
  75. package/components/graphs/radar.js.map +1 -1
  76. package/components/graphs/scatter.js +54 -21
  77. package/components/graphs/scatter.js.map +1 -1
  78. package/components/graphs/skeleton.js +29 -14
  79. package/components/graphs/skeleton.js.map +1 -1
  80. package/components/layout/layout.js +38 -26
  81. package/components/layout/layout.js.map +1 -1
  82. package/components/layout/spacer.js +2 -1
  83. package/components/layout/spacer.js.map +1 -1
  84. package/configuration.js +15 -13
  85. package/configuration.js.map +1 -1
  86. package/demo/{data/create-codesandbox.d.ts → create-codesandbox.d.ts} +16 -13
  87. package/demo/{data/create-codesandbox.js → create-codesandbox.js} +24 -21
  88. package/demo/create-codesandbox.js.map +1 -0
  89. package/demo/data/bar.d.ts +1 -1
  90. package/demo/data/bar.js +1 -1
  91. package/demo/data/bar.js.map +1 -1
  92. package/demo/data/bubble.js +5 -3
  93. package/demo/data/bubble.js.map +1 -1
  94. package/demo/data/bundle.js +1 -1
  95. package/demo/data/index.js +12 -7
  96. package/demo/data/index.js.map +1 -1
  97. package/demo/data/line.d.ts +1 -1
  98. package/demo/data/line.js +2 -4
  99. package/demo/data/line.js.map +1 -1
  100. package/demo/data/radar.js.map +1 -1
  101. package/demo/data/time-series-axis.js +1 -3
  102. package/demo/data/time-series-axis.js.map +1 -1
  103. package/demo/styles.css +50 -18
  104. package/demo/styles.css.map +1 -1
  105. package/demo/styles.min.css +1 -1
  106. package/demo/styles.min.css.map +1 -1
  107. package/demo/tsconfig.tsbuildinfo +68 -68
  108. package/index.js.map +1 -1
  109. package/interfaces/axis-scales.d.ts +11 -11
  110. package/interfaces/axis-scales.js.map +1 -1
  111. package/interfaces/charts.d.ts +1 -0
  112. package/interfaces/charts.js.map +1 -1
  113. package/interfaces/components.js.map +1 -1
  114. package/interfaces/enums.js.map +1 -1
  115. package/model.js +27 -16
  116. package/model.js.map +1 -1
  117. package/package.json +4 -2
  118. package/polyfills.js +7 -2
  119. package/polyfills.js.map +1 -1
  120. package/services/angle-utils.js +34 -9
  121. package/services/angle-utils.js.map +1 -1
  122. package/services/colors.js.map +1 -1
  123. package/services/curves.js +4 -2
  124. package/services/curves.js.map +1 -1
  125. package/services/essentials/dom-utils.js +4 -3
  126. package/services/essentials/dom-utils.js.map +1 -1
  127. package/services/essentials/transitions.js +3 -4
  128. package/services/essentials/transitions.js.map +1 -1
  129. package/services/scales-cartesian.js +63 -23
  130. package/services/scales-cartesian.js.map +1 -1
  131. package/services/time-series.js +28 -12
  132. package/services/time-series.js.map +1 -1
  133. package/styles/components/_axis.scss +4 -0
  134. package/styles/components/_layout.scss +0 -1
  135. package/styles/components/_ruler.scss +5 -2
  136. package/styles/components/_skeleton.scss +2 -3
  137. package/styles/components/_threshold.scss +2 -2
  138. package/styles/components/_tooltip.scss +6 -5
  139. package/styles/graphs/_bubble.scss +1 -1
  140. package/styles/graphs/_radar.scss +4 -2
  141. package/styles/graphs/_scatter.scss +1 -1
  142. package/styles/mixins.scss +2 -2
  143. package/styles-g10.css +11 -4
  144. package/styles-g10.css.map +1 -1
  145. package/styles-g10.min.css +1 -1
  146. package/styles-g10.min.css.map +1 -1
  147. package/styles-g100.css +11 -4
  148. package/styles-g100.css.map +1 -1
  149. package/styles-g100.min.css +1 -1
  150. package/styles-g100.min.css.map +1 -1
  151. package/styles-g90.css +11 -4
  152. package/styles-g90.css.map +1 -1
  153. package/styles-g90.min.css +1 -1
  154. package/styles-g90.min.css.map +1 -1
  155. package/styles.css +11 -4
  156. package/styles.css.map +1 -1
  157. package/styles.min.css +1 -1
  158. package/styles.min.css.map +1 -1
  159. package/tools.js +19 -7
  160. package/tools.js.map +1 -1
  161. package/tsconfig.tsbuildinfo +56 -56
  162. package/demo/data/create-codesandbox.js.map +0 -1
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
- ## [0.30.24](https://github.com/IBM/carbon-charts/compare/v0.30.23...v0.30.24) (2020-05-15)
6
+ ## [0.30.25](https://github.com/IBM/carbon-charts/compare/v0.30.24...v0.30.25) (2020-05-21)
7
7
 
8
8
  **Note:** Version bump only for package @carbon/charts
9
9
 
@@ -11,1629 +11,907 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
11
11
 
12
12
 
13
13
 
14
- ## [0.30.23](https://github.com/IBM/carbon-charts/compare/v0.30.22...v0.30.23) (2020-05-13)
14
+ ## [0.30.24](https://github.com/IBM/carbon-charts/compare/v0.30.23...v0.30.24) (2020-05-15)
15
15
 
16
16
  **Note:** Version bump only for package @carbon/charts
17
17
 
18
+ ## [0.30.23](https://github.com/IBM/carbon-charts/compare/v0.30.22...v0.30.23) (2020-05-13)
18
19
 
19
-
20
-
20
+ **Note:** Version bump only for package @carbon/charts
21
21
 
22
22
  ## [0.30.22](https://github.com/IBM/carbon-charts/compare/v0.30.21...v0.30.22) (2020-05-13)
23
23
 
24
24
  **Note:** Version bump only for package @carbon/charts
25
25
 
26
+ ## [0.30.21](https://github.com/IBM/carbon-charts/compare/v0.30.20...v0.30.21) (2020-05-11)
26
27
 
28
+ **Note:** Version bump only for package @carbon/charts
27
29
 
30
+ ## [0.30.20](https://github.com/IBM/carbon-charts/compare/v0.30.19...v0.30.20) (2020-05-08)
28
31
 
32
+ **Note:** Version bump only for package @carbon/charts
29
33
 
30
- ## [0.30.21](https://github.com/IBM/carbon-charts/compare/v0.30.20...v0.30.21) (2020-05-11)
34
+ ## [0.30.19](https://github.com/IBM/carbon-charts/compare/v0.30.18...v0.30.19) (2020-05-01)
31
35
 
32
36
  **Note:** Version bump only for package @carbon/charts
33
37
 
38
+ ## [0.30.18](https://github.com/IBM/carbon-charts/compare/v0.30.17...v0.30.18) (2020-04-24)
34
39
 
40
+ **Note:** Version bump only for package @carbon/charts
35
41
 
42
+ ## [0.30.17](https://github.com/IBM/carbon-charts/compare/v0.30.16...v0.30.17) (2020-04-23)
36
43
 
44
+ **Note:** Version bump only for package @carbon/charts
37
45
 
38
- ## [0.30.20](https://github.com/IBM/carbon-charts/compare/v0.30.19...v0.30.20) (2020-05-08)
46
+ ## [0.30.16](https://github.com/IBM/carbon-charts/compare/v0.30.15...v0.30.16) (2020-04-23)
39
47
 
40
48
  **Note:** Version bump only for package @carbon/charts
41
49
 
50
+ ## [0.30.15](https://github.com/IBM/carbon-charts/compare/v0.30.14...v0.30.15) (2020-04-22)
42
51
 
52
+ **Note:** Version bump only for package @carbon/charts
43
53
 
54
+ ## [0.30.14](https://github.com/IBM/carbon-charts/compare/v0.30.13...v0.30.14) (2020-04-21)
44
55
 
56
+ ### Bug Fixes
45
57
 
46
- ## [0.30.19](https://github.com/IBM/carbon-charts/compare/v0.30.18...v0.30.19) (2020-05-01)
58
+ - **core:** Support for Horizontal Line and Scatter Chart ([28b571f](https://github.com/IBM/carbon-charts/commit/28b571fa4565de5b81a5a178776eb701a88bfe91))
47
59
 
48
- **Note:** Version bump only for package @carbon/charts
60
+ ## [0.30.13](https://github.com/IBM/carbon-charts/compare/v0.30.12...v0.30.13) (2020-04-20)
49
61
 
62
+ **Note:** Version bump only for package @carbon/charts
50
63
 
64
+ ## [0.30.12](https://github.com/IBM/carbon-charts/compare/v0.30.11...v0.30.12) (2020-04-17)
51
65
 
66
+ ### Bug Fixes
52
67
 
68
+ - **core:** fix backwards compatibility for pie/donut ([#576](https://github.com/IBM/carbon-charts/issues/576)) ([aed1a4d](https://github.com/IBM/carbon-charts/commit/aed1a4dbb2d5ff8f85ac29b69b32c1035a326071))
53
69
 
54
- ## [0.30.18](https://github.com/IBM/carbon-charts/compare/v0.30.17...v0.30.18) (2020-04-24)
70
+ ## [0.30.11](https://github.com/IBM/carbon-charts/compare/v0.30.10...v0.30.11) (2020-04-15)
55
71
 
56
72
  **Note:** Version bump only for package @carbon/charts
57
73
 
74
+ ## [0.30.10](https://github.com/IBM/carbon-charts/compare/v0.30.9...v0.30.10) (2020-04-09)
75
+
76
+ ### Bug Fixes
77
+
78
+ - **core:** title string contains html ascii characters ([#547](https://github.com/IBM/carbon-charts/issues/547)) ([1a6b646](https://github.com/IBM/carbon-charts/commit/1a6b6463f576c1ba297883e734a4a953e4a22829))
58
79
 
80
+ ## [0.30.9](https://github.com/IBM/carbon-charts/compare/v0.30.8...v0.30.9) (2020-04-09)
59
81
 
82
+ ### Bug Fixes
60
83
 
84
+ - **bar-stacked:** render 0 value bars ([425e11d](https://github.com/IBM/carbon-charts/commit/425e11d9dacb8bbaf9740759754eab1f0aa45843))
61
85
 
62
- ## [0.30.17](https://github.com/IBM/carbon-charts/compare/v0.30.16...v0.30.17) (2020-04-23)
86
+ ## [0.30.8](https://github.com/IBM/carbon-charts/compare/v0.30.7...v0.30.8) (2020-04-03)
63
87
 
64
88
  **Note:** Version bump only for package @carbon/charts
65
89
 
90
+ ## [0.30.7](https://github.com/IBM/carbon-charts/compare/v0.30.6...v0.30.7) (2020-03-31)
66
91
 
92
+ ### Bug Fixes
67
93
 
94
+ - **core:** update import path carbon-components ([e9fca73](https://github.com/IBM/carbon-charts/commit/e9fca73cd3768b1b85247a2798908c26da99216b)), closes [#546](https://github.com/IBM/carbon-charts/issues/546)
68
95
 
69
-
70
- ## [0.30.16](https://github.com/IBM/carbon-charts/compare/v0.30.15...v0.30.16) (2020-04-23)
96
+ ## [0.30.6](https://github.com/IBM/carbon-charts/compare/v0.30.5...v0.30.6) (2020-03-30)
71
97
 
72
98
  **Note:** Version bump only for package @carbon/charts
73
99
 
100
+ ## [0.30.5](https://github.com/IBM/carbon-charts/compare/v0.30.4...v0.30.5) (2020-03-30)
74
101
 
102
+ **Note:** Version bump only for package @carbon/charts
75
103
 
104
+ ## [0.30.4](https://github.com/IBM/carbon-charts/compare/v0.30.3...v0.30.4) (2020-03-27)
76
105
 
106
+ **Note:** Version bump only for package @carbon/charts
77
107
 
78
- ## [0.30.15](https://github.com/IBM/carbon-charts/compare/v0.30.14...v0.30.15) (2020-04-22)
108
+ ## [0.30.3](https://github.com/IBM/carbon-charts/compare/v0.30.2...v0.30.3) (2020-03-24)
79
109
 
80
110
  **Note:** Version bump only for package @carbon/charts
81
111
 
112
+ ## [0.30.2](https://github.com/IBM/carbon-charts/compare/v0.30.1...v0.30.2) (2020-03-16)
82
113
 
114
+ **Note:** Version bump only for package @carbon/charts
83
115
 
116
+ ## [0.30.1](https://github.com/IBM/carbon-charts/compare/v0.30.0...v0.30.1) (2020-03-13)
84
117
 
118
+ **Note:** Version bump only for package @carbon/charts
85
119
 
86
- ## [0.30.14](https://github.com/IBM/carbon-charts/compare/v0.30.13...v0.30.14) (2020-04-21)
87
-
120
+ # [0.30.0](https://github.com/IBM/carbon-charts/compare/v0.29.8...v0.30.0) (2020-03-11)
88
121
 
89
122
  ### Bug Fixes
90
123
 
91
- * **core:** Support for Horizontal Line and Scatter Chart ([28b571f](https://github.com/IBM/carbon-charts/commit/28b571fa4565de5b81a5a178776eb701a88bfe91))
124
+ - **core:** fix default axes creation logic ([e4fb861](https://github.com/IBM/carbon-charts/commit/e4fb86185f04ff42cbe7dc003c05556586f6c518))
92
125
 
126
+ ### Features
93
127
 
128
+ - **core:** Add configuration option to not include 0 on axes ([44d51de](https://github.com/IBM/carbon-charts/commit/44d51ded6af78d57a848d68e093fe69858405594))
129
+ - **core:** Axes configuration options defaultable, Add option to not include 0 on axes ([03969c3](https://github.com/IBM/carbon-charts/commit/03969c319248064cf1c1ef6eb79ec534aa04c972))
94
130
 
131
+ ## [0.29.8](https://github.com/IBM/carbon-charts/compare/v0.29.7...v0.29.8) (2020-03-03)
95
132
 
133
+ **Note:** Version bump only for package @carbon/charts
96
134
 
97
- ## [0.30.13](https://github.com/IBM/carbon-charts/compare/v0.30.12...v0.30.13) (2020-04-20)
135
+ ## [0.29.7](https://github.com/IBM/carbon-charts/compare/v0.29.6...v0.29.7) (2020-02-28)
98
136
 
99
137
  **Note:** Version bump only for package @carbon/charts
100
138
 
139
+ ## [0.29.6](https://github.com/IBM/carbon-charts/compare/v0.29.5...v0.29.6) (2020-02-25)
101
140
 
141
+ **Note:** Version bump only for package @carbon/charts
102
142
 
143
+ ## [0.29.5](https://github.com/IBM/carbon-charts/compare/v0.29.4...v0.29.5) (2020-02-21)
103
144
 
145
+ **Note:** Version bump only for package @carbon/charts
104
146
 
105
- ## [0.30.12](https://github.com/IBM/carbon-charts/compare/v0.30.11...v0.30.12) (2020-04-17)
106
-
147
+ ## [0.29.4](https://github.com/IBM/carbon-charts/compare/v0.29.3...v0.29.4) (2020-02-20)
107
148
 
108
149
  ### Bug Fixes
109
150
 
110
- * **core:** fix backwards compatibility for pie/donut ([#576](https://github.com/IBM/carbon-charts/issues/576)) ([aed1a4d](https://github.com/IBM/carbon-charts/commit/aed1a4dbb2d5ff8f85ac29b69b32c1035a326071))
111
-
151
+ - **core:** Tools.getProperty did return 'null' for falsy values, now returns the actual values ([3b78c3a](https://github.com/IBM/carbon-charts/commit/3b78c3a27d4551e7d7b51f911ea2f7e0f155ef42))
112
152
 
153
+ ## [0.29.3](https://github.com/IBM/carbon-charts/compare/v0.29.2...v0.29.3) (2020-02-20)
113
154
 
155
+ ### Bug Fixes
114
156
 
157
+ - **build:** fix bundle output for core ([4d3d6b4](https://github.com/IBM/carbon-charts/commit/4d3d6b450fe54b55479aeaffc3706b28d926fffa))
115
158
 
116
- ## [0.30.11](https://github.com/IBM/carbon-charts/compare/v0.30.10...v0.30.11) (2020-04-15)
159
+ ## [0.29.2](https://github.com/IBM/carbon-charts/compare/v0.29.1...v0.29.2) (2020-02-18)
117
160
 
118
161
  **Note:** Version bump only for package @carbon/charts
119
162
 
163
+ ## [0.29.1](https://github.com/IBM/carbon-charts/compare/v0.29.0...v0.29.1) (2020-02-10)
120
164
 
165
+ **Note:** Version bump only for package @carbon/charts
121
166
 
167
+ # [0.29.0](https://github.com/IBM/carbon-charts/compare/v0.28.1...v0.29.0) (2020-02-07)
122
168
 
169
+ ### Bug Fixes
123
170
 
124
- ## [0.30.10](https://github.com/IBM/carbon-charts/compare/v0.30.9...v0.30.10) (2020-04-09)
125
-
171
+ - **bar:** tooltip to render bar should provide original datapoint ([ed04f98](https://github.com/IBM/carbon-charts/commit/ed04f98891a783d8d5bbc77f9dfdb8d1ed8a46b1))
172
+ - **charts:** simplify the interface to match ([96da97b](https://github.com/IBM/carbon-charts/commit/96da97b59c2e22cb661b9297f1cb4ace9bb8ec9e))
173
+ - **line:** remove console.logs ([5e0413f](https://github.com/IBM/carbon-charts/commit/5e0413f6c77ae17f74818c04ed2bdf82f386fa58))
174
+ - **lint:** fix linting errors with format ([04cdefd](https://github.com/IBM/carbon-charts/commit/04cdefda021ef1dee948231e8713481b9439f287))
175
+ - **scatter:** custom point colors demo ([f367f83](https://github.com/IBM/carbon-charts/commit/f367f8337df8b45811afbc3eee0a3a6d3b6f8bcc))
176
+ - **scatter:** simplify the callback parameters ([c541e8a](https://github.com/IBM/carbon-charts/commit/c541e8a4a83d026bb5b9c28afe39f749064b3b24))
177
+ - **styles:** don't import and use carbon themes in styles.scss ([1da8b3e](https://github.com/IBM/carbon-charts/commit/1da8b3e2ba770c06dc74fe2bf08393e3d6b6778c))
178
+ - **tooltip:** need to pass the datum along with the tooltip calls ([3bd7bfc](https://github.com/IBM/carbon-charts/commit/3bd7bfc1d435cb4ba3636361cdbbfe16de10d9d5))
179
+ - **tooltip:** stroke color should always be default ([b3b6812](https://github.com/IBM/carbon-charts/commit/b3b6812d9fac5964ae50053332840be8d1b7246f))
180
+ - **tooltip:** use original line color in the tooltip ([f42d245](https://github.com/IBM/carbon-charts/commit/f42d2458bdd104898f79d1b7103bcd055bdb1cdf))
126
181
 
127
- ### Bug Fixes
182
+ ### Features
128
183
 
129
- * **core:** title string contains html ascii characters ([#547](https://github.com/IBM/carbon-charts/issues/547)) ([1a6b646](https://github.com/IBM/carbon-charts/commit/1a6b6463f576c1ba297883e734a4a953e4a22829))
184
+ - **core:** parse non JS date objects within the model ([a410fa4](https://github.com/IBM/carbon-charts/commit/a410fa415fb967ef0529495b300a0327cc4d474b))
185
+ - **scatter:** add getIsFilled to model ([a160159](https://github.com/IBM/carbon-charts/commit/a160159ee0fa188ce174ef36f022ad44caf77aeb))
186
+ - **scatter:** enhance custom stroke and fill colors ([64cfbb6](https://github.com/IBM/carbon-charts/commit/64cfbb657c6089ab75cf132f09a49d5da75d4c4f))
130
187
 
188
+ ## [0.28.1](https://github.com/IBM/carbon-charts/compare/v0.28.0...v0.28.1) (2020-01-30)
131
189
 
190
+ **Note:** Version bump only for package @carbon/charts
132
191
 
192
+ # [0.28.0](https://github.com/IBM/carbon-charts/compare/v0.27.0...v0.28.0) (2020-01-21)
133
193
 
194
+ ### Features
134
195
 
135
- ## [0.30.9](https://github.com/IBM/carbon-charts/compare/v0.30.8...v0.30.9) (2020-04-09)
196
+ - **core:** add support for horizontal bar charts ([#415](https://github.com/IBM/carbon-charts/issues/415)) ([6a480f0](https://github.com/IBM/carbon-charts/commit/6a480f0))
136
197
 
198
+ # [0.27.0](https://github.com/IBM/carbon-charts/compare/v0.26.1...v0.27.0) (2020-01-20)
137
199
 
138
200
  ### Bug Fixes
139
201
 
140
- * **bar-stacked:** render 0 value bars ([425e11d](https://github.com/IBM/carbon-charts/commit/425e11d9dacb8bbaf9740759754eab1f0aa45843))
141
-
202
+ - **chart:** update isLegendEnabled instead of isEnabled ([d413a8c](https://github.com/IBM/carbon-charts/commit/d413a8c))
203
+ - **enabled:** rename visible to enabled ([ac4862f](https://github.com/IBM/carbon-charts/commit/ac4862f))
204
+ - **lint:** whitespace tslint issue ([53216f5](https://github.com/IBM/carbon-charts/commit/53216f5))
142
205
 
206
+ ### Features
143
207
 
208
+ - **chart:** legend.visible = false to hide the legend ([6461128](https://github.com/IBM/carbon-charts/commit/6461128))
144
209
 
210
+ ## [0.26.1](https://github.com/IBM/carbon-charts/compare/v0.26.0...v0.26.1) (2020-01-20)
145
211
 
146
- ## [0.30.8](https://github.com/IBM/carbon-charts/compare/v0.30.7...v0.30.8) (2020-04-03)
212
+ ### Bug Fixes
147
213
 
148
- **Note:** Version bump only for package @carbon/charts
214
+ - **axis:** better support small time scales ([8cfa595](https://github.com/IBM/carbon-charts/commit/8cfa595))
215
+ - **axis:** fix lint issue ([debeed9](https://github.com/IBM/carbon-charts/commit/debeed9))
216
+ - **axis:** fix linting errors ([f810d4a](https://github.com/IBM/carbon-charts/commit/f810d4a))
217
+ - **axis:** remove confusing timeRangeToExtend property ([0456e24](https://github.com/IBM/carbon-charts/commit/0456e24))
218
+ - **config:** add additional property to control extension ([2da3404](https://github.com/IBM/carbon-charts/commit/2da3404))
219
+ - **configuration:** fix default baseBarChart options ([1a6dcef](https://github.com/IBM/carbon-charts/commit/1a6dcef))
149
220
 
221
+ # [0.26.0](https://github.com/IBM/carbon-charts/compare/v0.25.0...v0.26.0) (2020-01-16)
150
222
 
223
+ ### Features
151
224
 
225
+ - **core:** add event dispatches for mouseover, mousemove, click & mouseout for all graphs ([284012c](https://github.com/IBM/carbon-charts/commit/284012c))
152
226
 
227
+ # [0.25.0](https://github.com/IBM/carbon-charts/compare/v0.24.5...v0.25.0) (2020-01-10)
153
228
 
154
- ## [0.30.7](https://github.com/IBM/carbon-charts/compare/v0.30.6...v0.30.7) (2020-03-31)
229
+ **Note:** Version bump only for package @carbon/charts
155
230
 
231
+ ## [0.24.5](https://github.com/IBM/carbon-charts/compare/v0.24.4...v0.24.5) (2020-01-10)
156
232
 
157
233
  ### Bug Fixes
158
234
 
159
- * **core:** update import path carbon-components ([e9fca73](https://github.com/IBM/carbon-charts/commit/e9fca73cd3768b1b85247a2798908c26da99216b)), closes [#546](https://github.com/IBM/carbon-charts/issues/546)
160
-
235
+ - **core:** fix to allow chart to toggle on and off using attribute/css properties ([77e26af](https://github.com/IBM/carbon-charts/commit/77e26af))
161
236
 
237
+ ## [0.24.4](https://github.com/IBM/carbon-charts/compare/v0.24.3...v0.24.4) (2020-01-06)
162
238
 
239
+ ### Bug Fixes
163
240
 
241
+ - **demos:** add IBM Plex Sans Condensed to the core demo site ([1761a36](https://github.com/IBM/carbon-charts/commit/1761a36))
164
242
 
165
- ## [0.30.6](https://github.com/IBM/carbon-charts/compare/v0.30.5...v0.30.6) (2020-03-30)
243
+ ## [0.24.3](https://github.com/IBM/carbon-charts/compare/v0.24.2...v0.24.3) (2019-12-19)
166
244
 
167
245
  **Note:** Version bump only for package @carbon/charts
168
246
 
247
+ ## [0.24.2](https://github.com/IBM/carbon-charts/compare/v0.24.1...v0.24.2) (2019-12-19)
169
248
 
249
+ **Note:** Version bump only for package @carbon/charts
170
250
 
251
+ ## [0.24.1](https://github.com/IBM/carbon-charts/compare/v0.24.0...v0.24.1) (2019-12-18)
171
252
 
253
+ **Note:** Version bump only for package @carbon/charts
172
254
 
173
- ## [0.30.5](https://github.com/IBM/carbon-charts/compare/v0.30.4...v0.30.5) (2020-03-30)
255
+ # [0.24.0](https://github.com/IBM/carbon-charts/compare/v0.23.0...v0.24.0) (2019-12-17)
174
256
 
175
- **Note:** Version bump only for package @carbon/charts
257
+ ### Features
176
258
 
259
+ - **core, react, angular, vue:** add WAI-ARIA tags to elements ([1216ed6](https://github.com/IBM/carbon-charts/commit/1216ed6))
177
260
 
261
+ # [0.23.0](https://github.com/IBM/carbon-charts/compare/v0.22.4...v0.23.0) (2019-12-17)
178
262
 
263
+ ### Features
179
264
 
265
+ - **core:** add spacer components ([4e5ab5c](https://github.com/IBM/carbon-charts/commit/4e5ab5c))
180
266
 
181
- ## [0.30.4](https://github.com/IBM/carbon-charts/compare/v0.30.3...v0.30.4) (2020-03-27)
267
+ ## [0.22.4](https://github.com/IBM/carbon-charts/compare/v0.22.3...v0.22.4) (2019-12-16)
182
268
 
183
269
  **Note:** Version bump only for package @carbon/charts
184
270
 
271
+ ## [0.22.3](https://github.com/IBM/carbon-charts/compare/v0.22.2...v0.22.3) (2019-12-16)
185
272
 
273
+ ### Bug Fixes
186
274
 
275
+ - **core:** update tooltip value formatter ([2a978d8](https://github.com/IBM/carbon-charts/commit/2a978d8))
187
276
 
188
-
189
- ## [0.30.3](https://github.com/IBM/carbon-charts/compare/v0.30.2...v0.30.3) (2020-03-24)
277
+ ## [0.22.2](https://github.com/IBM/carbon-charts/compare/v0.22.1...v0.22.2) (2019-12-16)
190
278
 
191
279
  **Note:** Version bump only for package @carbon/charts
192
280
 
281
+ ## [0.22.1](https://github.com/IBM/carbon-charts/compare/v0.22.0...v0.22.1) (2019-12-12)
193
282
 
283
+ **Note:** Version bump only for package @carbon/charts
194
284
 
285
+ # [0.22.0](https://github.com/IBM/carbon-charts/compare/v0.21.0...v0.22.0) (2019-12-09)
195
286
 
287
+ ### Features
196
288
 
197
- ## [0.30.2](https://github.com/IBM/carbon-charts/compare/v0.30.1...v0.30.2) (2020-03-16)
289
+ - **core, angular, react, vue:** Update chart width & height through options ([f050c35](https://github.com/IBM/carbon-charts/commit/f050c35))
198
290
 
199
- **Note:** Version bump only for package @carbon/charts
291
+ # [0.21.0](https://github.com/IBM/carbon-charts/compare/v0.20.1...v0.21.0) (2019-12-09)
200
292
 
293
+ ### Features
201
294
 
295
+ - **core, angular, react, vue:** allow customizations to pie labels & the donut center number ([#427](https://github.com/IBM/carbon-charts/issues/427)) ([0446045](https://github.com/IBM/carbon-charts/commit/0446045))
202
296
 
297
+ ## [0.20.1](https://github.com/IBM/carbon-charts/compare/v0.20.0...v0.20.1) (2019-12-04)
203
298
 
299
+ ### Bug Fixes
204
300
 
205
- ## [0.30.1](https://github.com/IBM/carbon-charts/compare/v0.30.0...v0.30.1) (2020-03-13)
301
+ - **core:** loop also through non-display data to assign colors to datasets ([#394](https://github.com/IBM/carbon-charts/issues/394)) ([5ba8952](https://github.com/IBM/carbon-charts/commit/5ba8952))
206
302
 
207
- **Note:** Version bump only for package @carbon/charts
303
+ # [0.20.0](https://github.com/IBM/carbon-charts/compare/v0.19.0...v0.20.0) (2019-12-02)
208
304
 
305
+ ### Features
209
306
 
307
+ - **core:** add title truncation to tooltip ([bdd677c](https://github.com/IBM/carbon-charts/commit/bdd677c))
210
308
 
309
+ # [0.19.0](https://github.com/IBM/carbon-charts/compare/v0.18.0...v0.19.0) (2019-12-02)
211
310
 
311
+ ### Features
212
312
 
213
- # [0.30.0](https://github.com/IBM/carbon-charts/compare/v0.29.8...v0.30.0) (2020-03-11)
313
+ - **core:** export interfaces and configurations ([df7f557](https://github.com/IBM/carbon-charts/commit/df7f557))
214
314
 
315
+ # [0.18.0](https://github.com/IBM/carbon-charts/compare/v0.17.1...v0.18.0) (2019-12-02)
215
316
 
216
317
  ### Bug Fixes
217
318
 
218
- * **core:** fix default axes creation logic ([e4fb861](https://github.com/IBM/carbon-charts/commit/e4fb86185f04ff42cbe7dc003c05556586f6c518))
219
-
319
+ - **bar:** fix lint errors ([0d04b04](https://github.com/IBM/carbon-charts/commit/0d04b04))
320
+ - **tooltip:** rename defaultTooltip defaultHTML ([cf8f34e](https://github.com/IBM/carbon-charts/commit/cf8f34e))
220
321
 
221
322
  ### Features
222
323
 
223
- * **core:** Add configuration option to not include 0 on axes ([44d51de](https://github.com/IBM/carbon-charts/commit/44d51ded6af78d57a848d68e093fe69858405594))
224
- * **core:** Axes configuration options defaultable, Add option to not include 0 on axes ([03969c3](https://github.com/IBM/carbon-charts/commit/03969c319248064cf1c1ef6eb79ec534aa04c972))
324
+ - **bar:** pass default tooltip to customHTML tooltip ([b6f519b](https://github.com/IBM/carbon-charts/commit/b6f519b))
325
+ - **tooltip:** for customHTML pass along the HTML tooltip ([7d1a026](https://github.com/IBM/carbon-charts/commit/7d1a026))
326
+
327
+ ## [0.17.1](https://github.com/IBM/carbon-charts/compare/v0.17.0...v0.17.1) (2019-11-29)
328
+
329
+ ### Bug Fixes
225
330
 
331
+ - **core:** build optimizations ([fef77e5](https://github.com/IBM/carbon-charts/commit/fef77e5))
226
332
 
333
+ # [0.17.0](https://github.com/IBM/carbon-charts/compare/v0.16.25...v0.17.0) (2019-11-29)
227
334
 
335
+ ### Features
228
336
 
337
+ - **core:** date/time locale support + tick formatting ([bc02012](https://github.com/IBM/carbon-charts/commit/bc02012))
229
338
 
230
- ## [0.29.8](https://github.com/IBM/carbon-charts/compare/v0.29.7...v0.29.8) (2020-03-03)
339
+ ## [0.16.25](https://github.com/IBM/carbon-charts/compare/v0.16.24...v0.16.25) (2019-10-29)
231
340
 
232
- **Note:** Version bump only for package @carbon/charts
341
+ ### Bug Fixes
233
342
 
343
+ - **core:** update type to scaleType and backgroundColors to fillColors ([3ca0a0f](https://github.com/IBM/carbon-charts/commit/3ca0a0f))
234
344
 
345
+ ## [0.16.24](https://github.com/IBM/carbon-charts/compare/v0.16.23...v0.16.24) (2019-10-25)
235
346
 
347
+ ### Bug Fixes
236
348
 
349
+ - **core, react, angular, vue:** default width & height to 100%, and call setOptions on option change ([db251b4](https://github.com/IBM/carbon-charts/commit/db251b4))
237
350
 
238
- ## [0.29.7](https://github.com/IBM/carbon-charts/compare/v0.29.6...v0.29.7) (2020-02-28)
351
+ ## [0.16.23](https://github.com/IBM/carbon-charts/compare/v0.16.22...v0.16.23) (2019-10-25)
239
352
 
240
353
  **Note:** Version bump only for package @carbon/charts
241
354
 
355
+ ## [0.16.22](https://github.com/IBM/carbon-charts/compare/v0.16.21...v0.16.22) (2019-10-25)
242
356
 
357
+ **Note:** Version bump only for package @carbon/charts
243
358
 
359
+ ## [0.16.21](https://github.com/IBM/carbon-charts/compare/v0.16.20...v0.16.21) (2019-10-24)
244
360
 
361
+ ### Bug Fixes
245
362
 
246
- ## [0.29.6](https://github.com/IBM/carbon-charts/compare/v0.29.5...v0.29.6) (2020-02-25)
363
+ - **core:** update typescript version ([949379f](https://github.com/IBM/carbon-charts/commit/949379f))
247
364
 
248
- **Note:** Version bump only for package @carbon/charts
365
+ ## [0.16.20](https://github.com/IBM/carbon-charts/compare/v0.16.19...v0.16.20) (2019-10-24)
249
366
 
367
+ **Note:** Version bump only for package @carbon/charts
250
368
 
369
+ ## [0.16.19](https://github.com/IBM/carbon-charts/compare/v0.16.18...v0.16.19) (2019-10-24)
251
370
 
371
+ ### Bug Fixes
252
372
 
373
+ - **tooltip:** fix to be multiline instead of multitooltip ([0f90325](https://github.com/IBM/carbon-charts/commit/0f90325))
253
374
 
254
- ## [0.29.5](https://github.com/IBM/carbon-charts/compare/v0.29.4...v0.29.5) (2020-02-21)
375
+ ## [0.16.18](https://github.com/IBM/carbon-charts/compare/v0.16.17...v0.16.18) (2019-10-21)
255
376
 
256
377
  **Note:** Version bump only for package @carbon/charts
257
378
 
379
+ ## [0.16.17](https://github.com/IBM/carbon-charts/compare/v0.16.16...v0.16.17) (2019-10-10)
258
380
 
381
+ **Note:** Version bump only for package @carbon/charts
259
382
 
383
+ ## [0.16.16](https://github.com/IBM/carbon-charts/compare/v0.16.15...v0.16.16) (2019-10-10)
260
384
 
385
+ ### Bug Fixes
261
386
 
262
- ## [0.29.4](https://github.com/IBM/carbon-charts/compare/v0.29.3...v0.29.4) (2020-02-20)
263
-
387
+ - custom global object in UMD bundle generated by webpack ([a4d1e54](https://github.com/IBM/carbon-charts/commit/a4d1e54))
264
388
 
265
- ### Bug Fixes
389
+ ## [0.16.15](https://github.com/IBM/carbon-charts/compare/v0.16.14...v0.16.15) (2019-10-09)
266
390
 
267
- * **core:** Tools.getProperty did return 'null' for falsy values, now returns the actual values ([3b78c3a](https://github.com/IBM/carbon-charts/commit/3b78c3a27d4551e7d7b51f911ea2f7e0f155ef42))
391
+ **Note:** Version bump only for package @carbon/charts
268
392
 
393
+ ## [0.16.14](https://github.com/IBM/carbon-charts/compare/v0.16.13...v0.16.14) (2019-10-09)
269
394
 
395
+ **Note:** Version bump only for package @carbon/charts
270
396
 
397
+ ## [0.16.13](https://github.com/IBM/carbon-charts/compare/v0.16.12...v0.16.13) (2019-10-09)
271
398
 
399
+ **Note:** Version bump only for package @carbon/charts
272
400
 
273
- ## [0.29.3](https://github.com/IBM/carbon-charts/compare/v0.29.2...v0.29.3) (2020-02-20)
401
+ ## [0.16.12](https://github.com/IBM/carbon-charts/compare/v0.16.11...v0.16.12) (2019-10-09)
274
402
 
403
+ **Note:** Version bump only for package @carbon/charts
275
404
 
276
- ### Bug Fixes
405
+ ## [0.16.11](https://github.com/IBM/carbon-charts/compare/v0.16.10...v0.16.11) (2019-10-09)
277
406
 
278
- * **build:** fix bundle output for core ([4d3d6b4](https://github.com/IBM/carbon-charts/commit/4d3d6b450fe54b55479aeaffc3706b28d926fffa))
407
+ **Note:** Version bump only for package @carbon/charts
279
408
 
409
+ ## [0.16.10](https://github.com/IBM/carbon-charts/compare/v0.16.9...v0.16.10) (2019-10-08)
280
410
 
411
+ **Note:** Version bump only for package @carbon/charts
281
412
 
413
+ ## [0.16.9](https://github.com/IBM/carbon-charts/compare/v0.16.8...v0.16.9) (2019-10-07)
282
414
 
415
+ **Note:** Version bump only for package @carbon/charts
283
416
 
284
- ## [0.29.2](https://github.com/IBM/carbon-charts/compare/v0.29.1...v0.29.2) (2020-02-18)
417
+ ## [0.16.8](https://github.com/IBM/carbon-charts/compare/v0.16.7...v0.16.8) (2019-10-02)
285
418
 
286
419
  **Note:** Version bump only for package @carbon/charts
287
420
 
421
+ ## [0.16.7](https://github.com/IBM/carbon-charts/compare/v0.16.6...v0.16.7) (2019-09-30)
288
422
 
423
+ **Note:** Version bump only for package @carbon/charts
289
424
 
425
+ ## [0.16.6](https://github.com/IBM/carbon-charts/compare/v0.16.5...v0.16.6) (2019-09-30)
290
426
 
427
+ **Note:** Version bump only for package @carbon/charts
291
428
 
292
- ## [0.29.1](https://github.com/IBM/carbon-charts/compare/v0.29.0...v0.29.1) (2020-02-10)
429
+ ## [0.16.5](https://github.com/IBM/carbon-charts/compare/v0.16.4...v0.16.5) (2019-09-30)
293
430
 
294
431
  **Note:** Version bump only for package @carbon/charts
295
432
 
433
+ ## [0.16.4](https://github.com/IBM/carbon-charts/compare/v0.16.3...v0.16.4) (2019-09-12)
296
434
 
435
+ **Note:** Version bump only for package @carbon/charts
297
436
 
437
+ ## [0.16.3](https://github.com/IBM/carbon-charts/compare/v0.16.2...v0.16.3) (2019-09-11)
298
438
 
439
+ ### Bug Fixes
299
440
 
300
- # [0.29.0](https://github.com/IBM/carbon-charts/compare/v0.28.1...v0.29.0) (2020-02-07)
441
+ - **angular:** Fix angular SSR issues ([86aa9d3](https://github.com/IBM/carbon-charts/commit/86aa9d3))
301
442
 
443
+ ## [0.16.2](https://github.com/IBM/carbon-charts/compare/v0.16.1...v0.16.2) (2019-09-09)
302
444
 
303
445
  ### Bug Fixes
304
446
 
305
- * **bar:** tooltip to render bar should provide original datapoint ([ed04f98](https://github.com/IBM/carbon-charts/commit/ed04f98891a783d8d5bbc77f9dfdb8d1ed8a46b1))
306
- * **charts:** simplify the interface to match ([96da97b](https://github.com/IBM/carbon-charts/commit/96da97b59c2e22cb661b9297f1cb4ace9bb8ec9e))
307
- * **line:** remove console.logs ([5e0413f](https://github.com/IBM/carbon-charts/commit/5e0413f6c77ae17f74818c04ed2bdf82f386fa58))
308
- * **lint:** fix linting errors with format ([04cdefd](https://github.com/IBM/carbon-charts/commit/04cdefda021ef1dee948231e8713481b9439f287))
309
- * **scatter:** custom point colors demo ([f367f83](https://github.com/IBM/carbon-charts/commit/f367f8337df8b45811afbc3eee0a3a6d3b6f8bcc))
310
- * **scatter:** simplify the callback parameters ([c541e8a](https://github.com/IBM/carbon-charts/commit/c541e8a4a83d026bb5b9c28afe39f749064b3b24))
311
- * **styles:** don't import and use carbon themes in styles.scss ([1da8b3e](https://github.com/IBM/carbon-charts/commit/1da8b3e2ba770c06dc74fe2bf08393e3d6b6778c))
312
- * **tooltip:** need to pass the datum along with the tooltip calls ([3bd7bfc](https://github.com/IBM/carbon-charts/commit/3bd7bfc1d435cb4ba3636361cdbbfe16de10d9d5))
313
- * **tooltip:** stroke color should always be default ([b3b6812](https://github.com/IBM/carbon-charts/commit/b3b6812d9fac5964ae50053332840be8d1b7246f))
314
- * **tooltip:** use original line color in the tooltip ([f42d245](https://github.com/IBM/carbon-charts/commit/f42d2458bdd104898f79d1b7103bcd055bdb1cdf))
447
+ - **core, react:** fix react SSR & legend sizing issues ([abedba0](https://github.com/IBM/carbon-charts/commit/abedba0))
315
448
 
449
+ ## [0.16.1](https://github.com/IBM/carbon-charts/compare/v0.16.0...v0.16.1) (2019-09-06)
316
450
 
317
- ### Features
451
+ **Note:** Version bump only for package @carbon/charts
318
452
 
319
- * **core:** parse non JS date objects within the model ([a410fa4](https://github.com/IBM/carbon-charts/commit/a410fa415fb967ef0529495b300a0327cc4d474b))
320
- * **scatter:** add getIsFilled to model ([a160159](https://github.com/IBM/carbon-charts/commit/a160159ee0fa188ce174ef36f022ad44caf77aeb))
321
- * **scatter:** enhance custom stroke and fill colors ([64cfbb6](https://github.com/IBM/carbon-charts/commit/64cfbb657c6089ab75cf132f09a49d5da75d4c4f))
453
+ # [0.16.0](https://github.com/IBM/carbon-charts/compare/v0.15.8...v0.16.0) (2019-09-06)
322
454
 
455
+ ### Features
323
456
 
457
+ - **core:** Expand slice arcs in pie and donut on hover, and remove strokes ([ca5a467](https://github.com/IBM/carbon-charts/commit/ca5a467))
458
+ - **core:** support width & maxWidth values for bars ([a2e7120](https://github.com/IBM/carbon-charts/commit/a2e7120))
324
459
 
460
+ ## [0.15.8](https://github.com/IBM/carbon-charts/compare/v0.15.7...v0.15.8) (2019-08-24)
325
461
 
462
+ **Note:** Version bump only for package @carbon/charts
326
463
 
327
- ## [0.28.1](https://github.com/IBM/carbon-charts/compare/v0.28.0...v0.28.1) (2020-01-30)
464
+ ## [0.15.7](https://github.com/IBM/carbon-charts/compare/v0.15.6...v0.15.7) (2019-08-22)
328
465
 
329
466
  **Note:** Version bump only for package @carbon/charts
330
467
 
468
+ ## [0.15.6](https://github.com/IBM/carbon-charts/compare/v0.15.5...v0.15.6) (2019-08-19)
331
469
 
470
+ **Note:** Version bump only for package @carbon/charts
332
471
 
472
+ ## [0.15.5](https://github.com/IBM/carbon-charts/compare/v0.15.4...v0.15.5) (2019-08-19)
333
473
 
474
+ **Note:** Version bump only for package @carbon/charts
334
475
 
335
- # [0.28.0](https://github.com/IBM/carbon-charts/compare/v0.27.0...v0.28.0) (2020-01-21)
336
-
476
+ ## [0.15.4](https://github.com/IBM/carbon-charts/compare/v0.15.3...v0.15.4) (2019-08-16)
337
477
 
338
- ### Features
478
+ ### Bug Fixes
339
479
 
340
- * **core:** add support for horizontal bar charts ([#415](https://github.com/IBM/carbon-charts/issues/415)) ([6a480f0](https://github.com/IBM/carbon-charts/commit/6a480f0))
480
+ - **core:** fix resize grid backdrop ([8e1211e](https://github.com/IBM/carbon-charts/commit/8e1211e))
341
481
 
482
+ ## [0.15.3](https://github.com/IBM/carbon-charts/compare/v0.15.2...v0.15.3) (2019-08-16)
342
483
 
484
+ **Note:** Version bump only for package @carbon/charts
343
485
 
486
+ ## [0.15.2](https://github.com/IBM/carbon-charts/compare/v0.15.1...v0.15.2) (2019-08-12)
344
487
 
488
+ ### Bug Fixes
345
489
 
346
- # [0.27.0](https://github.com/IBM/carbon-charts/compare/v0.26.1...v0.27.0) (2020-01-20)
490
+ - **core:** fix for better backdrop resizing on axis grids ([6a12a60](https://github.com/IBM/carbon-charts/commit/6a12a60))
347
491
 
492
+ ## [0.15.1](https://github.com/IBM/carbon-charts/compare/v0.15.0...v0.15.1) (2019-07-17)
348
493
 
349
494
  ### Bug Fixes
350
495
 
351
- * **chart:** update isLegendEnabled instead of isEnabled ([d413a8c](https://github.com/IBM/carbon-charts/commit/d413a8c))
352
- * **enabled:** rename visible to enabled ([ac4862f](https://github.com/IBM/carbon-charts/commit/ac4862f))
353
- * **lint:** whitespace tslint issue ([53216f5](https://github.com/IBM/carbon-charts/commit/53216f5))
496
+ - **core:** backdrop resize with chart ([bbc288d](https://github.com/IBM/carbon-charts/commit/bbc288d))
354
497
 
498
+ # [0.15.0](https://github.com/IBM/carbon-charts/compare/v0.14.1...v0.15.0) (2019-07-17)
355
499
 
356
500
  ### Features
357
501
 
358
- * **chart:** legend.visible = false to hide the legend ([6461128](https://github.com/IBM/carbon-charts/commit/6461128))
502
+ - **core:** adding carbon themes ([a31fbcf](https://github.com/IBM/carbon-charts/commit/a31fbcf))
359
503
 
504
+ ## [0.14.1](https://github.com/IBM/carbon-charts/compare/v0.14.0...v0.14.1) (2019-07-11)
360
505
 
506
+ **Note:** Version bump only for package @carbon/charts
361
507
 
508
+ # [0.14.0](https://github.com/IBM/carbon-charts/compare/v0.13.0...v0.14.0) (2019-07-10)
362
509
 
510
+ **Note:** Version bump only for package @carbon/charts
363
511
 
364
- ## [0.26.1](https://github.com/IBM/carbon-charts/compare/v0.26.0...v0.26.1) (2020-01-20)
512
+ # [0.13.0](https://github.com/IBM/carbon-charts/compare/v0.12.5...v0.13.0) (2019-07-08)
365
513
 
514
+ ### Features
366
515
 
367
- ### Bug Fixes
516
+ - **core:** addition of titles within svg chart ([56380bb](https://github.com/IBM/carbon-charts/commit/56380bb))
368
517
 
369
- * **axis:** better support small time scales ([8cfa595](https://github.com/IBM/carbon-charts/commit/8cfa595))
370
- * **axis:** fix lint issue ([debeed9](https://github.com/IBM/carbon-charts/commit/debeed9))
371
- * **axis:** fix linting errors ([f810d4a](https://github.com/IBM/carbon-charts/commit/f810d4a))
372
- * **axis:** remove confusing timeRangeToExtend property ([0456e24](https://github.com/IBM/carbon-charts/commit/0456e24))
373
- * **config:** add additional property to control extension ([2da3404](https://github.com/IBM/carbon-charts/commit/2da3404))
374
- * **configuration:** fix default baseBarChart options ([1a6dcef](https://github.com/IBM/carbon-charts/commit/1a6dcef))
518
+ ## [0.12.5](https://github.com/IBM/carbon-charts/compare/v0.12.4...v0.12.5) (2019-07-04)
375
519
 
520
+ **Note:** Version bump only for package @carbon/charts
376
521
 
522
+ ## [0.12.4](https://github.com/IBM/carbon-charts/compare/v0.12.3...v0.12.4) (2019-06-26)
377
523
 
524
+ ### Bug Fixes
378
525
 
526
+ - **react core:** change main bundle to umd in core, and update imports in react ([df9c7c3](https://github.com/IBM/carbon-charts/commit/df9c7c3))
379
527
 
380
- # [0.26.0](https://github.com/IBM/carbon-charts/compare/v0.25.0...v0.26.0) (2020-01-16)
528
+ ## [0.12.3](https://github.com/IBM/carbon-charts/compare/v0.12.2...v0.12.3) (2019-06-26)
381
529
 
530
+ **Note:** Version bump only for package @carbon/charts
382
531
 
383
- ### Features
532
+ ## [0.12.2](https://github.com/IBM/carbon-charts/compare/v0.12.1...v0.12.2) (2019-06-07)
384
533
 
385
- * **core:** add event dispatches for mouseover, mousemove, click & mouseout for all graphs ([284012c](https://github.com/IBM/carbon-charts/commit/284012c))
534
+ **Note:** Version bump only for package @carbon/charts
386
535
 
536
+ ## [0.12.1](https://github.com/IBM/carbon-charts/compare/v0.12.0...v0.12.1) (2019-06-06)
387
537
 
538
+ **Note:** Version bump only for package @carbon/charts
388
539
 
540
+ # [0.12.0](https://github.com/IBM/carbon-charts/compare/v0.11.15...v0.12.0) (2019-05-09)
389
541
 
542
+ ### Features
390
543
 
391
- # [0.25.0](https://github.com/IBM/carbon-charts/compare/v0.24.5...v0.25.0) (2020-01-10)
544
+ - **core:** Colors, themes & more design updates ([#261](https://github.com/IBM/carbon-charts/issues/261)) ([b0b9070](https://github.com/IBM/carbon-charts/commit/b0b9070))
545
+ - **feat(core:** Color palettes): ([edcf601](https://github.com/IBM/carbon-charts/commit/edcf601))
392
546
 
393
- **Note:** Version bump only for package @carbon/charts
547
+ ## [0.11.15](https://github.com/IBM/carbon-charts/compare/v0.11.14...v0.11.15) (2019-05-07)
394
548
 
549
+ ### Bug Fixes
395
550
 
551
+ - **core:** Fix tooltip positioning ([dd17048](https://github.com/IBM/carbon-charts/commit/dd17048))
396
552
 
397
-
398
-
399
- ## [0.24.5](https://github.com/IBM/carbon-charts/compare/v0.24.4...v0.24.5) (2020-01-10)
400
-
401
-
402
- ### Bug Fixes
403
-
404
- * **core:** fix to allow chart to toggle on and off using attribute/css properties ([77e26af](https://github.com/IBM/carbon-charts/commit/77e26af))
405
-
406
-
407
-
408
-
409
-
410
- ## [0.24.4](https://github.com/IBM/carbon-charts/compare/v0.24.3...v0.24.4) (2020-01-06)
411
-
412
-
413
- ### Bug Fixes
414
-
415
- * **demos:** add IBM Plex Sans Condensed to the core demo site ([1761a36](https://github.com/IBM/carbon-charts/commit/1761a36))
416
-
417
-
418
-
419
-
420
-
421
- ## [0.24.3](https://github.com/IBM/carbon-charts/compare/v0.24.2...v0.24.3) (2019-12-19)
422
-
423
- **Note:** Version bump only for package @carbon/charts
424
-
425
-
426
-
427
-
428
-
429
- ## [0.24.2](https://github.com/IBM/carbon-charts/compare/v0.24.1...v0.24.2) (2019-12-19)
430
-
431
- **Note:** Version bump only for package @carbon/charts
432
-
433
-
434
-
435
-
436
-
437
- ## [0.24.1](https://github.com/IBM/carbon-charts/compare/v0.24.0...v0.24.1) (2019-12-18)
438
-
439
- **Note:** Version bump only for package @carbon/charts
440
-
441
-
442
-
443
-
444
-
445
- # [0.24.0](https://github.com/IBM/carbon-charts/compare/v0.23.0...v0.24.0) (2019-12-17)
446
-
447
-
448
- ### Features
449
-
450
- * **core, react, angular, vue:** add WAI-ARIA tags to elements ([1216ed6](https://github.com/IBM/carbon-charts/commit/1216ed6))
451
-
452
-
453
-
454
-
455
-
456
- # [0.23.0](https://github.com/IBM/carbon-charts/compare/v0.22.4...v0.23.0) (2019-12-17)
457
-
458
-
459
- ### Features
460
-
461
- * **core:** add spacer components ([4e5ab5c](https://github.com/IBM/carbon-charts/commit/4e5ab5c))
462
-
463
-
464
-
465
-
466
-
467
- ## [0.22.4](https://github.com/IBM/carbon-charts/compare/v0.22.3...v0.22.4) (2019-12-16)
468
-
469
- **Note:** Version bump only for package @carbon/charts
470
-
471
-
472
-
473
-
474
-
475
- ## [0.22.3](https://github.com/IBM/carbon-charts/compare/v0.22.2...v0.22.3) (2019-12-16)
476
-
477
-
478
- ### Bug Fixes
479
-
480
- * **core:** update tooltip value formatter ([2a978d8](https://github.com/IBM/carbon-charts/commit/2a978d8))
481
-
482
-
483
-
484
-
485
-
486
- ## [0.22.2](https://github.com/IBM/carbon-charts/compare/v0.22.1...v0.22.2) (2019-12-16)
487
-
488
- **Note:** Version bump only for package @carbon/charts
489
-
490
-
491
-
492
-
493
-
494
- ## [0.22.1](https://github.com/IBM/carbon-charts/compare/v0.22.0...v0.22.1) (2019-12-12)
495
-
496
- **Note:** Version bump only for package @carbon/charts
497
-
498
-
499
-
500
-
501
-
502
- # [0.22.0](https://github.com/IBM/carbon-charts/compare/v0.21.0...v0.22.0) (2019-12-09)
503
-
504
-
505
- ### Features
506
-
507
- * **core, angular, react, vue:** Update chart width & height through options ([f050c35](https://github.com/IBM/carbon-charts/commit/f050c35))
508
-
509
-
510
-
511
-
512
-
513
- # [0.21.0](https://github.com/IBM/carbon-charts/compare/v0.20.1...v0.21.0) (2019-12-09)
514
-
515
-
516
- ### Features
517
-
518
- * **core, angular, react, vue:** allow customizations to pie labels & the donut center number ([#427](https://github.com/IBM/carbon-charts/issues/427)) ([0446045](https://github.com/IBM/carbon-charts/commit/0446045))
519
-
520
-
521
-
522
-
523
-
524
- ## [0.20.1](https://github.com/IBM/carbon-charts/compare/v0.20.0...v0.20.1) (2019-12-04)
525
-
526
-
527
- ### Bug Fixes
528
-
529
- * **core:** loop also through non-display data to assign colors to datasets ([#394](https://github.com/IBM/carbon-charts/issues/394)) ([5ba8952](https://github.com/IBM/carbon-charts/commit/5ba8952))
530
-
531
-
532
-
533
-
534
-
535
- # [0.20.0](https://github.com/IBM/carbon-charts/compare/v0.19.0...v0.20.0) (2019-12-02)
536
-
537
-
538
- ### Features
539
-
540
- * **core:** add title truncation to tooltip ([bdd677c](https://github.com/IBM/carbon-charts/commit/bdd677c))
541
-
542
-
543
-
544
-
545
-
546
- # [0.19.0](https://github.com/IBM/carbon-charts/compare/v0.18.0...v0.19.0) (2019-12-02)
547
-
548
-
549
- ### Features
550
-
551
- * **core:** export interfaces and configurations ([df7f557](https://github.com/IBM/carbon-charts/commit/df7f557))
552
-
553
-
554
-
555
-
556
-
557
- # [0.18.0](https://github.com/IBM/carbon-charts/compare/v0.17.1...v0.18.0) (2019-12-02)
558
-
559
-
560
- ### Bug Fixes
561
-
562
- * **bar:** fix lint errors ([0d04b04](https://github.com/IBM/carbon-charts/commit/0d04b04))
563
- * **tooltip:** rename defaultTooltip defaultHTML ([cf8f34e](https://github.com/IBM/carbon-charts/commit/cf8f34e))
564
-
565
-
566
- ### Features
567
-
568
- * **bar:** pass default tooltip to customHTML tooltip ([b6f519b](https://github.com/IBM/carbon-charts/commit/b6f519b))
569
- * **tooltip:** for customHTML pass along the HTML tooltip ([7d1a026](https://github.com/IBM/carbon-charts/commit/7d1a026))
570
-
571
-
572
-
573
-
574
-
575
- ## [0.17.1](https://github.com/IBM/carbon-charts/compare/v0.17.0...v0.17.1) (2019-11-29)
576
-
577
-
578
- ### Bug Fixes
579
-
580
- * **core:** build optimizations ([fef77e5](https://github.com/IBM/carbon-charts/commit/fef77e5))
581
-
582
-
583
-
584
-
585
-
586
- # [0.17.0](https://github.com/IBM/carbon-charts/compare/v0.16.25...v0.17.0) (2019-11-29)
587
-
588
-
589
- ### Features
590
-
591
- * **core:** date/time locale support + tick formatting ([bc02012](https://github.com/IBM/carbon-charts/commit/bc02012))
592
-
593
-
594
-
595
-
596
-
597
- ## [0.16.25](https://github.com/IBM/carbon-charts/compare/v0.16.24...v0.16.25) (2019-10-29)
598
-
599
-
600
- ### Bug Fixes
601
-
602
- * **core:** update type to scaleType and backgroundColors to fillColors ([3ca0a0f](https://github.com/IBM/carbon-charts/commit/3ca0a0f))
603
-
604
-
605
-
606
-
607
-
608
- ## [0.16.24](https://github.com/IBM/carbon-charts/compare/v0.16.23...v0.16.24) (2019-10-25)
609
-
610
-
611
- ### Bug Fixes
612
-
613
- * **core, react, angular, vue:** default width & height to 100%, and call setOptions on option change ([db251b4](https://github.com/IBM/carbon-charts/commit/db251b4))
614
-
615
-
616
-
617
-
618
-
619
- ## [0.16.23](https://github.com/IBM/carbon-charts/compare/v0.16.22...v0.16.23) (2019-10-25)
620
-
621
- **Note:** Version bump only for package @carbon/charts
622
-
623
-
624
-
625
-
626
-
627
- ## [0.16.22](https://github.com/IBM/carbon-charts/compare/v0.16.21...v0.16.22) (2019-10-25)
628
-
629
- **Note:** Version bump only for package @carbon/charts
630
-
631
-
632
-
633
-
634
-
635
- ## [0.16.21](https://github.com/IBM/carbon-charts/compare/v0.16.20...v0.16.21) (2019-10-24)
636
-
637
-
638
- ### Bug Fixes
639
-
640
- * **core:** update typescript version ([949379f](https://github.com/IBM/carbon-charts/commit/949379f))
641
-
642
-
643
-
644
-
645
-
646
- ## [0.16.20](https://github.com/IBM/carbon-charts/compare/v0.16.19...v0.16.20) (2019-10-24)
647
-
648
- **Note:** Version bump only for package @carbon/charts
649
-
650
-
651
-
652
-
653
-
654
- ## [0.16.19](https://github.com/IBM/carbon-charts/compare/v0.16.18...v0.16.19) (2019-10-24)
655
-
656
-
657
- ### Bug Fixes
658
-
659
- * **tooltip:** fix to be multiline instead of multitooltip ([0f90325](https://github.com/IBM/carbon-charts/commit/0f90325))
660
-
661
-
662
-
663
-
664
-
665
- ## [0.16.18](https://github.com/IBM/carbon-charts/compare/v0.16.17...v0.16.18) (2019-10-21)
666
-
667
- **Note:** Version bump only for package @carbon/charts
668
-
669
-
670
-
671
-
672
-
673
- ## [0.16.17](https://github.com/IBM/carbon-charts/compare/v0.16.16...v0.16.17) (2019-10-10)
674
-
675
- **Note:** Version bump only for package @carbon/charts
676
-
677
-
678
-
679
-
680
-
681
- ## [0.16.16](https://github.com/IBM/carbon-charts/compare/v0.16.15...v0.16.16) (2019-10-10)
682
-
683
-
684
- ### Bug Fixes
685
-
686
- * custom global object in UMD bundle generated by webpack ([a4d1e54](https://github.com/IBM/carbon-charts/commit/a4d1e54))
687
-
688
-
689
-
690
-
691
-
692
- ## [0.16.15](https://github.com/IBM/carbon-charts/compare/v0.16.14...v0.16.15) (2019-10-09)
693
-
694
- **Note:** Version bump only for package @carbon/charts
695
-
696
-
697
-
698
-
699
-
700
- ## [0.16.14](https://github.com/IBM/carbon-charts/compare/v0.16.13...v0.16.14) (2019-10-09)
701
-
702
- **Note:** Version bump only for package @carbon/charts
703
-
704
-
705
-
706
-
707
-
708
- ## [0.16.13](https://github.com/IBM/carbon-charts/compare/v0.16.12...v0.16.13) (2019-10-09)
709
-
710
- **Note:** Version bump only for package @carbon/charts
711
-
712
-
713
-
714
-
715
-
716
- ## [0.16.12](https://github.com/IBM/carbon-charts/compare/v0.16.11...v0.16.12) (2019-10-09)
717
-
718
- **Note:** Version bump only for package @carbon/charts
719
-
720
-
721
-
722
-
723
-
724
- ## [0.16.11](https://github.com/IBM/carbon-charts/compare/v0.16.10...v0.16.11) (2019-10-09)
725
-
726
- **Note:** Version bump only for package @carbon/charts
727
-
728
-
729
-
730
-
731
-
732
- ## [0.16.10](https://github.com/IBM/carbon-charts/compare/v0.16.9...v0.16.10) (2019-10-08)
733
-
734
- **Note:** Version bump only for package @carbon/charts
735
-
736
-
737
-
738
-
739
-
740
- ## [0.16.9](https://github.com/IBM/carbon-charts/compare/v0.16.8...v0.16.9) (2019-10-07)
741
-
742
- **Note:** Version bump only for package @carbon/charts
743
-
744
-
745
-
746
-
747
-
748
- ## [0.16.8](https://github.com/IBM/carbon-charts/compare/v0.16.7...v0.16.8) (2019-10-02)
749
-
750
- **Note:** Version bump only for package @carbon/charts
751
-
752
-
753
-
754
-
755
-
756
- ## [0.16.7](https://github.com/IBM/carbon-charts/compare/v0.16.6...v0.16.7) (2019-09-30)
757
-
758
- **Note:** Version bump only for package @carbon/charts
759
-
760
-
761
-
762
-
763
-
764
- ## [0.16.6](https://github.com/IBM/carbon-charts/compare/v0.16.5...v0.16.6) (2019-09-30)
765
-
766
- **Note:** Version bump only for package @carbon/charts
767
-
768
-
769
-
770
-
771
-
772
- ## [0.16.5](https://github.com/IBM/carbon-charts/compare/v0.16.4...v0.16.5) (2019-09-30)
773
-
774
- **Note:** Version bump only for package @carbon/charts
775
-
776
-
777
-
778
-
779
-
780
- ## [0.16.4](https://github.com/IBM/carbon-charts/compare/v0.16.3...v0.16.4) (2019-09-12)
781
-
782
- **Note:** Version bump only for package @carbon/charts
783
-
784
-
785
-
786
-
787
-
788
- ## [0.16.3](https://github.com/IBM/carbon-charts/compare/v0.16.2...v0.16.3) (2019-09-11)
789
-
790
-
791
- ### Bug Fixes
792
-
793
- * **angular:** Fix angular SSR issues ([86aa9d3](https://github.com/IBM/carbon-charts/commit/86aa9d3))
794
-
795
-
796
-
797
-
798
-
799
- ## [0.16.2](https://github.com/IBM/carbon-charts/compare/v0.16.1...v0.16.2) (2019-09-09)
800
-
801
-
802
- ### Bug Fixes
803
-
804
- * **core, react:** fix react SSR & legend sizing issues ([abedba0](https://github.com/IBM/carbon-charts/commit/abedba0))
805
-
806
-
807
-
808
-
809
-
810
- ## [0.16.1](https://github.com/IBM/carbon-charts/compare/v0.16.0...v0.16.1) (2019-09-06)
811
-
812
- **Note:** Version bump only for package @carbon/charts
813
-
814
-
815
-
816
-
817
-
818
- # [0.16.0](https://github.com/IBM/carbon-charts/compare/v0.15.8...v0.16.0) (2019-09-06)
819
-
820
-
821
- ### Features
822
-
823
- * **core:** Expand slice arcs in pie and donut on hover, and remove strokes ([ca5a467](https://github.com/IBM/carbon-charts/commit/ca5a467))
824
- * **core:** support width & maxWidth values for bars ([a2e7120](https://github.com/IBM/carbon-charts/commit/a2e7120))
825
-
826
-
827
-
828
-
829
-
830
- ## [0.15.8](https://github.com/IBM/carbon-charts/compare/v0.15.7...v0.15.8) (2019-08-24)
831
-
832
- **Note:** Version bump only for package @carbon/charts
833
-
834
-
835
-
836
-
837
-
838
- ## [0.15.7](https://github.com/IBM/carbon-charts/compare/v0.15.6...v0.15.7) (2019-08-22)
839
-
840
- **Note:** Version bump only for package @carbon/charts
841
-
842
-
843
-
844
-
845
-
846
- ## [0.15.6](https://github.com/IBM/carbon-charts/compare/v0.15.5...v0.15.6) (2019-08-19)
847
-
848
- **Note:** Version bump only for package @carbon/charts
849
-
850
-
851
-
852
-
853
-
854
- ## [0.15.5](https://github.com/IBM/carbon-charts/compare/v0.15.4...v0.15.5) (2019-08-19)
855
-
856
- **Note:** Version bump only for package @carbon/charts
857
-
858
-
859
-
860
-
861
-
862
- ## [0.15.4](https://github.com/IBM/carbon-charts/compare/v0.15.3...v0.15.4) (2019-08-16)
863
-
864
-
865
- ### Bug Fixes
866
-
867
- * **core:** fix resize grid backdrop ([8e1211e](https://github.com/IBM/carbon-charts/commit/8e1211e))
868
-
869
-
870
-
871
-
872
-
873
- ## [0.15.3](https://github.com/IBM/carbon-charts/compare/v0.15.2...v0.15.3) (2019-08-16)
874
-
875
- **Note:** Version bump only for package @carbon/charts
876
-
877
-
878
-
879
-
880
-
881
- ## [0.15.2](https://github.com/IBM/carbon-charts/compare/v0.15.1...v0.15.2) (2019-08-12)
882
-
883
-
884
- ### Bug Fixes
885
-
886
- * **core:** fix for better backdrop resizing on axis grids ([6a12a60](https://github.com/IBM/carbon-charts/commit/6a12a60))
887
-
888
-
889
-
890
-
891
-
892
- ## [0.15.1](https://github.com/IBM/carbon-charts/compare/v0.15.0...v0.15.1) (2019-07-17)
893
-
894
-
895
- ### Bug Fixes
896
-
897
- * **core:** backdrop resize with chart ([bbc288d](https://github.com/IBM/carbon-charts/commit/bbc288d))
898
-
899
-
900
-
901
-
902
-
903
- # [0.15.0](https://github.com/IBM/carbon-charts/compare/v0.14.1...v0.15.0) (2019-07-17)
904
-
905
-
906
- ### Features
907
-
908
- * **core:** adding carbon themes ([a31fbcf](https://github.com/IBM/carbon-charts/commit/a31fbcf))
909
-
910
-
911
-
912
-
913
-
914
- ## [0.14.1](https://github.com/IBM/carbon-charts/compare/v0.14.0...v0.14.1) (2019-07-11)
915
-
916
- **Note:** Version bump only for package @carbon/charts
917
-
918
-
919
-
920
-
921
-
922
- # [0.14.0](https://github.com/IBM/carbon-charts/compare/v0.13.0...v0.14.0) (2019-07-10)
923
-
924
- **Note:** Version bump only for package @carbon/charts
925
-
926
-
927
-
928
-
929
-
930
- # [0.13.0](https://github.com/IBM/carbon-charts/compare/v0.12.5...v0.13.0) (2019-07-08)
931
-
932
-
933
- ### Features
934
-
935
- * **core:** addition of titles within svg chart ([56380bb](https://github.com/IBM/carbon-charts/commit/56380bb))
936
-
937
-
938
-
939
-
940
-
941
- ## [0.12.5](https://github.com/IBM/carbon-charts/compare/v0.12.4...v0.12.5) (2019-07-04)
942
-
943
- **Note:** Version bump only for package @carbon/charts
944
-
945
-
946
-
947
-
948
-
949
- ## [0.12.4](https://github.com/IBM/carbon-charts/compare/v0.12.3...v0.12.4) (2019-06-26)
950
-
951
-
952
- ### Bug Fixes
953
-
954
- * **react core:** change main bundle to umd in core, and update imports in react ([df9c7c3](https://github.com/IBM/carbon-charts/commit/df9c7c3))
955
-
956
-
957
-
958
-
959
-
960
- ## [0.12.3](https://github.com/IBM/carbon-charts/compare/v0.12.2...v0.12.3) (2019-06-26)
961
-
962
- **Note:** Version bump only for package @carbon/charts
963
-
964
-
965
-
966
-
967
-
968
- ## [0.12.2](https://github.com/IBM/carbon-charts/compare/v0.12.1...v0.12.2) (2019-06-07)
969
-
970
- **Note:** Version bump only for package @carbon/charts
971
-
972
-
973
-
974
-
975
-
976
- ## [0.12.1](https://github.com/IBM/carbon-charts/compare/v0.12.0...v0.12.1) (2019-06-06)
977
-
978
- **Note:** Version bump only for package @carbon/charts
979
-
980
-
981
-
982
-
983
-
984
- # [0.12.0](https://github.com/IBM/carbon-charts/compare/v0.11.15...v0.12.0) (2019-05-09)
985
-
986
-
987
- ### Features
988
-
989
- * **core:** Colors, themes & more design updates ([#261](https://github.com/IBM/carbon-charts/issues/261)) ([b0b9070](https://github.com/IBM/carbon-charts/commit/b0b9070))
990
- * **feat(core:** Color palettes): ([edcf601](https://github.com/IBM/carbon-charts/commit/edcf601))
991
-
992
-
993
-
994
-
995
-
996
- ## [0.11.15](https://github.com/IBM/carbon-charts/compare/v0.11.14...v0.11.15) (2019-05-07)
997
-
998
-
999
- ### Bug Fixes
1000
-
1001
- * **core:** Fix tooltip positioning ([dd17048](https://github.com/IBM/carbon-charts/commit/dd17048))
1002
-
1003
-
1004
-
1005
-
1006
-
1007
- ## [0.11.14](https://github.com/IBM/carbon-charts/compare/v0.11.12...v0.11.14) (2019-05-06)
1008
-
553
+ ## [0.11.14](https://github.com/IBM/carbon-charts/compare/v0.11.12...v0.11.14) (2019-05-06)
1009
554
 
1010
555
  ### Bug Fixes
1011
556
 
1012
- * **core:** Show empty state for when there is no data ([b5db127](https://github.com/IBM/carbon-charts/commit/b5db127))
1013
-
1014
-
1015
-
1016
-
557
+ - **core:** Show empty state for when there is no data ([b5db127](https://github.com/IBM/carbon-charts/commit/b5db127))
1017
558
 
1018
559
  ## [0.11.13](https://github.com/IBM/carbon-charts/compare/v0.11.12...v0.11.13) (2019-04-30)
1019
560
 
1020
-
1021
561
  ### Bug Fixes
1022
562
 
1023
- * **core:** Show empty state for when there is no data ([b5db127](https://github.com/IBM/carbon-charts/commit/b5db127))
1024
-
1025
-
1026
-
1027
-
563
+ - **core:** Show empty state for when there is no data ([b5db127](https://github.com/IBM/carbon-charts/commit/b5db127))
1028
564
 
1029
565
  ## [0.11.12](https://github.com/IBM/carbon-charts/compare/v0.11.11...v0.11.12) (2019-04-22)
1030
566
 
1031
567
  **Note:** Version bump only for package @carbon/charts
1032
568
 
1033
-
1034
-
1035
-
1036
-
1037
569
  ## [0.11.11](https://github.com/IBM/carbon-charts/compare/v0.11.10...v0.11.11) (2019-04-15)
1038
570
 
1039
571
  **Note:** Version bump only for package @carbon/charts
1040
572
 
1041
-
1042
-
1043
-
1044
-
1045
573
  ## [0.11.10](https://github.com/IBM/carbon-charts/compare/v0.11.9...v0.11.10) (2019-04-02)
1046
574
 
1047
575
  **Note:** Version bump only for package @carbon/charts
1048
576
 
1049
-
1050
-
1051
-
1052
-
1053
577
  ## [0.11.9](https://github.com/IBM/carbon-charts/compare/v0.11.8...v0.11.9) (2019-03-28)
1054
578
 
1055
579
  **Note:** Version bump only for package @carbon/charts
1056
580
 
1057
-
1058
-
1059
-
1060
-
1061
- ## [0.11.8](https://github.com/IBM/carbon-charts/compare/v0.11.7...v0.11.8) (2019-03-26)
1062
-
1063
-
1064
- ### Bug Fixes
1065
-
1066
- * **core:** add babel-polyfill as a hard dependency ([#230](https://github.com/IBM/carbon-charts/issues/230)) ([d3e8c0c](https://github.com/IBM/carbon-charts/commit/d3e8c0c))
1067
-
1068
-
1069
-
1070
-
1071
-
1072
- ## [0.11.7](https://github.com/IBM/carbon-charts/compare/v0.11.6...v0.11.7) (2019-03-26)
1073
-
1074
-
1075
- ### Bug Fixes
1076
-
1077
- * **core:** remove suffixes to use regular module resolution, and force publish all packages with every release ([#229](https://github.com/IBM/carbon-charts/issues/229)) ([2e33ca6](https://github.com/IBM/carbon-charts/commit/2e33ca6))
1078
-
1079
-
1080
-
1081
-
1082
-
1083
- ## [0.11.6](https://github.com/IBM/carbon-charts/compare/v0.11.5...v0.11.6) (2019-03-26)
1084
-
581
+ ## [0.11.8](https://github.com/IBM/carbon-charts/compare/v0.11.7...v0.11.8) (2019-03-26)
1085
582
 
1086
583
  ### Bug Fixes
1087
584
 
1088
- * **core:** export patterns as strings of svgs ([#227](https://github.com/IBM/carbon-charts/issues/227)) ([14391ae](https://github.com/IBM/carbon-charts/commit/14391ae))
1089
-
1090
-
585
+ - **core:** add babel-polyfill as a hard dependency ([#230](https://github.com/IBM/carbon-charts/issues/230)) ([d3e8c0c](https://github.com/IBM/carbon-charts/commit/d3e8c0c))
1091
586
 
587
+ ## [0.11.7](https://github.com/IBM/carbon-charts/compare/v0.11.6...v0.11.7) (2019-03-26)
1092
588
 
589
+ ### Bug Fixes
1093
590
 
1094
- ## [0.11.5](https://github.com/IBM/carbon-charts/compare/v0.11.4...v0.11.5) (2019-03-26)
591
+ - **core:** remove suffixes to use regular module resolution, and force publish all packages with every release ([#229](https://github.com/IBM/carbon-charts/issues/229)) ([2e33ca6](https://github.com/IBM/carbon-charts/commit/2e33ca6))
1095
592
 
593
+ ## [0.11.6](https://github.com/IBM/carbon-charts/compare/v0.11.5...v0.11.6) (2019-03-26)
1096
594
 
1097
595
  ### Bug Fixes
1098
596
 
1099
- * **build:** refactor deploy and update package.jsons ([#223](https://github.com/IBM/carbon-charts/issues/223)) ([fb512cb](https://github.com/IBM/carbon-charts/commit/fb512cb))
1100
-
597
+ - **core:** export patterns as strings of svgs ([#227](https://github.com/IBM/carbon-charts/issues/227)) ([14391ae](https://github.com/IBM/carbon-charts/commit/14391ae))
1101
598
 
599
+ ## [0.11.5](https://github.com/IBM/carbon-charts/compare/v0.11.4...v0.11.5) (2019-03-26)
1102
600
 
601
+ ### Bug Fixes
1103
602
 
603
+ - **build:** refactor deploy and update package.jsons ([#223](https://github.com/IBM/carbon-charts/issues/223)) ([fb512cb](https://github.com/IBM/carbon-charts/commit/fb512cb))
1104
604
 
1105
605
  ## [0.11.4](https://github.com/IBM/carbon-charts/compare/v0.11.3...v0.11.4) (2019-03-25)
1106
606
 
1107
607
  **Note:** Version bump only for package @carbon/charts
1108
608
 
1109
-
1110
-
1111
-
1112
-
1113
609
  # [0.11.0](https://github.com/IBM/carbon-charts/compare/v0.10.5...v0.11.0) (2019-03-12)
1114
610
 
1115
-
1116
611
  ### Features
1117
612
 
1118
- * **core:** specify config as interfaces ([e474fb6](https://github.com/IBM/carbon-charts/commit/e474fb6))
1119
-
1120
-
1121
-
1122
-
613
+ - **core:** specify config as interfaces ([e474fb6](https://github.com/IBM/carbon-charts/commit/e474fb6))
1123
614
 
1124
615
  ## [0.10.5](https://github.com/IBM/carbon-charts/compare/v0.10.4...v0.10.5) (2019-03-12)
1125
616
 
1126
617
  **Note:** Version bump only for package @carbon/charts
1127
618
 
1128
-
1129
-
1130
-
1131
-
1132
619
  ## [0.10.4](https://github.com/IBM/carbon-charts/compare/v0.10.3...v0.10.4) (2019-03-08)
1133
620
 
1134
-
1135
621
  ### Bug Fixes
1136
622
 
1137
- * **core:** remove updateSVG() ([38f7e83](https://github.com/IBM/carbon-charts/commit/38f7e83)), closes [#185](https://github.com/IBM/carbon-charts/issues/185)
1138
-
1139
-
1140
-
1141
-
623
+ - **core:** remove updateSVG() ([38f7e83](https://github.com/IBM/carbon-charts/commit/38f7e83)), closes [#185](https://github.com/IBM/carbon-charts/issues/185)
1142
624
 
1143
625
  ## [0.10.2](https://github.com/IBM/carbon-charts/compare/v0.10.1...v0.10.2) (2019-03-06)
1144
626
 
1145
-
1146
627
  ### Bug Fixes
1147
628
 
1148
- * **core:** Enforce text alignment of legend popup in the styles ([#203](https://github.com/IBM/carbon-charts/issues/203)) ([6a4fe1e](https://github.com/IBM/carbon-charts/commit/6a4fe1e))
1149
- * **core:** Fix loss of letters in labels in wrapTicks() ([#202](https://github.com/IBM/carbon-charts/issues/202)) ([8635e7b](https://github.com/IBM/carbon-charts/commit/8635e7b))
1150
-
1151
-
1152
-
1153
-
629
+ - **core:** Enforce text alignment of legend popup in the styles ([#203](https://github.com/IBM/carbon-charts/issues/203)) ([6a4fe1e](https://github.com/IBM/carbon-charts/commit/6a4fe1e))
630
+ - **core:** Fix loss of letters in labels in wrapTicks() ([#202](https://github.com/IBM/carbon-charts/issues/202)) ([8635e7b](https://github.com/IBM/carbon-charts/commit/8635e7b))
1154
631
 
1155
632
  ## [0.10.1](https://github.com/IBM/carbon-charts/compare/v0.10.0...v0.10.1) (2019-02-28)
1156
633
 
1157
634
  **Note:** Version bump only for package @carbon/charts
1158
635
 
1159
-
1160
-
1161
-
1162
-
1163
636
  # [0.10.0](https://github.com/IBM/carbon-charts/compare/v0.9.7...v0.10.0) (2019-02-28)
1164
637
 
1165
-
1166
638
  ### Features
1167
639
 
1168
- * **$core:** Adds getStrokeColor and getFillColor options ([e1766d3](https://github.com/IBM/carbon-charts/commit/e1766d3)), closes [#136](https://github.com/IBM/carbon-charts/issues/136)
1169
-
1170
-
1171
-
1172
-
640
+ - **\$core:** Adds getStrokeColor and getFillColor options ([e1766d3](https://github.com/IBM/carbon-charts/commit/e1766d3)), closes [#136](https://github.com/IBM/carbon-charts/issues/136)
1173
641
 
1174
642
  ## [0.9.7](https://github.com/IBM/carbon-charts/compare/v0.9.6...v0.9.7) (2019-02-22)
1175
643
 
1176
644
  **Note:** Version bump only for package @carbon/charts
1177
645
 
1178
-
1179
-
1180
-
1181
-
1182
646
  ## [0.9.6](https://github.com/IBM/carbon-charts/compare/v0.9.4...v0.9.6) (2019-02-21)
1183
647
 
1184
-
1185
648
  ### Bug Fixes
1186
649
 
1187
- * **bar:** add maxWidth and other bar fixes ([3866d86](https://github.com/IBM/carbon-charts/commit/3866d86))
1188
-
1189
-
1190
-
1191
-
650
+ - **bar:** add maxWidth and other bar fixes ([3866d86](https://github.com/IBM/carbon-charts/commit/3866d86))
1192
651
 
1193
652
  ## [0.9.5](https://github.com/IBM/carbon-charts/compare/v0.9.4...v0.9.5) (2019-02-20)
1194
653
 
1195
-
1196
654
  ### Bug Fixes
1197
655
 
1198
- * **$core:** Fixes opacity transitions not completing when data is updated. Ensures use SVG vs CSS op ([f6b245e](https://github.com/IBM/carbon-charts/commit/f6b245e))
1199
-
1200
-
1201
-
1202
-
656
+ - **\$core:** Fixes opacity transitions not completing when data is updated. Ensures use SVG vs CSS op ([f6b245e](https://github.com/IBM/carbon-charts/commit/f6b245e))
1203
657
 
1204
658
  ## [0.9.4](https://github.com/IBM/carbon-charts/compare/v0.9.3...v0.9.4) (2019-02-16)
1205
659
 
1206
-
1207
660
  ### Bug Fixes
1208
661
 
1209
- * **$browser:** Fix duplication of titles during title resize ([4698efd](https://github.com/IBM/carbon-charts/commit/4698efd))
1210
-
1211
-
1212
-
1213
-
662
+ - **\$browser:** Fix duplication of titles during title resize ([4698efd](https://github.com/IBM/carbon-charts/commit/4698efd))
1214
663
 
1215
664
  ## [0.9.3](https://github.com/IBM/carbon-charts/compare/v0.9.2...v0.9.3) (2019-02-15)
1216
665
 
1217
-
1218
666
  ### Bug Fixes
1219
667
 
1220
- * **core:** Fix NPM vulnerabilities ([73ef611](https://github.com/IBM/carbon-charts/commit/73ef611))
1221
-
1222
-
1223
-
1224
-
668
+ - **core:** Fix NPM vulnerabilities ([73ef611](https://github.com/IBM/carbon-charts/commit/73ef611))
1225
669
 
1226
670
  ## [0.9.2](https://github.com/IBM/carbon-charts/compare/v0.9.1...v0.9.2) (2019-02-15)
1227
671
 
1228
-
1229
672
  ### Bug Fixes
1230
673
 
1231
- * **core:** Allow custom circle size for line chart ([5fb93bd](https://github.com/IBM/carbon-charts/commit/5fb93bd))
1232
-
1233
-
1234
-
1235
-
674
+ - **core:** Allow custom circle size for line chart ([5fb93bd](https://github.com/IBM/carbon-charts/commit/5fb93bd))
1236
675
 
1237
676
  ## [0.9.1](https://github.com/IBM/carbon-charts/compare/v0.9.0...v0.9.1) (2019-02-07)
1238
677
 
1239
-
1240
678
  ### Bug Fixes
1241
679
 
1242
- * **core:** Allow the usage of different size variants of tooltip ([4f6aa1d](https://github.com/IBM/carbon-charts/commit/4f6aa1d))
1243
-
1244
-
1245
-
1246
-
680
+ - **core:** Allow the usage of different size variants of tooltip ([4f6aa1d](https://github.com/IBM/carbon-charts/commit/4f6aa1d))
1247
681
 
1248
682
  # [0.9.0](https://github.com/IBM/carbon-charts/compare/v0.8.6...v0.9.0) (2019-01-28)
1249
683
 
1250
-
1251
684
  ### Features
1252
685
 
1253
- * **CORE:** ability to customize donut label & number ([07014cf](https://github.com/IBM/carbon-charts/commit/07014cf))
1254
-
1255
-
1256
-
1257
-
686
+ - **CORE:** ability to customize donut label & number ([07014cf](https://github.com/IBM/carbon-charts/commit/07014cf))
1258
687
 
1259
688
  ## [0.8.6](https://github.com/IBM/carbon-charts/compare/v0.8.5...v0.8.6) (2019-01-18)
1260
689
 
1261
-
1262
690
  ### Bug Fixes
1263
691
 
1264
- * **$browser:** Fixes the issue with pie labels not lining up on smaller sizes. ([154467f](https://github.com/IBM/carbon-charts/commit/154467f)), closes [#151](https://github.com/IBM/carbon-charts/issues/151)
1265
- * **$browser:** Use dynamic step value for margin instead of fixed value. ([1c96d7a](https://github.com/IBM/carbon-charts/commit/1c96d7a))
1266
- * **core:** Fix interference of thresholds and bar chart elements ([a69dc15](https://github.com/IBM/carbon-charts/commit/a69dc15))
1267
-
1268
-
1269
-
1270
-
692
+ - **\$browser:** Fixes the issue with pie labels not lining up on smaller sizes. ([154467f](https://github.com/IBM/carbon-charts/commit/154467f)), closes [#151](https://github.com/IBM/carbon-charts/issues/151)
693
+ - **\$browser:** Use dynamic step value for margin instead of fixed value. ([1c96d7a](https://github.com/IBM/carbon-charts/commit/1c96d7a))
694
+ - **core:** Fix interference of thresholds and bar chart elements ([a69dc15](https://github.com/IBM/carbon-charts/commit/a69dc15))
1271
695
 
1272
696
  ## [0.8.5](https://github.com/IBM/carbon-charts/compare/v0.8.4...v0.8.5) (2019-01-17)
1273
697
 
1274
-
1275
698
  ### Bug Fixes
1276
699
 
1277
- * **$browser:** Fixes the issue with pie labels not lining up on smaller sizes. ([54e2227](https://github.com/IBM/carbon-charts/commit/54e2227)), closes [#151](https://github.com/IBM/carbon-charts/issues/151)
1278
-
1279
-
1280
-
1281
-
700
+ - **\$browser:** Fixes the issue with pie labels not lining up on smaller sizes. ([54e2227](https://github.com/IBM/carbon-charts/commit/54e2227)), closes [#151](https://github.com/IBM/carbon-charts/issues/151)
1282
701
 
1283
702
  ## [0.8.4](https://github.com/IBM/carbon-charts/compare/v0.8.3...v0.8.4) (2019-01-17)
1284
703
 
1285
-
1286
704
  ### Bug Fixes
1287
705
 
1288
- * **core:** Fix interference of thresholds and bar chart elements ([67ff065](https://github.com/IBM/carbon-charts/commit/67ff065))
1289
-
1290
-
1291
-
1292
-
706
+ - **core:** Fix interference of thresholds and bar chart elements ([67ff065](https://github.com/IBM/carbon-charts/commit/67ff065))
1293
707
 
1294
708
  ## [0.8.3](https://github.com/IBM/carbon-charts/compare/v0.8.2...v0.8.3) (2019-01-16)
1295
709
 
1296
-
1297
710
  ### Bug Fixes
1298
711
 
1299
- * **core:** Fix tooltip positioning and clean up styling ([6de0665](https://github.com/IBM/carbon-charts/commit/6de0665))
1300
-
1301
-
1302
-
1303
-
712
+ - **core:** Fix tooltip positioning and clean up styling ([6de0665](https://github.com/IBM/carbon-charts/commit/6de0665))
1304
713
 
1305
714
  ## [0.8.2](https://github.com/IBM/carbon-charts/compare/v0.8.1...v0.8.2) (2019-01-14)
1306
715
 
1307
-
1308
716
  ### Bug Fixes
1309
717
 
1310
- * **core demo:** Fix experimental link issue ([d9d660a](https://github.com/IBM/carbon-charts/commit/d9d660a))
1311
-
1312
-
1313
-
1314
-
718
+ - **core demo:** Fix experimental link issue ([d9d660a](https://github.com/IBM/carbon-charts/commit/d9d660a))
1315
719
 
1316
720
  ## [0.8.1](https://github.com/IBM/carbon-charts/compare/v0.8.0...v0.8.1) (2019-01-09)
1317
721
 
1318
722
  **Note:** Version bump only for package @carbon/charts
1319
723
 
1320
-
1321
-
1322
-
1323
-
1324
724
  # [0.8.0](https://github.com/IBM/carbon-charts/compare/v0.7.16...v0.8.0) (2019-01-04)
1325
725
 
1326
-
1327
726
  ### Features
1328
727
 
1329
- * **$core:** adds support for tension, beta, alpha in curves ([09437dc](https://github.com/IBM/carbon-charts/commit/09437dc)), closes [#39](https://github.com/IBM/carbon-charts/issues/39)
1330
-
1331
-
1332
-
1333
-
728
+ - **\$core:** adds support for tension, beta, alpha in curves ([09437dc](https://github.com/IBM/carbon-charts/commit/09437dc)), closes [#39](https://github.com/IBM/carbon-charts/issues/39)
1334
729
 
1335
730
  ## [0.7.16](https://github.com/IBM/carbon-charts/compare/v0.7.15...v0.7.16) (2019-01-03)
1336
731
 
1337
-
1338
732
  ### Bug Fixes
1339
733
 
1340
- * **core:** Remove extension of addLegend in PieChart ([c66b633](https://github.com/IBM/carbon-charts/commit/c66b633))
1341
-
1342
-
1343
-
1344
-
734
+ - **core:** Remove extension of addLegend in PieChart ([c66b633](https://github.com/IBM/carbon-charts/commit/c66b633))
1345
735
 
1346
736
  ## [0.7.14](https://github.com/IBM/carbon-charts/compare/v0.7.13...v0.7.14) (2019-01-03)
1347
737
 
1348
738
  **Note:** Version bump only for package @carbon/charts
1349
739
 
1350
-
1351
-
1352
-
1353
-
1354
740
  ## [0.7.11](https://github.com/IBM/carbon-charts/compare/v0.7.10...v0.7.11) (2018-12-03)
1355
741
 
1356
742
  **Note:** Version bump only for package @carbon/charts
1357
743
 
1358
-
1359
-
1360
-
1361
-
1362
744
  ## [0.7.10](https://github.com/IBM/carbon-charts/compare/v0.7.9...v0.7.10) (2018-11-28)
1363
745
 
1364
-
1365
746
  ### Bug Fixes
1366
747
 
1367
- * **react:** Fix react wrappers resizing with animation ([4219f33](https://github.com/IBM/carbon-charts/commit/4219f33))
1368
-
1369
-
1370
-
1371
-
748
+ - **react:** Fix react wrappers resizing with animation ([4219f33](https://github.com/IBM/carbon-charts/commit/4219f33))
1372
749
 
1373
750
  ## [0.7.9](https://github.com/IBM/carbon-charts/compare/v0.7.8...v0.7.9) (2018-11-22)
1374
751
 
1375
-
1376
752
  ### Bug Fixes
1377
753
 
1378
- * **core:** Use a minimum size for all charts, and use resizeObserver rather than requestAnimationFra ([462c2d6](https://github.com/IBM/carbon-charts/commit/462c2d6))
1379
-
1380
-
1381
-
1382
-
754
+ - **core:** Use a minimum size for all charts, and use resizeObserver rather than requestAnimationFra ([462c2d6](https://github.com/IBM/carbon-charts/commit/462c2d6))
1383
755
 
1384
756
  ## [0.7.8](https://github.com/IBM/carbon-charts/compare/v0.7.7...v0.7.8) (2018-11-22)
1385
757
 
1386
-
1387
758
  ### Bug Fixes
1388
759
 
1389
- * **core:** Remove and update addDataPointEventListener ([f40f775](https://github.com/IBM/carbon-charts/commit/f40f775)), closes [#97](https://github.com/IBM/carbon-charts/issues/97)
1390
-
1391
-
1392
-
1393
-
760
+ - **core:** Remove and update addDataPointEventListener ([f40f775](https://github.com/IBM/carbon-charts/commit/f40f775)), closes [#97](https://github.com/IBM/carbon-charts/issues/97)
1394
761
 
1395
762
  ## [0.7.5](https://github.com/IBM/carbon-charts/compare/v0.7.4...v0.7.5) (2018-11-20)
1396
763
 
1397
764
  **Note:** Version bump only for package @carbon/charts
1398
765
 
1399
-
1400
-
1401
-
1402
-
1403
766
  ## [0.7.4](https://github.com/IBM/carbon-charts/compare/v0.7.3...v0.7.4) (2018-11-17)
1404
767
 
1405
-
1406
768
  ### Bug Fixes
1407
769
 
1408
- * **packages/core/src/line-chart.ts:** Fix tooltips bug [#89](https://github.com/IBM/carbon-charts/issues/89): Fix imports and addDataPointEventListene ([5a63f94](https://github.com/IBM/carbon-charts/commit/5a63f94))
1409
-
1410
-
1411
-
1412
-
770
+ - **packages/core/src/line-chart.ts:** Fix tooltips bug [#89](https://github.com/IBM/carbon-charts/issues/89): Fix imports and addDataPointEventListene ([5a63f94](https://github.com/IBM/carbon-charts/commit/5a63f94))
1413
771
 
1414
772
  ## [0.7.3](https://github.com/IBM/carbon-charts/compare/v0.7.2...v0.7.3) (2018-11-13)
1415
773
 
1416
774
  **Note:** Version bump only for package @carbon/charts
1417
775
 
1418
-
1419
-
1420
-
1421
-
1422
776
  ## [0.7.2](https://github.com/IBM/carbon-charts/compare/v0.7.1...v0.7.2) (2018-11-13)
1423
777
 
1424
-
1425
778
  ### Bug Fixes
1426
779
 
1427
- * **core:** Fixed label colours on donut charts ([5e40ef6](https://github.com/IBM/carbon-charts/commit/5e40ef6))
1428
-
1429
-
1430
-
1431
-
780
+ - **core:** Fixed label colours on donut charts ([5e40ef6](https://github.com/IBM/carbon-charts/commit/5e40ef6))
1432
781
 
1433
782
  ## [0.7.1](https://github.com/IBM/carbon-charts/compare/v0.7.0...v0.7.1) (2018-11-12)
1434
783
 
1435
-
1436
784
  ### Bug Fixes
1437
785
 
1438
- * **core:** Refactor thresholds to support a range of values, closes [#85](https://github.com/IBM/carbon-charts/issues/85) ([50b44c0](https://github.com/IBM/carbon-charts/commit/50b44c0))
1439
-
1440
-
1441
-
1442
-
786
+ - **core:** Refactor thresholds to support a range of values, closes [#85](https://github.com/IBM/carbon-charts/issues/85) ([50b44c0](https://github.com/IBM/carbon-charts/commit/50b44c0))
1443
787
 
1444
788
  # [0.7.0](https://github.com/IBM/carbon-charts/compare/v0.6.2...v0.7.0) (2018-11-12)
1445
789
 
1446
-
1447
790
  ### Features
1448
791
 
1449
- * **core:** Automatic calculation of DonutCenter value, closes [#83](https://github.com/IBM/carbon-charts/issues/83) ([d20e883](https://github.com/IBM/carbon-charts/commit/d20e883))
1450
-
1451
-
1452
-
1453
-
792
+ - **core:** Automatic calculation of DonutCenter value, closes [#83](https://github.com/IBM/carbon-charts/issues/83) ([d20e883](https://github.com/IBM/carbon-charts/commit/d20e883))
1454
793
 
1455
794
  ## [0.6.2](https://github.com/IBM/carbon-charts/compare/v0.6.1...v0.6.2) (2018-11-12)
1456
795
 
1457
-
1458
796
  ### Bug Fixes
1459
797
 
1460
- * **$core:** Remove hover effect and pointer on non-clickable legends ([dc9a2f2](https://github.com/IBM/carbon-charts/commit/dc9a2f2)), closes [#71](https://github.com/IBM/carbon-charts/issues/71)
1461
-
1462
-
1463
-
1464
-
798
+ - **\$core:** Remove hover effect and pointer on non-clickable legends ([dc9a2f2](https://github.com/IBM/carbon-charts/commit/dc9a2f2)), closes [#71](https://github.com/IBM/carbon-charts/issues/71)
1465
799
 
1466
800
  ## [0.6.1](https://github.com/IBM/carbon-charts/compare/v0.6.0...v0.6.1) (2018-11-09)
1467
801
 
1468
-
1469
802
  ### Bug Fixes
1470
803
 
1471
- * **angular:** Fix babel-polyfill multiple instances issue ([4a2f165](https://github.com/IBM/carbon-charts/commit/4a2f165))
1472
-
1473
-
1474
-
1475
-
804
+ - **angular:** Fix babel-polyfill multiple instances issue ([4a2f165](https://github.com/IBM/carbon-charts/commit/4a2f165))
1476
805
 
1477
806
  # [0.6.0](https://github.com/IBM/carbon-charts/compare/v0.5.4...v0.6.0) (2018-11-01)
1478
807
 
1479
-
1480
808
  ### Bug Fixes
1481
809
 
1482
- * **core:** Resize thresholds, and update threshold theme colors ([3d86841](https://github.com/IBM/carbon-charts/commit/3d86841))
1483
-
810
+ - **core:** Resize thresholds, and update threshold theme colors ([3d86841](https://github.com/IBM/carbon-charts/commit/3d86841))
1484
811
 
1485
812
  ### Features
1486
813
 
1487
- * **core:** changed threshold config format, code refactor ([d931a82](https://github.com/IBM/carbon-charts/commit/d931a82))
1488
-
1489
-
1490
-
1491
-
814
+ - **core:** changed threshold config format, code refactor ([d931a82](https://github.com/IBM/carbon-charts/commit/d931a82))
1492
815
 
1493
816
  <a name="0.5.4"></a>
817
+
1494
818
  ## [0.5.4](https://github.com/IBM/carbon-charts/compare/v0.5.3...v0.5.4) (2018-10-16)
1495
819
 
1496
820
  **Note:** Version bump only for package @carbon/charts
1497
821
 
1498
-
1499
-
1500
-
1501
-
1502
822
  <a name="0.5.3"></a>
823
+
1503
824
  ## [0.5.3](https://github.com/IBM/carbon-charts/compare/v0.5.2...v0.5.3) (2018-10-15)
1504
825
 
1505
826
  **Note:** Version bump only for package @carbon/charts
1506
827
 
1507
-
1508
-
1509
-
1510
-
1511
828
  <a name="0.5.2"></a>
829
+
1512
830
  ## [0.5.2](https://github.com/IBM/carbon-charts/compare/v0.5.1...v0.5.2) (2018-10-10)
1513
831
 
1514
832
  **Note:** Version bump only for package @carbon/charts
1515
833
 
1516
-
1517
-
1518
-
1519
-
1520
834
  <a name="0.5.1"></a>
835
+
1521
836
  ## [0.5.1](https://github.com/IBM/carbon-charts/compare/v0.5.0...v0.5.1) (2018-10-10)
1522
837
 
1523
838
  **Note:** Version bump only for package @carbon/charts
1524
839
 
1525
-
1526
-
1527
-
1528
-
1529
840
  <a name="0.5.0"></a>
1530
- # [0.5.0](https://github.com/IBM/carbon-charts/compare/v0.4.3...v0.5.0) (2018-10-09)
1531
841
 
842
+ # [0.5.0](https://github.com/IBM/carbon-charts/compare/v0.4.3...v0.5.0) (2018-10-09)
1532
843
 
1533
844
  ### Bug Fixes
1534
845
 
1535
- * **core:** legend updates in pie & donut should respect legend filters ([203c7e6](https://github.com/IBM/carbon-charts/commit/203c7e6))
1536
- * **core:** use correct default colors, and replace loading bee with carbon loading spinner ([80ff9bd](https://github.com/IBM/carbon-charts/commit/80ff9bd))
1537
-
846
+ - **core:** legend updates in pie & donut should respect legend filters ([203c7e6](https://github.com/IBM/carbon-charts/commit/203c7e6))
847
+ - **core:** use correct default colors, and replace loading bee with carbon loading spinner ([80ff9bd](https://github.com/IBM/carbon-charts/commit/80ff9bd))
1538
848
 
1539
849
  ### Features
1540
850
 
1541
- * **core:** first attempt at combo-chart ([6613160](https://github.com/IBM/carbon-charts/commit/6613160))
1542
-
1543
-
1544
-
1545
-
851
+ - **core:** first attempt at combo-chart ([6613160](https://github.com/IBM/carbon-charts/commit/6613160))
1546
852
 
1547
853
  <a name="0.4.3"></a>
854
+
1548
855
  ## [0.4.3](https://github.com/IBM/carbon-charts/compare/v0.4.2...v0.4.3) (2018-08-31)
1549
856
 
1550
857
  **Note:** Version bump only for package @carbon/charts
1551
858
 
1552
-
1553
-
1554
-
1555
-
1556
859
  <a name="0.4.2"></a>
1557
- ## [0.4.2](https://github.com/IBM/carbon-charts/compare/v0.4.1...v0.4.2) (2018-08-31)
1558
860
 
861
+ ## [0.4.2](https://github.com/IBM/carbon-charts/compare/v0.4.1...v0.4.2) (2018-08-31)
1559
862
 
1560
863
  ### Bug Fixes
1561
864
 
1562
- * **core angular:** IE11 Support ([b0dd2b5](https://github.com/IBM/carbon-charts/commit/b0dd2b5))
1563
-
1564
-
1565
-
1566
-
865
+ - **core angular:** IE11 Support ([b0dd2b5](https://github.com/IBM/carbon-charts/commit/b0dd2b5))
1567
866
 
1568
867
  <a name="0.4.1"></a>
1569
- ## [0.4.1](https://github.com/IBM/carbon-charts/compare/v0.4.0...v0.4.1) (2018-08-31)
1570
868
 
869
+ ## [0.4.1](https://github.com/IBM/carbon-charts/compare/v0.4.0...v0.4.1) (2018-08-31)
1571
870
 
1572
871
  ### Bug Fixes
1573
872
 
1574
- * **core angular:** Remove demo folders from published packages ([5e3c556](https://github.com/IBM/carbon-charts/commit/5e3c556))
1575
- * **core angular:** Remove demos & add dist in packages ([94bb9f4](https://github.com/IBM/carbon-charts/commit/94bb9f4))
1576
-
1577
-
1578
-
1579
-
873
+ - **core angular:** Remove demo folders from published packages ([5e3c556](https://github.com/IBM/carbon-charts/commit/5e3c556))
874
+ - **core angular:** Remove demos & add dist in packages ([94bb9f4](https://github.com/IBM/carbon-charts/commit/94bb9f4))
1580
875
 
1581
876
  <a name="0.4.0"></a>
1582
- # [0.4.0](https://github.com/IBM/carbon-charts/compare/v0.3.0...v0.4.0) (2018-08-30)
1583
877
 
878
+ # [0.4.0](https://github.com/IBM/carbon-charts/compare/v0.3.0...v0.4.0) (2018-08-30)
1584
879
 
1585
880
  ### Features
1586
881
 
1587
- * **core angular react:** Resolve DAP violations ([86f6e05](https://github.com/IBM/carbon-charts/commit/86f6e05))
1588
-
1589
-
1590
-
1591
-
882
+ - **core angular react:** Resolve DAP violations ([86f6e05](https://github.com/IBM/carbon-charts/commit/86f6e05))
1592
883
 
1593
884
  <a name="0.3.0"></a>
1594
- # [0.3.0](https://github.com/IBM/carbon-charts/compare/v0.2.0...v0.3.0) (2018-08-30)
1595
885
 
886
+ # [0.3.0](https://github.com/IBM/carbon-charts/compare/v0.2.0...v0.3.0) (2018-08-30)
1596
887
 
1597
888
  ### Features
1598
889
 
1599
- * **core angular:** trigger minor release on Travis ([1c476b2](https://github.com/IBM/carbon-charts/commit/1c476b2))
1600
-
1601
-
1602
-
1603
-
890
+ - **core angular:** trigger minor release on Travis ([1c476b2](https://github.com/IBM/carbon-charts/commit/1c476b2))
1604
891
 
1605
892
  <a name="0.2.0"></a>
1606
- # [0.2.0](https://github.com/IBM/carbon-charts/compare/v0.1.0...v0.2.0) (2018-08-30)
1607
893
 
894
+ # [0.2.0](https://github.com/IBM/carbon-charts/compare/v0.1.0...v0.2.0) (2018-08-30)
1608
895
 
1609
896
  ### Features
1610
897
 
1611
- * **core angular react:** trigger a minor release in Travis ([2995cfa](https://github.com/IBM/carbon-charts/commit/2995cfa))
1612
-
1613
-
1614
-
1615
-
898
+ - **core angular react:** trigger a minor release in Travis ([2995cfa](https://github.com/IBM/carbon-charts/commit/2995cfa))
1616
899
 
1617
900
  <a name="0.1.0"></a>
1618
- # 0.1.0 (2018-08-30)
1619
901
 
902
+ # 0.1.0 (2018-08-30)
1620
903
 
1621
904
  ### Bug Fixes
1622
905
 
1623
- * **core angular react:** fix tooltip styling ([80b36f5](https://github.com/IBM/carbon-charts/commit/80b36f5))
1624
- * **peretz-icons:** show peretz-icons instead of raw SVG for tooltip close button ([19a54d4](https://github.com/IBM/carbon-charts/commit/19a54d4))
1625
- * **scope angular react:** use a more specific class name for chart tooltips ([4cbe680](https://github.com/IBM/carbon-charts/commit/4cbe680))
1626
-
906
+ - **core angular react:** fix tooltip styling ([80b36f5](https://github.com/IBM/carbon-charts/commit/80b36f5))
907
+ - **peretz-icons:** show peretz-icons instead of raw SVG for tooltip close button ([19a54d4](https://github.com/IBM/carbon-charts/commit/19a54d4))
908
+ - **scope angular react:** use a more specific class name for chart tooltips ([4cbe680](https://github.com/IBM/carbon-charts/commit/4cbe680))
1627
909
 
1628
910
  ### Features
1629
911
 
1630
- * **core angular react:** support negative y-values ([cfa941d](https://github.com/IBM/carbon-charts/commit/cfa941d))
1631
- * **core react angular:** carbon styling ([5064f63](https://github.com/IBM/carbon-charts/commit/5064f63))
1632
- * **react wrappers storybook:** full react wrappers ([4a456ee](https://github.com/IBM/carbon-charts/commit/4a456ee)), closes [#117](https://github.com/IBM/carbon-charts/issues/117) [#115](https://github.com/IBM/carbon-charts/issues/115) [#120](https://github.com/IBM/carbon-charts/issues/120) [#121](https://github.com/IBM/carbon-charts/issues/121)
1633
-
1634
-
1635
-
1636
-
912
+ - **core angular react:** support negative y-values ([cfa941d](https://github.com/IBM/carbon-charts/commit/cfa941d))
913
+ - **core react angular:** carbon styling ([5064f63](https://github.com/IBM/carbon-charts/commit/5064f63))
914
+ - **react wrappers storybook:** full react wrappers ([4a456ee](https://github.com/IBM/carbon-charts/commit/4a456ee)), closes [#117](https://github.com/IBM/carbon-charts/issues/117) [#115](https://github.com/IBM/carbon-charts/issues/115) [#120](https://github.com/IBM/carbon-charts/issues/120) [#121](https://github.com/IBM/carbon-charts/issues/121)
1637
915
 
1638
916
  # Change Log
1639
917