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