@pie-lib/charting 7.0.4-next.30 → 7.0.4-next.34

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 (272) hide show
  1. package/CHANGELOG.json +17 -0
  2. package/CHANGELOG.md +1116 -0
  3. package/LICENSE.md +5 -0
  4. package/lib/actions-button.js +145 -0
  5. package/lib/actions-button.js.map +1 -0
  6. package/lib/axes.js +643 -0
  7. package/lib/axes.js.map +1 -0
  8. package/lib/bars/bar.js +58 -0
  9. package/lib/bars/bar.js.map +1 -0
  10. package/lib/bars/common/bars.js +277 -0
  11. package/lib/bars/common/bars.js.map +1 -0
  12. package/lib/bars/common/correct-check-icon.js +54 -0
  13. package/lib/bars/common/correct-check-icon.js.map +1 -0
  14. package/lib/bars/histogram.js +59 -0
  15. package/lib/bars/histogram.js.map +1 -0
  16. package/lib/chart-setup.js +382 -0
  17. package/lib/chart-setup.js.map +1 -0
  18. package/lib/chart-type.js +80 -0
  19. package/lib/chart-type.js.map +1 -0
  20. package/lib/chart-types.js +22 -0
  21. package/lib/chart-types.js.map +1 -0
  22. package/lib/chart.js +384 -0
  23. package/lib/chart.js.map +1 -0
  24. package/lib/common/correctness-indicators.js +156 -0
  25. package/lib/common/correctness-indicators.js.map +1 -0
  26. package/lib/common/drag-handle.js +160 -0
  27. package/lib/common/drag-handle.js.map +1 -0
  28. package/lib/common/drag-icon.js +52 -0
  29. package/lib/common/drag-icon.js.map +1 -0
  30. package/lib/common/styles.js +22 -0
  31. package/lib/common/styles.js.map +1 -0
  32. package/lib/grid.js +112 -0
  33. package/lib/grid.js.map +1 -0
  34. package/lib/index.js +42 -0
  35. package/lib/index.js.map +1 -0
  36. package/lib/key-legend.js +87 -0
  37. package/lib/key-legend.js.map +1 -0
  38. package/lib/line/common/drag-handle.js +146 -0
  39. package/lib/line/common/drag-handle.js.map +1 -0
  40. package/lib/line/common/line.js +214 -0
  41. package/lib/line/common/line.js.map +1 -0
  42. package/lib/line/line-cross.js +214 -0
  43. package/lib/line/line-cross.js.map +1 -0
  44. package/lib/line/line-dot.js +158 -0
  45. package/lib/line/line-dot.js.map +1 -0
  46. package/lib/mark-label.js +237 -0
  47. package/lib/mark-label.js.map +1 -0
  48. package/lib/plot/common/plot.js +349 -0
  49. package/lib/plot/common/plot.js.map +1 -0
  50. package/lib/plot/dot.js +110 -0
  51. package/lib/plot/dot.js.map +1 -0
  52. package/lib/plot/line.js +140 -0
  53. package/lib/plot/line.js.map +1 -0
  54. package/lib/tool-menu.js +106 -0
  55. package/lib/tool-menu.js.map +1 -0
  56. package/lib/utils.js +189 -0
  57. package/lib/utils.js.map +1 -0
  58. package/package.json +28 -39
  59. package/src/__tests__/actions-button.test.jsx +280 -0
  60. package/src/__tests__/axes.test.jsx +667 -0
  61. package/src/__tests__/chart-setup.test.jsx +532 -0
  62. package/src/__tests__/chart-type.test.jsx +23 -0
  63. package/src/__tests__/chart.test.jsx +86 -0
  64. package/src/__tests__/grid.test.jsx +37 -0
  65. package/src/__tests__/key-legend.test.jsx +223 -0
  66. package/src/__tests__/mark-label.test.jsx +33 -0
  67. package/src/__tests__/tool-menu.test.jsx +522 -0
  68. package/src/__tests__/utils.js +36 -0
  69. package/src/__tests__/utils.test.js +100 -0
  70. package/src/actions-button.jsx +115 -0
  71. package/src/axes.jsx +594 -0
  72. package/src/bars/__tests__/bar.test.jsx +45 -0
  73. package/src/bars/__tests__/histogram.test.jsx +45 -0
  74. package/src/bars/__tests__/utils.js +30 -0
  75. package/src/bars/bar.js +28 -0
  76. package/src/bars/common/__tests__/bars.test.jsx +68 -0
  77. package/src/bars/common/__tests__/utils.js +30 -0
  78. package/src/bars/common/bars.jsx +249 -0
  79. package/src/bars/common/correct-check-icon.jsx +25 -0
  80. package/src/bars/histogram.js +28 -0
  81. package/src/chart-setup.jsx +356 -0
  82. package/src/chart-type.js +59 -0
  83. package/src/chart-types.js +8 -0
  84. package/src/chart.jsx +357 -0
  85. package/src/common/__tests__/correctness-indicators.test.jsx +720 -0
  86. package/src/common/__tests__/drag-handle.test.jsx +58 -0
  87. package/src/common/__tests__/utils.js +30 -0
  88. package/src/common/correctness-indicators.jsx +128 -0
  89. package/src/common/drag-handle.jsx +125 -0
  90. package/src/common/drag-icon.jsx +36 -0
  91. package/src/common/styles.js +19 -0
  92. package/src/grid.jsx +80 -0
  93. package/src/index.js +7 -0
  94. package/src/key-legend.jsx +77 -0
  95. package/src/line/__tests__/line-cross.test.jsx +463 -0
  96. package/src/line/__tests__/line-dot.test.jsx +41 -0
  97. package/src/line/__tests__/utils.js +36 -0
  98. package/src/line/common/__tests__/drag-handle.test.jsx +62 -0
  99. package/src/line/common/__tests__/line.test.jsx +79 -0
  100. package/src/line/common/__tests__/utils.js +30 -0
  101. package/src/line/common/drag-handle.jsx +114 -0
  102. package/src/line/common/line.jsx +171 -0
  103. package/src/line/line-cross.js +144 -0
  104. package/src/line/line-dot.js +111 -0
  105. package/src/mark-label.jsx +238 -0
  106. package/src/plot/__tests__/dot.test.jsx +344 -0
  107. package/src/plot/__tests__/line.test.jsx +375 -0
  108. package/src/plot/__tests__/utils.js +30 -0
  109. package/src/plot/common/__tests__/plot.test.jsx +69 -0
  110. package/src/plot/common/__tests__/utils.js +30 -0
  111. package/src/plot/common/plot.jsx +358 -0
  112. package/src/plot/dot.js +74 -0
  113. package/src/plot/line.js +98 -0
  114. package/src/tool-menu.jsx +85 -0
  115. package/src/utils.js +201 -0
  116. package/dist/_virtual/_rolldown/runtime.js +0 -23
  117. package/dist/actions-button.d.ts +0 -26
  118. package/dist/actions-button.js +0 -84
  119. package/dist/autosize-input.d.ts +0 -10
  120. package/dist/autosize-input.js +0 -66
  121. package/dist/axes.d.ts +0 -84
  122. package/dist/axes.js +0 -376
  123. package/dist/bars/bar.d.ts +0 -47
  124. package/dist/bars/bar.js +0 -27
  125. package/dist/bars/common/bars.d.ts +0 -98
  126. package/dist/bars/common/bars.js +0 -174
  127. package/dist/bars/common/correct-check-icon.d.ts +0 -18
  128. package/dist/bars/common/correct-check-icon.js +0 -50
  129. package/dist/bars/histogram.d.ts +0 -47
  130. package/dist/bars/histogram.js +0 -28
  131. package/dist/chart-setup.d.ts +0 -29
  132. package/dist/chart-setup.js +0 -231
  133. package/dist/chart-type.d.ts +0 -32
  134. package/dist/chart-type.js +0 -68
  135. package/dist/chart-types.d.ts +0 -41
  136. package/dist/chart-types.js +0 -17
  137. package/dist/chart.d.ts +0 -88
  138. package/dist/chart.js +0 -250
  139. package/dist/common/correctness-indicators.d.ts +0 -70
  140. package/dist/common/correctness-indicators.js +0 -106
  141. package/dist/common/drag-handle.d.ts +0 -129
  142. package/dist/common/drag-handle.js +0 -120
  143. package/dist/common/drag-icon.d.ts +0 -23
  144. package/dist/common/drag-icon.js +0 -45
  145. package/dist/common/styles.d.ts +0 -23
  146. package/dist/common/styles.js +0 -17
  147. package/dist/grid.d.ts +0 -45
  148. package/dist/grid.js +0 -56
  149. package/dist/index.d.ts +0 -14
  150. package/dist/index.js +0 -6
  151. package/dist/key-legend.d.ts +0 -19
  152. package/dist/key-legend.js +0 -46
  153. package/dist/line/common/drag-handle.d.ts +0 -120
  154. package/dist/line/common/drag-handle.js +0 -92
  155. package/dist/line/common/line.d.ts +0 -96
  156. package/dist/line/common/line.js +0 -114
  157. package/dist/line/line-cross.d.ts +0 -47
  158. package/dist/line/line-cross.js +0 -133
  159. package/dist/line/line-dot.d.ts +0 -47
  160. package/dist/line/line-dot.js +0 -101
  161. package/dist/mark-label.d.ts +0 -55
  162. package/dist/mark-label.js +0 -138
  163. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/axis/Axis.js +0 -101
  164. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/axis/AxisBottom.js +0 -46
  165. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/axis/AxisLeft.js +0 -47
  166. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/axis/AxisRenderer.js +0 -63
  167. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/axis/Ticks.js +0 -44
  168. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/constants/orientation.js +0 -9
  169. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/createPoint.js +0 -14
  170. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/getAxisRangePaddingConfig.js +0 -21
  171. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/getLabelTransform.js +0 -16
  172. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/getTickFormatter.js +0 -8
  173. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/getTickPosition.js +0 -15
  174. package/dist/node_modules/.bun/@visx_grid@3.12.0_f4eacebf2041cd4f/node_modules/@visx/grid/esm/grids/GridColumns.js +0 -79
  175. package/dist/node_modules/.bun/@visx_grid@3.12.0_f4eacebf2041cd4f/node_modules/@visx/grid/esm/grids/GridRows.js +0 -79
  176. package/dist/node_modules/.bun/@visx_grid@3.12.0_f4eacebf2041cd4f/node_modules/@visx/grid/esm/utils/getScaleBandwidth.js +0 -6
  177. package/dist/node_modules/.bun/@visx_group@3.12.0_f4eacebf2041cd4f/node_modules/@visx/group/esm/Group.js +0 -50
  178. package/dist/node_modules/.bun/@visx_point@3.12.0/node_modules/@visx/point/esm/Point.js +0 -18
  179. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/align.js +0 -6
  180. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/base.js +0 -6
  181. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/clamp.js +0 -6
  182. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/constant.js +0 -6
  183. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/domain.js +0 -6
  184. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/exponent.js +0 -6
  185. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/interpolate.js +0 -10
  186. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/nice.js +0 -37
  187. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/padding.js +0 -6
  188. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/range.js +0 -6
  189. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/reverse.js +0 -9
  190. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/round.js +0 -7
  191. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/scaleOperator.js +0 -58
  192. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/unknown.js +0 -6
  193. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/operators/zero.js +0 -9
  194. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/scales/band.js +0 -9
  195. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/scales/point.js +0 -9
  196. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/utils/coerceNumber.js +0 -10
  197. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/utils/createColorInterpolator.js +0 -29
  198. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/utils/getTicks.js +0 -9
  199. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/utils/isUtcScale.js +0 -7
  200. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/utils/toString.js +0 -6
  201. package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/esm/shapes/Bar.js +0 -29
  202. package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/esm/shapes/Circle.js +0 -29
  203. package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/esm/shapes/Line.js +0 -47
  204. package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/esm/shapes/LinePath.js +0 -50
  205. package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/esm/util/D3ShapeFactories.js +0 -9
  206. package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/esm/util/setNumberOrNumberAccessor.js +0 -6
  207. package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/lib/shapes/Line.js +0 -53
  208. package/dist/node_modules/.bun/@visx_text@3.12.0_f4eacebf2041cd4f/node_modules/@visx/text/esm/Text.js +0 -57
  209. package/dist/node_modules/.bun/@visx_text@3.12.0_f4eacebf2041cd4f/node_modules/@visx/text/esm/hooks/useText.js +0 -91
  210. package/dist/node_modules/.bun/@visx_text@3.12.0_f4eacebf2041cd4f/node_modules/@visx/text/esm/util/getStringWidth.js +0 -21
  211. package/dist/node_modules/.bun/@visx_vendor@3.12.0/node_modules/@visx/vendor/esm/d3-interpolate.js +0 -8
  212. package/dist/node_modules/.bun/@visx_vendor@3.12.0/node_modules/@visx/vendor/esm/d3-scale.js +0 -8
  213. package/dist/node_modules/.bun/@visx_vendor@3.12.0/node_modules/@visx/vendor/esm/d3-time.js +0 -8
  214. package/dist/node_modules/.bun/balanced-match@0.4.2/node_modules/balanced-match/index.js +0 -32
  215. package/dist/node_modules/.bun/balanced-match@1.0.2/node_modules/balanced-match/index.js +0 -33
  216. package/dist/node_modules/.bun/classnames@2.5.1/node_modules/classnames/index.js +0 -32
  217. package/dist/node_modules/.bun/clsx@2.1.1/node_modules/clsx/dist/clsx.js +0 -16
  218. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_Hash.js +0 -21
  219. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_ListCache.js +0 -21
  220. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_Map.js +0 -10
  221. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_MapCache.js +0 -21
  222. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_Symbol.js +0 -9
  223. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_assocIndexOf.js +0 -14
  224. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_baseGetTag.js +0 -15
  225. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_baseIsNative.js +0 -16
  226. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_coreJsData.js +0 -9
  227. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_freeGlobal.js +0 -8
  228. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_getMapData.js +0 -14
  229. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_getNative.js +0 -15
  230. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_getRawTag.js +0 -19
  231. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_getValue.js +0 -11
  232. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_hashClear.js +0 -13
  233. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_hashDelete.js +0 -12
  234. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_hashGet.js +0 -18
  235. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_hashHas.js +0 -14
  236. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_hashSet.js +0 -14
  237. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_isKeyable.js +0 -12
  238. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_isMasked.js +0 -16
  239. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_listCacheClear.js +0 -11
  240. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_listCacheDelete.js +0 -14
  241. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_listCacheGet.js +0 -14
  242. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_listCacheHas.js +0 -13
  243. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_listCacheSet.js +0 -14
  244. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_mapCacheClear.js +0 -19
  245. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_mapCacheDelete.js +0 -14
  246. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_mapCacheGet.js +0 -13
  247. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_mapCacheHas.js +0 -13
  248. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_mapCacheSet.js +0 -14
  249. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_nativeCreate.js +0 -9
  250. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_objectToString.js +0 -12
  251. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_root.js +0 -10
  252. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_toSource.js +0 -20
  253. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/eq.js +0 -11
  254. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/isFunction.js +0 -16
  255. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/isObject.js +0 -12
  256. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/memoize.js +0 -20
  257. package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/formula_evaluator.js +0 -37
  258. package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/lexer.js +0 -509
  259. package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/math_function.js +0 -108
  260. package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/postfix.js +0 -31
  261. package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/postfix_evaluator.js +0 -45
  262. package/dist/node_modules/.bun/reduce-css-calc@1.3.0/node_modules/reduce-css-calc/index.js +0 -49
  263. package/dist/node_modules/.bun/reduce-function-call@1.0.3/node_modules/reduce-function-call/index.js +0 -34
  264. package/dist/plot/common/plot.d.ts +0 -103
  265. package/dist/plot/common/plot.js +0 -227
  266. package/dist/plot/dot.d.ts +0 -47
  267. package/dist/plot/dot.js +0 -62
  268. package/dist/plot/line.d.ts +0 -47
  269. package/dist/plot/line.js +0 -84
  270. package/dist/tool-menu.d.ts +0 -31
  271. package/dist/utils.d.ts +0 -39
  272. package/dist/utils.js +0 -101
package/CHANGELOG.md ADDED
@@ -0,0 +1,1116 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [7.0.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@7.0.2...@pie-lib/charting@7.0.3) (2026-05-15)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **charting:** avoid floating-point precision errors in the % operator PIE-434 ([d325882](https://github.com/pie-framework/pie-lib/commit/d325882408975633c872d5fca70a8117fec30e51))
11
+
12
+ ## [7.0.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@7.0.2-next.3...@pie-lib/charting@7.0.2) (2026-05-07)
13
+
14
+ **Note:** Version bump only for package @pie-lib/charting
15
+
16
+ ## [7.0.2-next.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@7.0.2-next.2...@pie-lib/charting@7.0.2-next.3) (2026-05-07)
17
+
18
+ **Note:** Version bump only for package @pie-lib/charting
19
+
20
+ ## [7.0.2-next.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@7.0.2-next.1...@pie-lib/charting@7.0.2-next.2) (2026-05-06)
21
+
22
+ **Note:** Version bump only for package @pie-lib/charting
23
+
24
+ ## [7.0.2-next.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@7.0.2-next.0...@pie-lib/charting@7.0.2-next.1) (2026-05-06)
25
+
26
+ **Note:** Version bump only for package @pie-lib/charting
27
+
28
+ ## [7.0.2-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.15...@pie-lib/charting@7.0.2-next.0) (2026-05-06)
29
+
30
+ ### Bug Fixes
31
+
32
+ - **charting:** enhance RawChartAxes with MathJax rendering support and improve hidden label measurement PD-5496 PD-5497 ([4644a62](https://github.com/pie-framework/pie-lib/commit/4644a62365cc22b5558ae99cfa64c78bdc21815a))
33
+ - **charting:** fix math rendering race condition in fractional chart labels PD-5496 ([03d9d81](https://github.com/pie-framework/pie-lib/commit/03d9d8131872aff762866abb5c910312a7151864))
34
+
35
+ ## [7.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@7.0.0...@pie-lib/charting@7.0.1) (2026-04-28)
36
+
37
+ **Note:** Version bump only for package @pie-lib/charting
38
+
39
+ # [6.2.0-next.39](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.38...@pie-lib/charting@6.2.0-next.39) (2026-04-24)
40
+
41
+ **Note:** Version bump only for package @pie-lib/charting
42
+
43
+ # [6.2.0-next.38](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.37...@pie-lib/charting@6.2.0-next.38) (2026-04-24)
44
+
45
+ **Note:** Version bump only for package @pie-lib/charting
46
+
47
+ # [6.2.0-next.37](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.36...@pie-lib/charting@6.2.0-next.37) (2026-04-23)
48
+
49
+ **Note:** Version bump only for package @pie-lib/charting
50
+
51
+ # [6.2.0-next.36](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.35...@pie-lib/charting@6.2.0-next.36) (2026-04-17)
52
+
53
+ **Note:** Version bump only for package @pie-lib/charting
54
+
55
+ # [6.2.0-next.35](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.34...@pie-lib/charting@6.2.0-next.35) (2026-04-16)
56
+
57
+ **Note:** Version bump only for package @pie-lib/charting
58
+
59
+ # [6.2.0-next.34](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.33...@pie-lib/charting@6.2.0-next.34) (2026-04-16)
60
+
61
+ **Note:** Version bump only for package @pie-lib/charting
62
+
63
+ # [6.2.0-next.33](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.32...@pie-lib/charting@6.2.0-next.33) (2026-04-16)
64
+
65
+ **Note:** Version bump only for package @pie-lib/charting
66
+
67
+ # [6.2.0-next.32](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.31...@pie-lib/charting@6.2.0-next.32) (2026-04-15)
68
+
69
+ **Note:** Version bump only for package @pie-lib/charting
70
+
71
+ # [6.2.0-next.31](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.30...@pie-lib/charting@6.2.0-next.31) (2026-04-15)
72
+
73
+ **Note:** Version bump only for package @pie-lib/charting
74
+
75
+ # [6.2.0-next.30](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.29...@pie-lib/charting@6.2.0-next.30) (2026-04-14)
76
+
77
+ **Note:** Version bump only for package @pie-lib/charting
78
+
79
+ # [6.2.0-next.29](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.28...@pie-lib/charting@6.2.0-next.29) (2026-04-13)
80
+
81
+ **Note:** Version bump only for package @pie-lib/charting
82
+
83
+ # [6.2.0-next.28](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.27...@pie-lib/charting@6.2.0-next.28) (2026-04-09)
84
+
85
+ **Note:** Version bump only for package @pie-lib/charting
86
+
87
+ # [6.2.0-next.27](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.26...@pie-lib/charting@6.2.0-next.27) (2026-04-09)
88
+
89
+ **Note:** Version bump only for package @pie-lib/charting
90
+
91
+ # [6.2.0-next.26](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.25...@pie-lib/charting@6.2.0-next.26) (2026-04-08)
92
+
93
+ **Note:** Version bump only for package @pie-lib/charting
94
+
95
+ # [6.2.0-next.25](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.24...@pie-lib/charting@6.2.0-next.25) (2026-04-07)
96
+
97
+ **Note:** Version bump only for package @pie-lib/charting
98
+
99
+ # [6.2.0-next.24](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.23...@pie-lib/charting@6.2.0-next.24) (2026-04-06)
100
+
101
+ **Note:** Version bump only for package @pie-lib/charting
102
+
103
+ # [6.2.0-next.23](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.22...@pie-lib/charting@6.2.0-next.23) (2026-04-03)
104
+
105
+ **Note:** Version bump only for package @pie-lib/charting
106
+
107
+ # [6.2.0-next.22](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.21...@pie-lib/charting@6.2.0-next.22) (2026-03-31)
108
+
109
+ ### Bug Fixes
110
+
111
+ - **charting:** fix math rendering race condition in fractional chart labels PD-5496 ([03d9d81](https://github.com/pie-framework/pie-lib/commit/03d9d8131872aff762866abb5c910312a7151864))
112
+
113
+ # [6.2.0-next.21](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.20...@pie-lib/charting@6.2.0-next.21) (2026-03-25)
114
+
115
+ **Note:** Version bump only for package @pie-lib/charting
116
+
117
+ # [6.2.0-next.20](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.19...@pie-lib/charting@6.2.0-next.20) (2026-03-18)
118
+
119
+ **Note:** Version bump only for package @pie-lib/charting
120
+
121
+ # [6.2.0-next.19](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.18...@pie-lib/charting@6.2.0-next.19) (2026-03-18)
122
+
123
+ ### Bug Fixes
124
+
125
+ - **charting:** enhance RawChartAxes with MathJax rendering support and improve hidden label measurement PD-5496 PD-5497 ([4644a62](https://github.com/pie-framework/pie-lib/commit/4644a62365cc22b5558ae99cfa64c78bdc21815a))
126
+
127
+ # [6.2.0-next.18](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.17...@pie-lib/charting@6.2.0-next.18) (2026-03-18)
128
+
129
+ **Note:** Version bump only for package @pie-lib/charting
130
+
131
+ # [6.2.0-next.17](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.16...@pie-lib/charting@6.2.0-next.17) (2026-03-18)
132
+
133
+ **Note:** Version bump only for package @pie-lib/charting
134
+
135
+ # [6.2.0-next.16](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.15...@pie-lib/charting@6.2.0-next.16) (2026-03-11)
136
+
137
+ **Note:** Version bump only for package @pie-lib/charting
138
+
139
+ # [6.2.0-next.15](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.14...@pie-lib/charting@6.2.0-next.15) (2026-03-11)
140
+
141
+ **Note:** Version bump only for package @pie-lib/charting
142
+
143
+ # [6.2.0-next.14](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.13...@pie-lib/charting@6.2.0-next.14) (2026-03-09)
144
+
145
+ **Note:** Version bump only for package @pie-lib/charting
146
+
147
+ # [6.2.0-next.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.12...@pie-lib/charting@6.2.0-next.13) (2026-03-06)
148
+
149
+ **Note:** Version bump only for package @pie-lib/charting
150
+
151
+ # [6.2.0-next.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.11...@pie-lib/charting@6.2.0-next.12) (2026-03-04)
152
+
153
+ **Note:** Version bump only for package @pie-lib/charting
154
+
155
+ # [6.2.0-next.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.9...@pie-lib/charting@6.2.0-next.11) (2026-02-26)
156
+
157
+ **Note:** Version bump only for package @pie-lib/charting
158
+
159
+ # [6.2.0-next.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.8...@pie-lib/charting@6.2.0-next.9) (2026-02-25)
160
+
161
+ **Note:** Version bump only for package @pie-lib/charting
162
+
163
+ # [6.2.0-next.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.7...@pie-lib/charting@6.2.0-next.8) (2026-02-25)
164
+
165
+ ### Bug Fixes
166
+
167
+ - **deps:** update [@pie-lib](https://github.com/pie-lib) dependencies to published versions ([134fbdc](https://github.com/pie-framework/pie-lib/commit/134fbdc90c6a15f89a736340578d70fb80a983b3))
168
+
169
+ # [6.2.0-next.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.6...@pie-lib/charting@6.2.0-next.7) (2026-02-25)
170
+
171
+ **Note:** Version bump only for package @pie-lib/charting
172
+
173
+ # [6.2.0-next.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.5...@pie-lib/charting@6.2.0-next.6) (2026-02-25)
174
+
175
+ **Note:** Version bump only for package @pie-lib/charting
176
+
177
+ # [6.2.0-next.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.4...@pie-lib/charting@6.2.0-next.5) (2026-02-25)
178
+
179
+ **Note:** Version bump only for package @pie-lib/charting
180
+
181
+ # [6.2.0-next.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.3...@pie-lib/charting@6.2.0-next.4) (2026-02-24)
182
+
183
+ **Note:** Version bump only for package @pie-lib/charting
184
+
185
+ # [6.2.0-next.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.1...@pie-lib/charting@6.2.0-next.3) (2026-02-24)
186
+
187
+ **Note:** Version bump only for package @pie-lib/charting
188
+
189
+ # [6.1.0-next.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.1.0-next.2...@pie-lib/charting@6.1.0-next.4) (2026-01-27)
190
+
191
+ **Note:** Version bump only for package @pie-lib/charting
192
+
193
+ # [6.1.0-next.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.1.0-next.1...@pie-lib/charting@6.1.0-next.2) (2026-01-26)
194
+
195
+ **Note:** Version bump only for package @pie-lib/charting
196
+
197
+ # [6.1.0-next.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.36.2...@pie-lib/charting@6.1.0-next.1) (2026-01-26)
198
+
199
+ ### Bug Fixes
200
+
201
+ - charting cleanup ([4f8b14f](https://github.com/pie-framework/pie-lib/commit/4f8b14f59cf6d977af04feaa75f78f65fe4ffbb8))
202
+ - charting issue after mui update ([19eb377](https://github.com/pie-framework/pie-lib/commit/19eb377ae63624402dce8118857c64e2da07c7ec))
203
+ - charting issues ([fb42cac](https://github.com/pie-framework/pie-lib/commit/fb42cacad4753b1aaf501969bde0a489fd223a1e))
204
+ - charting style ([1e72103](https://github.com/pie-framework/pie-lib/commit/1e7210354c92a4f85da10043f42261e275894b69))
205
+ - charting styles ([c733e4e](https://github.com/pie-framework/pie-lib/commit/c733e4e316b572a8aea3e494a2ab3bf3863a015e))
206
+ - charting ux fixes after mui update PD-5258 ([38ee1dc](https://github.com/pie-framework/pie-lib/commit/38ee1dc3810760794690534821f78672906a4981))
207
+ - math keyboard ref and remove console log ([fd9dc91](https://github.com/pie-framework/pie-lib/commit/fd9dc91092497e55a75aba3e7ef1c4c1c5723f35))
208
+ - publish charting ([df5a64e](https://github.com/pie-framework/pie-lib/commit/df5a64e4287fe71b0da7838c14b19e72286c7e82))
209
+ - remove carets from [@pie-lib](https://github.com/pie-lib) dependencies and configure lerna to use exact versions ([c9cd800](https://github.com/pie-framework/pie-lib/commit/c9cd800844abca09e7acf1fd35b2ddf51a6d86df))
210
+ - remove carret, point to specific libs version ([09939a5](https://github.com/pie-framework/pie-lib/commit/09939a5aca19d7dda03d62c93d4d524f98dd69da))
211
+ - remove exports and publish ([#2068](https://github.com/pie-framework/pie-lib/issues/2068)) ([60a96cd](https://github.com/pie-framework/pie-lib/commit/60a96cde0ec65f6b1cac0ae329aa33a0abc50d05))
212
+ - select in chart type selection ([ba56525](https://github.com/pie-framework/pie-lib/commit/ba5652504daa9fe9bc499b66c5d8acb88ebf7a8e))
213
+ - use fixed lib deps ([de7c64d](https://github.com/pie-framework/pie-lib/commit/de7c64d14f13259fe44d47405e4421baef21e24e))
214
+
215
+ ### Features
216
+
217
+ - bump react and react-dom ([01dc19e](https://github.com/pie-framework/pie-lib/commit/01dc19e88bbc8d372c561d1511df1a82937d45af))
218
+ - implement web component safe select in charting ([6f84f2f](https://github.com/pie-framework/pie-lib/commit/6f84f2f0bb917a64dbbd46b917f8cc1b5665d9eb))
219
+ - migrate from [@vx](https://github.com/vx) library to [@visx](https://github.com/visx) ([135bf60](https://github.com/pie-framework/pie-lib/commit/135bf605161bfbd0070ac181892df20931691ce3))
220
+ - packages/charting mui update PD-5268 ([9619c34](https://github.com/pie-framework/pie-lib/commit/9619c3437ad7ae762daa04350e1110cb429c7166))
221
+ - sync latest changes from dev ([c936e9c](https://github.com/pie-framework/pie-lib/commit/c936e9c7f9e095e7d9b9805ac2bf72bd271e05f1))
222
+
223
+ # [6.0.0-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.36.3-next.0...@pie-lib/charting@6.0.0-next.0) (2026-01-19)
224
+
225
+ **Note:** Version bump only for package @pie-lib/charting
226
+
227
+ ## [5.36.3-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.50.0-mui-update.0...@pie-lib/charting@5.36.3-next.0) (2026-01-19)
228
+
229
+ **Note:** Version bump only for package @pie-lib/charting
230
+
231
+ ## [5.36.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.36.1...@pie-lib/charting@5.36.2) (2025-11-27)
232
+
233
+ **Note:** Version bump only for package @pie-lib/charting
234
+
235
+ ## [5.36.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.32.7...@pie-lib/charting@5.36.1) (2025-10-22)
236
+
237
+ **Note:** Version bump only for package @pie-lib/charting
238
+
239
+ # [5.36.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.35.0...@pie-lib/charting@5.36.0) (2025-10-16)
240
+
241
+ **Note:** Version bump only for package @pie-lib/charting
242
+
243
+ # [5.35.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.31.0...@pie-lib/charting@5.35.0) (2025-10-16)
244
+
245
+ ### Features
246
+
247
+ - PD-5128 only needed files ([64d375b](https://github.com/pie-framework/pie-lib/commit/64d375b1731179ae46f735c2c4da21215101bd95))
248
+ - PD-5217 only needed file ([b21b343](https://github.com/pie-framework/pie-lib/commit/b21b34348569c73253eff72eea43c6c3235b25df))
249
+
250
+ # [5.34.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.31.0...@pie-lib/charting@5.34.0) (2025-10-16)
251
+
252
+ ### Features
253
+
254
+ - PD-5128 only needed files ([64d375b](https://github.com/pie-framework/pie-lib/commit/64d375b1731179ae46f735c2c4da21215101bd95))
255
+ - PD-5217 only needed file ([b21b343](https://github.com/pie-framework/pie-lib/commit/b21b34348569c73253eff72eea43c6c3235b25df))
256
+
257
+ # [5.33.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.31.0...@pie-lib/charting@5.33.0) (2025-10-16)
258
+
259
+ ### Features
260
+
261
+ - PD-5128 only needed files ([64d375b](https://github.com/pie-framework/pie-lib/commit/64d375b1731179ae46f735c2c4da21215101bd95))
262
+ - PD-5217 only needed file ([b21b343](https://github.com/pie-framework/pie-lib/commit/b21b34348569c73253eff72eea43c6c3235b25df))
263
+
264
+ ## [5.32.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.32.6...@pie-lib/charting@5.32.7) (2025-10-14)
265
+
266
+ **Note:** Version bump only for package @pie-lib/charting
267
+
268
+ ## [5.32.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.32.0...@pie-lib/charting@5.32.6) (2025-10-09)
269
+
270
+ **Note:** Version bump only for package @pie-lib/charting
271
+
272
+ # [5.32.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.31.0...@pie-lib/charting@5.32.0) (2025-10-09)
273
+
274
+ ### Features
275
+
276
+ - PD-5128 only needed files ([64d375b](https://github.com/pie-framework/pie-lib/commit/64d375b1731179ae46f735c2c4da21215101bd95))
277
+ - PD-5217 only needed file ([b21b343](https://github.com/pie-framework/pie-lib/commit/b21b34348569c73253eff72eea43c6c3235b25df))
278
+
279
+ # [5.31.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.31.0) (2025-09-25)
280
+
281
+ ### Bug Fixes
282
+
283
+ - **charting:** make the “answer key correct” indicators smaller for plot PD-5198 ([ce6bb35](https://github.com/pie-framework/pie-lib/commit/ce6bb35099c832f017e1bc213403ccb094792442))
284
+ - fixed pie-lib/icons import [PD-5126](<[dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f)>)
285
+
286
+ ### Features
287
+
288
+ - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
289
+
290
+ # [5.30.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.29.0...@pie-lib/charting@5.30.0) (2025-09-18)
291
+
292
+ **Note:** Version bump only for package @pie-lib/charting
293
+
294
+ # [5.29.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.28.0...@pie-lib/charting@5.29.0) (2025-09-18)
295
+
296
+ **Note:** Version bump only for package @pie-lib/charting
297
+
298
+ # [5.28.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.28.0) (2025-09-18)
299
+
300
+ ### Bug Fixes
301
+
302
+ - **charting:** make the “answer key correct” indicators smaller for plot PD-5198 ([ce6bb35](https://github.com/pie-framework/pie-lib/commit/ce6bb35099c832f017e1bc213403ccb094792442))
303
+ - fixed pie-lib/icons import [PD-5126](<[dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f)>)
304
+
305
+ ### Features
306
+
307
+ - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
308
+
309
+ # [5.27.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.26.0...@pie-lib/charting@5.27.0) (2025-09-17)
310
+
311
+ **Note:** Version bump only for package @pie-lib/charting
312
+
313
+ # [5.26.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.25.0...@pie-lib/charting@5.26.0) (2025-09-17)
314
+
315
+ **Note:** Version bump only for package @pie-lib/charting
316
+
317
+ # [5.25.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.24.1...@pie-lib/charting@5.25.0) (2025-09-17)
318
+
319
+ ### Bug Fixes
320
+
321
+ - **charting:** make the “answer key correct” indicators smaller for plot PD-5198 ([ce6bb35](https://github.com/pie-framework/pie-lib/commit/ce6bb35099c832f017e1bc213403ccb094792442))
322
+
323
+ ## [5.24.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.24.1) (2025-08-11)
324
+
325
+ ### Bug Fixes
326
+
327
+ - fixed pie-lib/icons import [PD-5126](<[dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f)>)
328
+
329
+ ### Features
330
+
331
+ - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
332
+
333
+ # [5.24.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.24.0) (2025-08-07)
334
+
335
+ ### Features
336
+
337
+ - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
338
+
339
+ # [5.23.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.23.0) (2025-07-31)
340
+
341
+ **Note:** Version bump only for package @pie-lib/charting
342
+
343
+ # [5.22.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.22.0) (2025-07-31)
344
+
345
+ **Note:** Version bump only for package @pie-lib/charting
346
+
347
+ # [5.21.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.21.0) (2025-07-31)
348
+
349
+ **Note:** Version bump only for package @pie-lib/charting
350
+
351
+ # [5.20.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.20.0) (2025-07-31)
352
+
353
+ **Note:** Version bump only for package @pie-lib/charting
354
+
355
+ # [5.19.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.19.0) (2025-07-31)
356
+
357
+ **Note:** Version bump only for package @pie-lib/charting
358
+
359
+ # [5.18.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.18.0) (2025-07-31)
360
+
361
+ **Note:** Version bump only for package @pie-lib/charting
362
+
363
+ # [5.20.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.20.0) (2025-07-31)
364
+
365
+ **Note:** Version bump only for package @pie-lib/charting
366
+
367
+ # [5.19.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.19.0) (2025-07-31)
368
+
369
+ **Note:** Version bump only for package @pie-lib/charting
370
+
371
+ # [5.18.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.18.0) (2025-07-31)
372
+
373
+ **Note:** Version bump only for package @pie-lib/charting
374
+
375
+ # [5.19.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.19.0) (2025-07-31)
376
+
377
+ **Note:** Version bump only for package @pie-lib/charting
378
+
379
+ # [5.18.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.18.0) (2025-07-31)
380
+
381
+ **Note:** Version bump only for package @pie-lib/charting
382
+
383
+ # [5.17.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.17.0) (2025-07-31)
384
+
385
+ **Note:** Version bump only for package @pie-lib/charting
386
+
387
+ # [5.17.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.17.0) (2025-07-31)
388
+
389
+ **Note:** Version bump only for package @pie-lib/charting
390
+
391
+ # [5.18.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.18.0) (2025-07-31)
392
+
393
+ **Note:** Version bump only for package @pie-lib/charting
394
+
395
+ # [5.17.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.17.0) (2025-07-31)
396
+
397
+ **Note:** Version bump only for package @pie-lib/charting
398
+
399
+ # [5.16.0-beta.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.16.0-beta.8) (2025-07-25)
400
+
401
+ **Note:** Version bump only for package @pie-lib/charting
402
+
403
+ # [5.16.0-beta.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.16.0-beta.7) (2025-07-25)
404
+
405
+ **Note:** Version bump only for package @pie-lib/charting
406
+
407
+ # [5.16.0-beta.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.16.0-beta.7) (2025-07-25)
408
+
409
+ **Note:** Version bump only for package @pie-lib/charting
410
+
411
+ # [5.16.0-beta.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.16.0-beta.6) (2025-07-25)
412
+
413
+ **Note:** Version bump only for package @pie-lib/charting
414
+
415
+ # [5.16.0-beta.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.16.0-beta.6) (2025-07-25)
416
+
417
+ **Note:** Version bump only for package @pie-lib/charting
418
+
419
+ # [5.16.0-beta.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.16.0-beta.5) (2025-07-25)
420
+
421
+ **Note:** Version bump only for package @pie-lib/charting
422
+
423
+ # [5.16.0-beta.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.16.0-beta.5) (2025-07-25)
424
+
425
+ **Note:** Version bump only for package @pie-lib/charting
426
+
427
+ # [5.16.0-beta.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.16.0-beta.4) (2025-07-25)
428
+
429
+ **Note:** Version bump only for package @pie-lib/charting
430
+
431
+ # [5.16.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.16.0-beta.3) (2025-07-25)
432
+
433
+ **Note:** Version bump only for package @pie-lib/charting
434
+
435
+ # [5.16.0-beta.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.16.0-beta.4) (2025-07-23)
436
+
437
+ **Note:** Version bump only for package @pie-lib/charting
438
+
439
+ # [5.16.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.16.0-beta.3) (2025-07-23)
440
+
441
+ **Note:** Version bump only for package @pie-lib/charting
442
+
443
+ # [5.16.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.16.0-beta.3) (2025-07-20)
444
+
445
+ **Note:** Version bump only for package @pie-lib/charting
446
+
447
+ # [5.16.0-beta.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.16.0-beta.2) (2025-07-20)
448
+
449
+ **Note:** Version bump only for package @pie-lib/charting
450
+
451
+ # [5.16.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.16.0-beta.1) (2025-07-20)
452
+
453
+ **Note:** Version bump only for package @pie-lib/charting
454
+
455
+ # [5.16.0-beta.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.16.0-beta.2) (2025-07-20)
456
+
457
+ **Note:** Version bump only for package @pie-lib/charting
458
+
459
+ # [5.16.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.16.0-beta.1) (2025-07-20)
460
+
461
+ **Note:** Version bump only for package @pie-lib/charting
462
+
463
+ # [5.16.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.16.0-beta.1) (2025-07-20)
464
+
465
+ **Note:** Version bump only for package @pie-lib/charting
466
+
467
+ # [5.16.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.16.0-beta.0) (2025-07-20)
468
+
469
+ **Note:** Version bump only for package @pie-lib/charting
470
+
471
+ # [5.17.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.17.0-beta.0) (2025-07-15)
472
+
473
+ **Note:** Version bump only for package @pie-lib/charting
474
+
475
+ # [5.16.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.6...@pie-lib/charting@5.16.0-beta.0) (2025-07-15)
476
+
477
+ **Note:** Version bump only for package @pie-lib/charting
478
+
479
+ ## [5.15.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.5...@pie-lib/charting@5.15.6) (2023-10-16)
480
+
481
+ ### Bug Fixes
482
+
483
+ - **charting:** add sanity check for data PD-3223 ([f573866](https://github.com/pie-framework/pie-lib/commit/f57386626933cdb5b8b6a1c0f91b45b6ea1b9ca7))
484
+ - **charting:** address overlap of drag handle with category labels in charts PD-3223 ([ebe212e](https://github.com/pie-framework/pie-lib/commit/ebe212ecd315d6445b1d676568482fa47b40ebdb))
485
+ - **charting:** limit number of categories in Define Correct Response Chart to 20 ([0b0e8ab](https://github.com/pie-framework/pie-lib/commit/0b0e8ab339126e00703c1ae5218c714bbcdb6dbf))
486
+ - **charting:** refine error message display to prevent overlapping with other elements and other messages PD-3121 ([f2de1ad](https://github.com/pie-framework/pie-lib/commit/f2de1adb4d19a44e403beb3d88cbb333e3c5adb9))
487
+ - **charting:** use red boxes only and for all duplicated category names, reorder CSS selectors to resolve styling conflicts, only display the validation message a single time for duplicate categories and for empty labels PD-3121 ([7cae40b](https://github.com/pie-framework/pie-lib/commit/7cae40b48a1da661d7d7c97780098a07e5b1d336))
488
+
489
+ ## [5.15.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.4...@pie-lib/charting@5.15.5) (2023-09-28)
490
+
491
+ ### Bug Fixes
492
+
493
+ - **charting:** add drop shadow to evaluate bars PD-2790 ([328c730](https://github.com/pie-framework/pie-lib/commit/328c7308d026ca6e00575d47bdfaf1d9e4779d16))
494
+
495
+ ## [5.15.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.3...@pie-lib/charting@5.15.4) (2023-09-28)
496
+
497
+ ### Bug Fixes
498
+
499
+ - **charting:** fix modal warnings ([34dbf3b](https://github.com/pie-framework/pie-lib/commit/34dbf3b04845773d23aa7c91a80fab57e1e78cd0))
500
+ - **charting:** limit number of categories in Define Initial Chart Attributes to 20 PD-3128 ([b0da731](https://github.com/pie-framework/pie-lib/commit/b0da731a619c9d13a8b12e16a6e81dc924261396))
501
+
502
+ ## [5.15.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.2...@pie-lib/charting@5.15.3) (2023-09-26)
503
+
504
+ ### Bug Fixes
505
+
506
+ - **charting:** adjust icon for the drag handle PD-2790 ([fe670d7](https://github.com/pie-framework/pie-lib/commit/fe670d7a04f44da5c93dadbeec41b753ce50f9f6))
507
+
508
+ ## [5.15.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.1...@pie-lib/charting@5.15.2) (2023-09-25)
509
+
510
+ ### Bug Fixes
511
+
512
+ - add required packages for charting to work ([c7af164](https://github.com/pie-framework/pie-lib/commit/c7af16427245d0c0c5c041e296a1cfdf034b7b64))
513
+
514
+ ## [5.15.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.15.0...@pie-lib/charting@5.15.1) (2023-09-25)
515
+
516
+ ### Bug Fixes
517
+
518
+ - **charting:** add @mui/icons-material to package json PD-2790 ([0262857](https://github.com/pie-framework/pie-lib/commit/026285728f998e3fe31ec43c77e99f2311f9ad22))
519
+
520
+ # [5.15.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.14.3...@pie-lib/charting@5.15.0) (2023-09-25)
521
+
522
+ ### Bug Fixes
523
+
524
+ - **charting:** set labelWidth to prevent outline from intersecting InputLabel for the ChartType menu PD-3166 ([ff9ca2b](https://github.com/pie-framework/pie-lib/commit/ff9ca2b9812d0afd209edccac2feecac396111cc))
525
+
526
+ ### Features
527
+
528
+ - **charting:** add hover effect for plot and bars PD-2790 ([af0d9ba](https://github.com/pie-framework/pie-lib/commit/af0d9bab03fa8146299bf0a1947dbe418e306f85))
529
+ - **charting:** adjust y-coordinate in maskSize for better chart fitting after adding new design, tweaks in design PD-2790 ([0edf288](https://github.com/pie-framework/pie-lib/commit/0edf2880c8c8c0e0e51df080aa582d071f0f1e52))
530
+ - **charting:** make style dynamic for drag icon PD-2790 ([aed8c81](https://github.com/pie-framework/pie-lib/commit/aed8c818cbc70910a7e31566c94dd731d068efa1))
531
+ - **charting:** Replace drag-enabled horizontal bars with widget for author and gather mode PD-2790, refactor RawDragHandle component ([e0a369a](https://github.com/pie-framework/pie-lib/commit/e0a369ad2aaf9cf5d3aa3ac061c23316443b35fb))
532
+
533
+ ## [5.14.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.14.2...@pie-lib/charting@5.14.3) (2023-09-18)
534
+
535
+ ### Bug Fixes
536
+
537
+ - **charting:** add tests for resetValues PD-3105 ([972a3cd](https://github.com/pie-framework/pie-lib/commit/972a3cd4b3787352ffe4073085cbd22f91895b43))
538
+ - **charting:** wip PD-3105 ([9e21836](https://github.com/pie-framework/pie-lib/commit/9e21836ad8c89c7c839c6561db5edc0329a6a6af))
539
+ - **charting:** wip PD-3105 ([f2f8234](https://github.com/pie-framework/pie-lib/commit/f2f82343a373ae1a8f669754a061963cbfdbeb08))
540
+ - **charting:** wip PD-3105 revert push in develop ([6cce5e2](https://github.com/pie-framework/pie-lib/commit/6cce5e2d25d079c1c3eb195425dc2cf016fcd36e))
541
+
542
+ ## [5.14.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.14.1...@pie-lib/charting@5.14.2) (2023-08-07)
543
+
544
+ **Note:** Version bump only for package @pie-lib/charting
545
+
546
+ ## [5.14.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.14.0...@pie-lib/charting@5.14.1) (2023-06-24)
547
+
548
+ **Note:** Version bump only for package @pie-lib/charting
549
+
550
+ # [5.14.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.13.0...@pie-lib/charting@5.14.0) (2023-06-13)
551
+
552
+ ### Features
553
+
554
+ - **charting, translator:** add translator to charting. add missing text in translator ([2c722a2](https://github.com/pie-framework/pie-lib/commit/2c722a241deb1ad4b51aa22c6eba74a0ec8a5ec0))
555
+
556
+ # [5.13.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.12.0...@pie-lib/charting@5.13.0) (2023-06-12)
557
+
558
+ ### Features
559
+
560
+ - started adding new mathMLOptions property PD-2150 ([175b45e](https://github.com/pie-framework/pie-lib/commit/175b45ecd98e9cc703bd7056b930f299a4345c75))
561
+
562
+ # [5.12.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.11.0...@pie-lib/charting@5.12.0) (2023-05-22)
563
+
564
+ ### Features
565
+
566
+ - **charting:** add new authoring view settings to restrict the permitted chart types and allow their names to be changed PD-2777 ([ae606aa](https://github.com/pie-framework/pie-lib/commit/ae606aa81a314c9b95fec36c5f47e88b1e6cd497))
567
+ - **charting:** show chart type only if it's available in config PD-2777 ([754876f](https://github.com/pie-framework/pie-lib/commit/754876f223e1fa57c259fd8e752340ea29e36bdc))
568
+
569
+ # [5.11.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.10.0...@pie-lib/charting@5.11.0) (2023-05-18)
570
+
571
+ ### Features
572
+
573
+ - **charting:** use 0 as default value for new added category ([3b17996](https://github.com/pie-framework/pie-lib/commit/3b1799687b9db2e3dc2cd60748b121e317d56f0d))
574
+
575
+ # [5.10.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.9.0...@pie-lib/charting@5.10.0) (2023-05-18)
576
+
577
+ ### Bug Fixes
578
+
579
+ - **charting:** provide mask id PD-2821 ([9e29841](https://github.com/pie-framework/pie-lib/commit/9e298415e6cafd03e4264ab189af8a3b03f46b97))
580
+
581
+ ### Features
582
+
583
+ - **charting:** add new item properties, settings, and authoring view settings for changeInteractive, changeEditable and addCategory ([0fe39c9](https://github.com/pie-framework/pie-lib/commit/0fe39c96f2e7ddeb0e24a9ef58a5d75d42550c73))
584
+ - **charting:** add props validation PD-2776 ([6566927](https://github.com/pie-framework/pie-lib/commit/6566927be268b358c7de10d4b63d15e502a8368e))
585
+ - **charting:** fix value for category editable when changeEditableEnabled is false ([4214aab](https://github.com/pie-framework/pie-lib/commit/4214aab4437b5d2395515b9b1d0680b93530ac83))
586
+
587
+ # [5.9.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.8.1...@pie-lib/charting@5.9.0) (2023-05-12)
588
+
589
+ ### Features
590
+
591
+ - **charting:** add authoring view settings for authorNewCategoryDefaults and studentNewCategoryDefaultLabel PD-2774 ([84009f7](https://github.com/pie-framework/pie-lib/commit/84009f791d1f6c1dc15ec2789e5e9c6570190536))
592
+
593
+ ## [5.8.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.8.0...@pie-lib/charting@5.8.1) (2023-05-02)
594
+
595
+ ### Bug Fixes
596
+
597
+ - **charting:** fix bad default state for chart data in author and player PD-2755, PD-2625 ([2428bb1](https://github.com/pie-framework/pie-lib/commit/2428bb14c0d304111f79e8553e48b95e6882d628))
598
+
599
+ # [5.8.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.7.2...@pie-lib/charting@5.8.0) (2023-05-01)
600
+
601
+ ### Bug Fixes
602
+
603
+ - **charting:** reset invalid values from chart model ([892b90d](https://github.com/pie-framework/pie-lib/commit/892b90d049e0fd8e0ab623ebc17a2e4e1ca63a2e))
604
+ - **charting:** update chart data in player ([657399d](https://github.com/pie-framework/pie-lib/commit/657399d1b2fe285695196df4b9641aa632394a84))
605
+
606
+ ### Features
607
+
608
+ - **charting:** add classes and rerender math at correct answer: PD-491 ([79f4398](https://github.com/pie-framework/pie-lib/commit/79f4398adae30f4a5a7ad4a9da577665ece145ba))
609
+ - **charting:** refactor regenx for mixed fractions and solve reviews and eslint-PD-491 ([49d18f4](https://github.com/pie-framework/pie-lib/commit/49d18f4a65f25fbfa010898d8486608819eece06))
610
+ - **charting:** render fractions using mathjax-PD-491 ([336319f](https://github.com/pie-framework/pie-lib/commit/336319fa238fed333c2bddc0888a031805452a13))
611
+
612
+ ## [5.7.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.7.1...@pie-lib/charting@5.7.2) (2023-04-19)
613
+
614
+ ### Bug Fixes
615
+
616
+ - **eslint:** fix eslint problems-PD-2732 ([9eb9976](https://github.com/pie-framework/pie-lib/commit/9eb9976749753da86e1057a07bd2cfc65bf64ae4))
617
+
618
+ ## [5.7.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.7.0...@pie-lib/charting@5.7.1) (2023-04-03)
619
+
620
+ ### Bug Fixes
621
+
622
+ - **charting:** generate random maskId to avoid duplication of ids-PD-2712 ([c32c7ea](https://github.com/pie-framework/pie-lib/commit/c32c7ea84972c396e123e00ca16ac6ec41b844d3))
623
+
624
+ # [5.7.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.6.16...@pie-lib/charting@5.7.0) (2023-03-27)
625
+
626
+ ### Features
627
+
628
+ - **charting:** mark up the category name in the student’s response as correct or incorrect with a rectangle ([5746b54](https://github.com/pie-framework/pie-lib/commit/5746b54bdeee204e906af91dca1cb65788d91128))
629
+
630
+ ## [5.6.16](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.6.15...@pie-lib/charting@5.6.16) (2023-03-06)
631
+
632
+ ### Bug Fixes
633
+
634
+ - **charting:** fix style for chart boxes ([6e45b13](https://github.com/pie-framework/pie-lib/commit/6e45b130ad2a72f236d3c89269fdc180687864fe))
635
+
636
+ ## [5.6.15](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.6.13...@pie-lib/charting@5.6.15) (2023-02-28)
637
+
638
+ ### Bug Fixes
639
+
640
+ - version bump ([d9280a9](https://github.com/pie-framework/pie-lib/commit/d9280a9aeddab459b6d84ecdbeb62814e1eee965))
641
+
642
+ ## [5.6.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.6.12...@pie-lib/charting@5.6.13) (2023-02-28)
643
+
644
+ ### Bug Fixes
645
+
646
+ - **charting:** add sanity checks to data ([25c7bb2](https://github.com/pie-framework/pie-lib/commit/25c7bb226cac10556950ace3feeba73d1966f0ba))
647
+
648
+ ## [5.6.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.6.10...@pie-lib/charting@5.6.12) (2023-01-31)
649
+
650
+ **Note:** Version bump only for package @pie-lib/charting
651
+
652
+ ## [5.6.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.6.9...@pie-lib/charting@5.6.10) (2023-01-31)
653
+
654
+ **Note:** Version bump only for package @pie-lib/charting
655
+
656
+ ## [5.6.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.6.8...@pie-lib/charting@5.6.9) (2023-01-31)
657
+
658
+ **Note:** Version bump only for package @pie-lib/charting
659
+
660
+ ## [5.6.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.6.7...@pie-lib/charting@5.6.8) (2023-01-31)
661
+
662
+ **Note:** Version bump only for package @pie-lib/charting
663
+
664
+ ## [5.6.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.6.5...@pie-lib/charting@5.6.7) (2023-01-31)
665
+
666
+ **Note:** Version bump only for package @pie-lib/charting
667
+
668
+ ## [5.6.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.6.3...@pie-lib/charting@5.6.5) (2023-01-31)
669
+
670
+ **Note:** Version bump only for package @pie-lib/charting
671
+
672
+ ## [5.6.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.6.1...@pie-lib/charting@5.6.3) (2023-01-31)
673
+
674
+ **Note:** Version bump only for package @pie-lib/charting
675
+
676
+ ## [5.6.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.6.0...@pie-lib/charting@5.6.1) (2023-01-16)
677
+
678
+ ### Bug Fixes
679
+
680
+ - sanity check DNA-16247 ([9213ff4](https://github.com/pie-framework/pie-lib/commit/9213ff48d24f6492a5f7ea2ad61d059c09cbf090))
681
+
682
+ # [5.6.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.5.1...@pie-lib/charting@5.6.0) (2023-01-16)
683
+
684
+ ### Features
685
+
686
+ - added theme naming support + cleanup ([72d562d](https://github.com/pie-framework/pie-lib/commit/72d562d509e5d31d883690eb455a9afea6bf54fc))
687
+
688
+ ## [5.5.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.5.0...@pie-lib/charting@5.5.1) (2023-01-03)
689
+
690
+ **Note:** Version bump only for package @pie-lib/charting
691
+
692
+ # [5.5.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.4.2...@pie-lib/charting@5.5.0) (2022-12-19)
693
+
694
+ ### Features
695
+
696
+ - **charting:** add color scheme for charting bars ([0e3cb02](https://github.com/pie-framework/pie-lib/commit/0e3cb021e646efebf84111ec9a1016495e6a4a39))
697
+ - **charting:** update snapshots ([1e61ad2](https://github.com/pie-framework/pie-lib/commit/1e61ad27b8b78842cd56b4bdb8ce1215760f2d35))
698
+ - **charting:** use colors for bars only in histogram chart type ([d7bef94](https://github.com/pie-framework/pie-lib/commit/d7bef947996282270f6343afd2d332f73ef64e31))
699
+
700
+ ## [5.4.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.4.1...@pie-lib/charting@5.4.2) (2022-12-06)
701
+
702
+ ### Bug Fixes
703
+
704
+ - **charting:** add sanity check for correctResponse data ([9f6ccd3](https://github.com/pie-framework/pie-lib/commit/9f6ccd39e8bae29c0a3efe6f5149942a0577c5d7))
705
+
706
+ ## [5.4.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.4.0...@pie-lib/charting@5.4.1) (2022-11-23)
707
+
708
+ **Note:** Version bump only for package @pie-lib/charting
709
+
710
+ # [5.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.3.1...@pie-lib/charting@5.4.0) (2022-11-14)
711
+
712
+ ### Features
713
+
714
+ - **charting:** add error message for empty category labels and non unique category labels ([8daa572](https://github.com/pie-framework/pie-lib/commit/8daa572b3f04b8b097f937cfb28ba527b6ea51f1))
715
+ - **charting:** rename chart types ([01bbcaa](https://github.com/pie-framework/pie-lib/commit/01bbcaad7702c2a2ddcc3c225a76ca94cfeea702))
716
+ - **charting:** rename chart types ([316389b](https://github.com/pie-framework/pie-lib/commit/316389b5315de50518aa39d0de3dbee23cc9f53c))
717
+ - **charting:** validation for category labels ([9f190fa](https://github.com/pie-framework/pie-lib/commit/9f190fa3626135f14e28bd7ac3517939af1aaf7a))
718
+
719
+ ## [5.3.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.3.0...@pie-lib/charting@5.3.1) (2022-10-31)
720
+
721
+ ### Bug Fixes
722
+
723
+ - **charting:** add sanity checks for range and domain ([b30ea68](https://github.com/pie-framework/pie-lib/commit/b30ea68c586115c0a081d8d974f508bd9c11be2f))
724
+
725
+ # [5.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.2.1...@pie-lib/charting@5.3.0) (2022-10-17)
726
+
727
+ ### Features
728
+
729
+ - **charting:** check configuration when changing chartType ([e3a0222](https://github.com/pie-framework/pie-lib/commit/e3a0222d4d2a2b2854d85f90114b1efffa2bc453))
730
+
731
+ ## [5.2.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.2.0...@pie-lib/charting@5.2.1) (2022-09-29)
732
+
733
+ ### Bug Fixes
734
+
735
+ - **charting:** fix left label position for define correct response and player chart ([4a50663](https://github.com/pie-framework/pie-lib/commit/4a5066351901cbe400180b1d19d9a54781eb726e))
736
+ - **charting:** make space for delete category buttons in define correct response and in player ([7c0f653](https://github.com/pie-framework/pie-lib/commit/7c0f6536f106099da9a9ab5a7328fed827841c5c))
737
+
738
+ # [5.2.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.1.8...@pie-lib/charting@5.2.0) (2022-09-28)
739
+
740
+ ### Bug Fixes
741
+
742
+ - **charting:** arrange the position of the checkboxes labels, fix style amd arrangement ([c5f2f7a](https://github.com/pie-framework/pie-lib/commit/c5f2f7acf60898e77ecc0b47b190256537605c8e))
743
+ - **charting:** change position for checbox labels in order to fit without overlapping the checboxes ([98a56cb](https://github.com/pie-framework/pie-lib/commit/98a56cbae47c4bcadd0d4087d6b7df3c4d5d3e2e))
744
+ - **charting:** fix conflicts ([2b3da1b](https://github.com/pie-framework/pie-lib/commit/2b3da1b4b87a518b5c18daf6f6c57db1ccc1c536))
745
+ - **charting:** increase height for category draggable zone ([922e107](https://github.com/pie-framework/pie-lib/commit/922e107101981358647937c12133fef6b78a6ea9))
746
+
747
+ ### Features
748
+
749
+ - **charting:** refactor ability to edit chart title and labels, fix style ([6edcdfb](https://github.com/pie-framework/pie-lib/commit/6edcdfbfbd83806a8487c29c42ae447b11850ac7))
750
+ - **charting:** try to set up labels for charting, work in progress ([c6cd049](https://github.com/pie-framework/pie-lib/commit/c6cd049723dadab329748511da2f6c4f1fa943db))
751
+ - **graphing, plot:** moved graphing labels to plot package + fixed math input + added support for labels rotation PD-1962 ([a85ec39](https://github.com/pie-framework/pie-lib/commit/a85ec3911dd1f6bc89e4eb20a19ef8f957deebf1))
752
+
753
+ ## [5.1.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.1.7...@pie-lib/charting@5.1.8) (2022-09-12)
754
+
755
+ **Note:** Version bump only for package @pie-lib/charting
756
+
757
+ ## [5.1.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.1.6...@pie-lib/charting@5.1.7) (2022-08-30)
758
+
759
+ ### Bug Fixes
760
+
761
+ - **plot, charting, graphing:** adjusted side pixel guides, fixed graphing rendering issue, adjusted charting dimensions PD-1963 ([5043231](https://github.com/pie-framework/pie-lib/commit/5043231ba73a0aa475115fb5fe9af29e0e67a4b6))
762
+
763
+ ## [5.1.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.1.5...@pie-lib/charting@5.1.6) (2022-08-29)
764
+
765
+ ### Bug Fixes
766
+
767
+ - **charting:** override grey background in IBX for chart disabled labels ([be882d4](https://github.com/pie-framework/pie-lib/commit/be882d40b7ebf88531bfb546252221673fa74dab))
768
+ - do not change range on cancel ([1a7c990](https://github.com/pie-framework/pie-lib/commit/1a7c990a0ddf5d0b8c05aa68d6af324dd386b7d3))
769
+
770
+ ## [5.1.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.1.4...@pie-lib/charting@5.1.5) (2022-08-15)
771
+
772
+ **Note:** Version bump only for package @pie-lib/charting
773
+
774
+ ## [5.1.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.1.3...@pie-lib/charting@5.1.4) (2022-08-01)
775
+
776
+ **Note:** Version bump only for package @pie-lib/charting
777
+
778
+ ## [5.1.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.1.2...@pie-lib/charting@5.1.3) (2022-08-01)
779
+
780
+ **Note:** Version bump only for package @pie-lib/charting
781
+
782
+ ## [5.1.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.1.1...@pie-lib/charting@5.1.2) (2022-07-12)
783
+
784
+ **Note:** Version bump only for package @pie-lib/charting
785
+
786
+ ## [5.1.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.1.0...@pie-lib/charting@5.1.1) (2022-07-12)
787
+
788
+ **Note:** Version bump only for package @pie-lib/charting
789
+
790
+ # [5.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@5.0.0...@pie-lib/charting@5.1.0) (2022-06-27)
791
+
792
+ ### Features
793
+
794
+ - **charting:** add constraints on max value for charting setup panel ([595c301](https://github.com/pie-framework/pie-lib/commit/595c301c6b10caf1921aa25f38897729c56ed47c))
795
+
796
+ # [5.0.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.5.18...@pie-lib/charting@5.0.0) (2022-06-13)
797
+
798
+ ### Bug Fixes
799
+
800
+ - updated shapshot ([4f4975d](https://github.com/pie-framework/pie-lib/commit/4f4975d9abd2c52365f7081e280d860149e7edd0))
801
+
802
+ ### Features
803
+
804
+ - **charting:** remove editCategoryEnabled property checkbox and usage ([3181fc0](https://github.com/pie-framework/pie-lib/commit/3181fc02ea83e408af5d930d5e10a85a2ded3dd4))
805
+ - **charting:** remove editCategoryEnabled property checkbox and usage ([b72de39](https://github.com/pie-framework/pie-lib/commit/b72de39525c0f9c0439204e65b2a7d330bb9061d))
806
+
807
+ ### BREAKING CHANGES
808
+
809
+ - **charting:** The editCategoryEnabled checkbox and property was removed.
810
+ Enabeled property will be used for each category.
811
+ - **charting:** The editCategoryEnabled propery has been removed
812
+
813
+ ## [4.5.18](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.5.17...@pie-lib/charting@4.5.18) (2022-06-13)
814
+
815
+ ### Bug Fixes
816
+
817
+ - revert possible breaking changes ([75acdf4](https://github.com/pie-framework/pie-lib/commit/75acdf4eb571694fc2069e7f7088ac25a7b3aceb))
818
+
819
+ ## [4.5.17](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.5.16...@pie-lib/charting@4.5.17) (2022-06-13)
820
+
821
+ **Note:** Version bump only for package @pie-lib/charting
822
+
823
+ ## [4.5.16](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.5.15...@pie-lib/charting@4.5.16) (2022-05-30)
824
+
825
+ ### Bug Fixes
826
+
827
+ - unable to load items locally ([17ab686](https://github.com/pie-framework/pie-lib/commit/17ab6864557288aef6ec1d9a130cb508e2591562))
828
+
829
+ ## [4.5.15](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.5.14...@pie-lib/charting@4.5.15) (2022-05-10)
830
+
831
+ **Note:** Version bump only for package @pie-lib/charting
832
+
833
+ ## [4.5.14](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.5.13...@pie-lib/charting@4.5.14) (2022-03-21)
834
+
835
+ ### Bug Fixes
836
+
837
+ - **charting:** Added custom modulo function to work with decimals PD-1645 ([70951ef](https://github.com/pie-framework/pie-lib/commit/70951ef055630f217094a42ec2d15282cf680c6b))
838
+
839
+ ## [4.5.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.5.12...@pie-lib/charting@4.5.13) (2021-09-10)
840
+
841
+ ### Bug Fixes
842
+
843
+ - **charting:** Displayed the entire rightmost category label when space available PD-531 ([4c96415](https://github.com/pie-framework/pie-lib/commit/4c96415))
844
+
845
+ ## [4.5.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.5.11...@pie-lib/charting@4.5.12) (2021-09-08)
846
+
847
+ **Note:** Version bump only for package @pie-lib/charting
848
+
849
+ ## [4.5.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.5.10...@pie-lib/charting@4.5.11) (2021-09-08)
850
+
851
+ ### Bug Fixes
852
+
853
+ - **charting:** calculate step and labelStep if they are not defined or if tickLabels are crowded PD-1016 ([d215ea0](https://github.com/pie-framework/pie-lib/commit/d215ea0))
854
+ - **charting:** Updated label font size ([d7905e0](https://github.com/pie-framework/pie-lib/commit/d7905e0))
855
+
856
+ ## [4.5.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.5.8...@pie-lib/charting@4.5.10) (2021-06-25)
857
+
858
+ **Note:** Version bump only for package @pie-lib/charting
859
+
860
+ ## [4.5.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.5.7...@pie-lib/charting@4.5.8) (2021-06-25)
861
+
862
+ ### Bug Fixes
863
+
864
+ - **charting:** Fixed the wrong horizontal position of a point on Line Dot - PD-31 ([7f58120](https://github.com/pie-framework/pie-lib/commit/7f58120))
865
+ - **charting:** override style to remove grey background behind labels in IBX PD-29 ([ee1a882](https://github.com/pie-framework/pie-lib/commit/ee1a882))
866
+ - **charting:** rotate category labels according to their length PD-537 ([a2f42fe](https://github.com/pie-framework/pie-lib/commit/a2f42fe))
867
+ - **charting:** Updated categories filtration - PD-535 ([a41cc00](https://github.com/pie-framework/pie-lib/commit/a41cc00))
868
+
869
+ ## [4.5.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.5.6...@pie-lib/charting@4.5.7) (2021-04-06)
870
+
871
+ **Note:** Version bump only for package @pie-lib/charting
872
+
873
+ ## [4.5.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.5.5...@pie-lib/charting@4.5.6) (2021-04-02)
874
+
875
+ ### Bug Fixes
876
+
877
+ - **charting:** align chart labels when they are rotated PD-921 ([1baf5b2](https://github.com/pie-framework/pie-lib/commit/1baf5b2))
878
+ - **charting:** enlarge the height of the draggable target PD-43 ([3d1b7e8](https://github.com/pie-framework/pie-lib/commit/3d1b7e8))
879
+ - **charting:** Increased labels size - PD-533 ([9d9095c](https://github.com/pie-framework/pie-lib/commit/9d9095c))
880
+
881
+ ## [4.5.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.5.4...@pie-lib/charting@4.5.5) (2021-03-15)
882
+
883
+ **Note:** Version bump only for package @pie-lib/charting
884
+
885
+ ## [4.5.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.5.3...@pie-lib/charting@4.5.4) (2021-02-15)
886
+
887
+ **Note:** Version bump only for package @pie-lib/charting
888
+
889
+ ## [4.5.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.5.1...@pie-lib/charting@4.5.3) (2021-02-15)
890
+
891
+ **Note:** Version bump only for package @pie-lib/charting
892
+
893
+ ## [4.5.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.5.0...@pie-lib/charting@4.5.1) (2020-10-26)
894
+
895
+ **Note:** Version bump only for package @pie-lib/charting
896
+
897
+ # [4.5.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.4.0...@pie-lib/charting@4.5.0) (2020-10-26)
898
+
899
+ ### Features
900
+
901
+ - **charting:** finalize color theme support ([b304cad](https://github.com/pie-framework/pie-lib/commit/b304cad))
902
+
903
+ # [4.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.3.1...@pie-lib/charting@4.4.0) (2020-10-15)
904
+
905
+ ### Features
906
+
907
+ - **charting:** color theme support fixes ([e83f9bd](https://github.com/pie-framework/pie-lib/commit/e83f9bd))
908
+
909
+ ## [4.3.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.3.0...@pie-lib/charting@4.3.1) (2020-10-08)
910
+
911
+ ### Bug Fixes
912
+
913
+ - bad src import ([a2d16ab](https://github.com/pie-framework/pie-lib/commit/a2d16ab))
914
+
915
+ # [4.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.2.22...@pie-lib/charting@4.3.0) (2020-10-07)
916
+
917
+ ### Features
918
+
919
+ - **charting:** add color theme support ([606d45e](https://github.com/pie-framework/pie-lib/commit/606d45e))
920
+
921
+ ## [4.2.22](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.2.21...@pie-lib/charting@4.2.22) (2020-05-15)
922
+
923
+ **Note:** Version bump only for package @pie-lib/charting
924
+
925
+ ## [4.2.21](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.2.20...@pie-lib/charting@4.2.21) (2020-04-14)
926
+
927
+ **Note:** Version bump only for package @pie-lib/charting
928
+
929
+ ## [4.2.20](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.2.19...@pie-lib/charting@4.2.20) (2020-04-08)
930
+
931
+ **Note:** Version bump only for package @pie-lib/charting
932
+
933
+ ## [4.2.19](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.2.18...@pie-lib/charting@4.2.19) (2020-03-31)
934
+
935
+ **Note:** Version bump only for package @pie-lib/charting
936
+
937
+ ## [4.2.18](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.2.17...@pie-lib/charting@4.2.18) (2020-03-31)
938
+
939
+ **Note:** Version bump only for package @pie-lib/charting
940
+
941
+ ## [4.2.17](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.2.16...@pie-lib/charting@4.2.17) (2020-03-31)
942
+
943
+ **Note:** Version bump only for package @pie-lib/charting
944
+
945
+ ## [4.2.16](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.2.15...@pie-lib/charting@4.2.16) (2020-03-30)
946
+
947
+ **Note:** Version bump only for package @pie-lib/charting
948
+
949
+ ## [4.2.15](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.2.14...@pie-lib/charting@4.2.15) (2020-03-30)
950
+
951
+ **Note:** Version bump only for package @pie-lib/charting
952
+
953
+ ## [4.2.14](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.2.13...@pie-lib/charting@4.2.14) (2020-03-30)
954
+
955
+ **Note:** Version bump only for package @pie-lib/charting
956
+
957
+ ## [4.2.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.2.12...@pie-lib/charting@4.2.13) (2020-03-30)
958
+
959
+ **Note:** Version bump only for package @pie-lib/charting
960
+
961
+ ## [4.2.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.2.11...@pie-lib/charting@4.2.12) (2020-03-30)
962
+
963
+ **Note:** Version bump only for package @pie-lib/charting
964
+
965
+ ## [4.2.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.2.10...@pie-lib/charting@4.2.11) (2020-03-30)
966
+
967
+ ### Bug Fixes
968
+
969
+ - correct export syntax ([b7b6b57](https://github.com/pie-framework/pie-lib/commit/b7b6b57))
970
+
971
+ ## [4.2.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.2.9...@pie-lib/charting@4.2.10) (2020-03-30)
972
+
973
+ ### Bug Fixes
974
+
975
+ - add module prop to package.json ([0d81793](https://github.com/pie-framework/pie-lib/commit/0d81793))
976
+
977
+ ## [4.2.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.2.8...@pie-lib/charting@4.2.9) (2020-03-18)
978
+
979
+ **Note:** Version bump only for package @pie-lib/charting
980
+
981
+ ## [4.2.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.2.7...@pie-lib/charting@4.2.8) (2020-02-18)
982
+
983
+ **Note:** Version bump only for package @pie-lib/charting
984
+
985
+ ## [4.2.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.2.6...@pie-lib/charting@4.2.7) (2020-02-11)
986
+
987
+ **Note:** Version bump only for package @pie-lib/charting
988
+
989
+ ## [4.2.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.2.5...@pie-lib/charting@4.2.6) (2019-12-10)
990
+
991
+ **Note:** Version bump only for package @pie-lib/charting
992
+
993
+ ## [4.2.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.2.4...@pie-lib/charting@4.2.5) (2019-12-10)
994
+
995
+ ### Bug Fixes
996
+
997
+ - raised up in ch5875: Added sanity checks for `size` property. ([82b2352](https://github.com/pie-framework/pie-lib/commit/82b2352))
998
+
999
+ ## [4.2.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.2.3...@pie-lib/charting@4.2.4) (2019-08-27)
1000
+
1001
+ ### Bug Fixes
1002
+
1003
+ - add missing dep ([68170c5](https://github.com/pie-framework/pie-lib/commit/68170c5))
1004
+
1005
+ ## [4.2.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.2.2...@pie-lib/charting@4.2.3) (2019-08-21)
1006
+
1007
+ **Note:** Version bump only for package @pie-lib/charting
1008
+
1009
+ ## [4.2.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.2.1...@pie-lib/charting@4.2.2) (2019-08-16)
1010
+
1011
+ **Note:** Version bump only for package @pie-lib/charting
1012
+
1013
+ ## [4.2.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.2.0...@pie-lib/charting@4.2.1) (2019-08-12)
1014
+
1015
+ **Note:** Version bump only for package @pie-lib/charting
1016
+
1017
+ # [4.2.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.1.6...@pie-lib/charting@4.2.0) (2019-08-05)
1018
+
1019
+ ### Features
1020
+
1021
+ - **charting:** Add/remove categories, edit categories, interactive category, calculate step if it is not defined. ([48520a7](https://github.com/pie-framework/pie-lib/commit/48520a7))
1022
+ - **charting:** Added Dot Plot chart type and Line Plot chart type. (WIP) ([b9cafc3](https://github.com/pie-framework/pie-lib/commit/b9cafc3))
1023
+ - **charting:** added Line with Crosses Chart Type. Add rotation on categories name if they do not fit. Fixed issue with editing category name. ([ae58893](https://github.com/pie-framework/pie-lib/commit/ae58893))
1024
+ - Added interactive (user can drag to change category value) and deletable (delete category) properties. ([b3b5377](https://github.com/pie-framework/pie-lib/commit/b3b5377))
1025
+ - **charting:** Completed Bar chart type, added Histogram chart type and added Line chart type. (WIP) ([271b173](https://github.com/pie-framework/pie-lib/commit/271b173))
1026
+
1027
+ ## [4.1.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.1.5...@pie-lib/charting@4.1.6) (2019-07-08)
1028
+
1029
+ **Note:** Version bump only for package @pie-lib/charting
1030
+
1031
+ ## [4.1.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.1.4...@pie-lib/charting@4.1.5) (2019-07-05)
1032
+
1033
+ **Note:** Version bump only for package @pie-lib/charting
1034
+
1035
+ ## [4.1.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.1.3...@pie-lib/charting@4.1.4) (2019-07-02)
1036
+
1037
+ **Note:** Version bump only for package @pie-lib/charting
1038
+
1039
+ ## [4.1.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.1.2...@pie-lib/charting@4.1.3) (2019-06-28)
1040
+
1041
+ **Note:** Version bump only for package @pie-lib/charting
1042
+
1043
+ ## [4.1.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.1.1...@pie-lib/charting@4.1.2) (2019-06-28)
1044
+
1045
+ **Note:** Version bump only for package @pie-lib/charting
1046
+
1047
+ ## [4.1.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.1.0...@pie-lib/charting@4.1.1) (2019-06-17)
1048
+
1049
+ **Note:** Version bump only for package @pie-lib/charting
1050
+
1051
+ # [4.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.0.13...@pie-lib/charting@4.1.0) (2019-06-12)
1052
+
1053
+ ### Features
1054
+
1055
+ - version bumps ([23eb54f](https://github.com/pie-framework/pie-lib/commit/23eb54f))
1056
+
1057
+ ## [4.0.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.0.12...@pie-lib/charting@4.0.13) (2019-03-15)
1058
+
1059
+ ### Bug Fixes
1060
+
1061
+ - rm child prepack in favour of root prepack ([381d8d6](https://github.com/pie-framework/pie-lib/commit/381d8d6))
1062
+
1063
+ ## [4.0.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.0.11...@pie-lib/charting@4.0.12) (2019-03-14)
1064
+
1065
+ **Note:** Version bump only for package @pie-lib/charting
1066
+
1067
+ ## [4.0.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.0.10...@pie-lib/charting@4.0.11) (2019-03-14)
1068
+
1069
+ **Note:** Version bump only for package @pie-lib/charting
1070
+
1071
+ ## [4.0.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.0.9...@pie-lib/charting@4.0.10) (2019-03-14)
1072
+
1073
+ **Note:** Version bump only for package @pie-lib/charting
1074
+
1075
+ ## [4.0.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.0.8...@pie-lib/charting@4.0.9) (2019-03-14)
1076
+
1077
+ **Note:** Version bump only for package @pie-lib/charting
1078
+
1079
+ ## [4.0.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.0.7...@pie-lib/charting@4.0.8) (2019-03-13)
1080
+
1081
+ **Note:** Version bump only for package @pie-lib/charting
1082
+
1083
+ ## [4.0.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.0.6...@pie-lib/charting@4.0.7) (2019-03-13)
1084
+
1085
+ **Note:** Version bump only for package @pie-lib/charting
1086
+
1087
+ ## [4.0.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.0.5...@pie-lib/charting@4.0.6) (2019-03-13)
1088
+
1089
+ **Note:** Version bump only for package @pie-lib/charting
1090
+
1091
+ ## [4.0.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.0.3...@pie-lib/charting@4.0.5) (2019-02-17)
1092
+
1093
+ ### Bug Fixes
1094
+
1095
+ - force version bump ([dd057a5](https://github.com/pie-framework/pie-lib/commit/dd057a5))
1096
+
1097
+ ## [4.0.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.0.2...@pie-lib/charting@4.0.3) (2019-02-17)
1098
+
1099
+ **Note:** Version bump only for package @pie-lib/charting
1100
+
1101
+ ## [4.0.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@4.0.0...@pie-lib/charting@4.0.2) (2019-01-30)
1102
+
1103
+ ### Bug Fixes
1104
+
1105
+ - version bump ([d1624c8](https://github.com/pie-framework/pie-lib/commit/d1624c8))
1106
+
1107
+ # [4.0.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@2.3.5...@pie-lib/charting@4.0.0) (2019-01-30)
1108
+
1109
+ ### Features
1110
+
1111
+ - charting re-write to fit our requirements. ([ca5cbf7](https://github.com/pie-framework/pie-lib/commit/ca5cbf7))
1112
+
1113
+ ### BREAKING CHANGES
1114
+
1115
+ - This has a number of new components. The old components
1116
+ are gone.