@pie-lib/plot 4.0.4-next.30 → 4.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 (59) hide show
  1. package/CHANGELOG.json +17 -0
  2. package/CHANGELOG.md +838 -0
  3. package/LICENSE.md +5 -0
  4. package/lib/draggable.js +44 -0
  5. package/lib/draggable.js.map +1 -0
  6. package/lib/graph-props.js +46 -0
  7. package/lib/graph-props.js.map +1 -0
  8. package/lib/grid-draggable.js +361 -0
  9. package/lib/grid-draggable.js.map +1 -0
  10. package/lib/index.js +44 -0
  11. package/lib/index.js.map +1 -0
  12. package/lib/label.js +173 -0
  13. package/lib/label.js.map +1 -0
  14. package/lib/root.js +474 -0
  15. package/lib/root.js.map +1 -0
  16. package/lib/trig.js +149 -0
  17. package/lib/trig.js.map +1 -0
  18. package/lib/types.js +40 -0
  19. package/lib/types.js.map +1 -0
  20. package/lib/utils.js +165 -0
  21. package/lib/utils.js.map +1 -0
  22. package/package.json +25 -35
  23. package/src/__tests__/draggable.test.jsx +41 -0
  24. package/src/__tests__/grid-draggable.test.jsx +487 -0
  25. package/src/__tests__/root.test.jsx +277 -0
  26. package/src/__tests__/trig.test.js +163 -0
  27. package/src/__tests__/utils.test.js +229 -0
  28. package/src/draggable.jsx +11 -0
  29. package/src/graph-props.js +34 -0
  30. package/src/grid-draggable.jsx +332 -0
  31. package/src/index.js +9 -0
  32. package/src/label.jsx +199 -0
  33. package/src/root.jsx +485 -0
  34. package/src/trig.js +151 -0
  35. package/src/types.js +41 -0
  36. package/src/utils.js +167 -0
  37. package/dist/_virtual/_rolldown/runtime.js +0 -20
  38. package/dist/draggable.d.ts +0 -13
  39. package/dist/draggable.js +0 -13
  40. package/dist/graph-props.d.ts +0 -22
  41. package/dist/graph-props.js +0 -29
  42. package/dist/grid-draggable.d.ts +0 -91
  43. package/dist/grid-draggable.js +0 -168
  44. package/dist/index.d.ts +0 -16
  45. package/dist/index.js +0 -8
  46. package/dist/label.d.ts +0 -30
  47. package/dist/label.js +0 -132
  48. package/dist/node_modules/.bun/clsx@2.1.1/node_modules/clsx/dist/clsx.js +0 -16
  49. package/dist/node_modules/.bun/invariant@2.2.4/node_modules/invariant/browser.js +0 -28
  50. package/dist/node_modules/.bun/react-draggable@4.6.0_6dbf9a050bc9aadb/node_modules/react-draggable/build/cjs/chunk-D5BXCJ5G.js +0 -503
  51. package/dist/node_modules/.bun/react-draggable@4.6.0_6dbf9a050bc9aadb/node_modules/react-draggable/build/cjs/cjs.js +0 -5
  52. package/dist/root.d.ts +0 -68
  53. package/dist/root.js +0 -302
  54. package/dist/trig.d.ts +0 -41
  55. package/dist/trig.js +0 -47
  56. package/dist/types.d.ts +0 -125
  57. package/dist/types.js +0 -46
  58. package/dist/utils.d.ts +0 -44
  59. package/dist/utils.js +0 -82
package/CHANGELOG.md ADDED
@@ -0,0 +1,838 @@
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
+ ## [4.0.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@4.0.2...@pie-lib/plot@4.0.3) (2026-05-15)
7
+
8
+ **Note:** Version bump only for package @pie-lib/plot
9
+
10
+ ## [4.0.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@4.0.2-next.3...@pie-lib/plot@4.0.2) (2026-05-07)
11
+
12
+ **Note:** Version bump only for package @pie-lib/plot
13
+
14
+ ## [4.0.2-next.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@4.0.2-next.2...@pie-lib/plot@4.0.2-next.3) (2026-05-07)
15
+
16
+ **Note:** Version bump only for package @pie-lib/plot
17
+
18
+ ## [4.0.2-next.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@4.0.2-next.1...@pie-lib/plot@4.0.2-next.2) (2026-05-06)
19
+
20
+ **Note:** Version bump only for package @pie-lib/plot
21
+
22
+ ## [4.0.2-next.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@4.0.2-next.0...@pie-lib/plot@4.0.2-next.1) (2026-05-06)
23
+
24
+ **Note:** Version bump only for package @pie-lib/plot
25
+
26
+ ## [4.0.2-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.15...@pie-lib/plot@4.0.2-next.0) (2026-05-06)
27
+
28
+ ### Bug Fixes
29
+
30
+ - add stopPropagation to onStop calls in gridDraggable tests ([6049268](https://github.com/pie-framework/pie-lib/commit/6049268d91b0498285df1ac3ad628f45f328be93))
31
+ - enhance drag handling and prevent click interference in draggable components. fix auto input label PIE-428 ([cc06766](https://github.com/pie-framework/pie-lib/commit/cc06766fab6960356f3e7f8975da1f12f3358a9e))
32
+ - ensure onClick is called for existing mark points/lines and does not interfere with drag PIE-426 PIE-427 ([1cb4f00](https://github.com/pie-framework/pie-lib/commit/1cb4f00118ff24ddffe4c1ee2a091daccafa4d15))
33
+ - **graphing/plot:** improve drag handling to prevent misidentifying clicks as drags PD-5598 ([40a65a3](https://github.com/pie-framework/pie-lib/commit/40a65a312ec06227309fceac848bb8c7a266b1bb))
34
+ - **plot:** center placeholder PIE-171 ([dd61600](https://github.com/pie-framework/pie-lib/commit/dd61600afa15b20b309624514b5b2945dfd090e0))
35
+ - **plot:** remove unnecessary space, prevent new lines, center placeholder PD-5674 ([9840d80](https://github.com/pie-framework/pie-lib/commit/9840d80a1351f19adbe3396d3abae5fb4e310494))
36
+ - **plot:** set boxSizing for svg to avoid dif env overwrite the default PIE-74 ([17d4e83](https://github.com/pie-framework/pie-lib/commit/17d4e83f8300dbe7e5dc797b76660f685f1f1dc6))
37
+ - refactor drag event handling to use reusable mockStartEvent for consistency ([5afea30](https://github.com/pie-framework/pie-lib/commit/5afea30ead6caa387fa1822c7d498069b704d9c8))
38
+
39
+ ## [4.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@4.0.0...@pie-lib/plot@4.0.1) (2026-04-28)
40
+
41
+ **Note:** Version bump only for package @pie-lib/plot
42
+
43
+ # [3.2.0-next.38](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.37...@pie-lib/plot@3.2.0-next.38) (2026-04-24)
44
+
45
+ ### Bug Fixes
46
+
47
+ - enhance drag handling and prevent click interference in draggable components. fix auto input label PIE-428 ([cc06766](https://github.com/pie-framework/pie-lib/commit/cc06766fab6960356f3e7f8975da1f12f3358a9e))
48
+ - refactor drag event handling to use reusable mockStartEvent for consistency ([5afea30](https://github.com/pie-framework/pie-lib/commit/5afea30ead6caa387fa1822c7d498069b704d9c8))
49
+
50
+ # [3.2.0-next.37](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.36...@pie-lib/plot@3.2.0-next.37) (2026-04-24)
51
+
52
+ ### Bug Fixes
53
+
54
+ - add stopPropagation to onStop calls in gridDraggable tests ([6049268](https://github.com/pie-framework/pie-lib/commit/6049268d91b0498285df1ac3ad628f45f328be93))
55
+ - ensure onClick is called for existing mark points/lines and does not interfere with drag PIE-426 PIE-427 ([1cb4f00](https://github.com/pie-framework/pie-lib/commit/1cb4f00118ff24ddffe4c1ee2a091daccafa4d15))
56
+
57
+ # [3.2.0-next.36](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.35...@pie-lib/plot@3.2.0-next.36) (2026-04-23)
58
+
59
+ ### Bug Fixes
60
+
61
+ - **plot:** center placeholder PIE-171 ([dd61600](https://github.com/pie-framework/pie-lib/commit/dd61600afa15b20b309624514b5b2945dfd090e0))
62
+
63
+ # [3.2.0-next.35](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.34...@pie-lib/plot@3.2.0-next.35) (2026-04-17)
64
+
65
+ **Note:** Version bump only for package @pie-lib/plot
66
+
67
+ # [3.2.0-next.34](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.33...@pie-lib/plot@3.2.0-next.34) (2026-04-16)
68
+
69
+ **Note:** Version bump only for package @pie-lib/plot
70
+
71
+ # [3.2.0-next.33](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.32...@pie-lib/plot@3.2.0-next.33) (2026-04-16)
72
+
73
+ **Note:** Version bump only for package @pie-lib/plot
74
+
75
+ # [3.2.0-next.32](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.31...@pie-lib/plot@3.2.0-next.32) (2026-04-16)
76
+
77
+ **Note:** Version bump only for package @pie-lib/plot
78
+
79
+ # [3.2.0-next.31](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.30...@pie-lib/plot@3.2.0-next.31) (2026-04-15)
80
+
81
+ **Note:** Version bump only for package @pie-lib/plot
82
+
83
+ # [3.2.0-next.30](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.29...@pie-lib/plot@3.2.0-next.30) (2026-04-15)
84
+
85
+ **Note:** Version bump only for package @pie-lib/plot
86
+
87
+ # [3.2.0-next.29](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.28...@pie-lib/plot@3.2.0-next.29) (2026-04-14)
88
+
89
+ **Note:** Version bump only for package @pie-lib/plot
90
+
91
+ # [3.2.0-next.28](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.27...@pie-lib/plot@3.2.0-next.28) (2026-04-13)
92
+
93
+ **Note:** Version bump only for package @pie-lib/plot
94
+
95
+ # [3.2.0-next.27](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.26...@pie-lib/plot@3.2.0-next.27) (2026-04-09)
96
+
97
+ **Note:** Version bump only for package @pie-lib/plot
98
+
99
+ # [3.2.0-next.26](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.25...@pie-lib/plot@3.2.0-next.26) (2026-04-09)
100
+
101
+ **Note:** Version bump only for package @pie-lib/plot
102
+
103
+ # [3.2.0-next.25](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.24...@pie-lib/plot@3.2.0-next.25) (2026-04-08)
104
+
105
+ **Note:** Version bump only for package @pie-lib/plot
106
+
107
+ # [3.2.0-next.24](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.23...@pie-lib/plot@3.2.0-next.24) (2026-04-07)
108
+
109
+ ### Bug Fixes
110
+
111
+ - **plot:** set boxSizing for svg to avoid dif env overwrite the default PIE-74 ([17d4e83](https://github.com/pie-framework/pie-lib/commit/17d4e83f8300dbe7e5dc797b76660f685f1f1dc6))
112
+
113
+ # [3.2.0-next.23](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.22...@pie-lib/plot@3.2.0-next.23) (2026-04-06)
114
+
115
+ **Note:** Version bump only for package @pie-lib/plot
116
+
117
+ # [3.2.0-next.22](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.21...@pie-lib/plot@3.2.0-next.22) (2026-04-03)
118
+
119
+ ### Bug Fixes
120
+
121
+ - **graphing/plot:** improve drag handling to prevent misidentifying clicks as drags PD-5598 ([40a65a3](https://github.com/pie-framework/pie-lib/commit/40a65a312ec06227309fceac848bb8c7a266b1bb))
122
+ - **plot:** remove unnecessary space, prevent new lines, center placeholder PD-5674 ([9840d80](https://github.com/pie-framework/pie-lib/commit/9840d80a1351f19adbe3396d3abae5fb4e310494))
123
+
124
+ # [3.2.0-next.21](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.20...@pie-lib/plot@3.2.0-next.21) (2026-03-31)
125
+
126
+ **Note:** Version bump only for package @pie-lib/plot
127
+
128
+ # [3.2.0-next.20](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.19...@pie-lib/plot@3.2.0-next.20) (2026-03-25)
129
+
130
+ **Note:** Version bump only for package @pie-lib/plot
131
+
132
+ # [3.2.0-next.19](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.18...@pie-lib/plot@3.2.0-next.19) (2026-03-18)
133
+
134
+ **Note:** Version bump only for package @pie-lib/plot
135
+
136
+ # [3.2.0-next.18](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.17...@pie-lib/plot@3.2.0-next.18) (2026-03-18)
137
+
138
+ **Note:** Version bump only for package @pie-lib/plot
139
+
140
+ # [3.2.0-next.17](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.16...@pie-lib/plot@3.2.0-next.17) (2026-03-18)
141
+
142
+ **Note:** Version bump only for package @pie-lib/plot
143
+
144
+ # [3.2.0-next.16](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.15...@pie-lib/plot@3.2.0-next.16) (2026-03-11)
145
+
146
+ **Note:** Version bump only for package @pie-lib/plot
147
+
148
+ # [3.2.0-next.15](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.14...@pie-lib/plot@3.2.0-next.15) (2026-03-11)
149
+
150
+ **Note:** Version bump only for package @pie-lib/plot
151
+
152
+ # [3.2.0-next.14](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.13...@pie-lib/plot@3.2.0-next.14) (2026-03-09)
153
+
154
+ **Note:** Version bump only for package @pie-lib/plot
155
+
156
+ # [3.2.0-next.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.12...@pie-lib/plot@3.2.0-next.13) (2026-03-06)
157
+
158
+ **Note:** Version bump only for package @pie-lib/plot
159
+
160
+ # [3.2.0-next.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.11...@pie-lib/plot@3.2.0-next.12) (2026-03-04)
161
+
162
+ **Note:** Version bump only for package @pie-lib/plot
163
+
164
+ # [3.2.0-next.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.9...@pie-lib/plot@3.2.0-next.11) (2026-02-26)
165
+
166
+ **Note:** Version bump only for package @pie-lib/plot
167
+
168
+ # [3.2.0-next.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.8...@pie-lib/plot@3.2.0-next.9) (2026-02-25)
169
+
170
+ **Note:** Version bump only for package @pie-lib/plot
171
+
172
+ # [3.2.0-next.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.7...@pie-lib/plot@3.2.0-next.8) (2026-02-25)
173
+
174
+ ### Bug Fixes
175
+
176
+ - **deps:** update [@pie-lib](https://github.com/pie-lib) dependencies to published versions ([134fbdc](https://github.com/pie-framework/pie-lib/commit/134fbdc90c6a15f89a736340578d70fb80a983b3))
177
+
178
+ # [3.2.0-next.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.6...@pie-lib/plot@3.2.0-next.7) (2026-02-25)
179
+
180
+ **Note:** Version bump only for package @pie-lib/plot
181
+
182
+ # [3.2.0-next.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.5...@pie-lib/plot@3.2.0-next.6) (2026-02-25)
183
+
184
+ **Note:** Version bump only for package @pie-lib/plot
185
+
186
+ # [3.2.0-next.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.4...@pie-lib/plot@3.2.0-next.5) (2026-02-25)
187
+
188
+ ### Bug Fixes
189
+
190
+ - **plot:** add a small buffer to ensure we can reach the boudaries PD-5498 ([e71922d](https://github.com/pie-framework/pie-lib/commit/e71922d80e60dc013ea97c8818ee3458ecf85ba8))
191
+
192
+ # [3.2.0-next.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.3...@pie-lib/plot@3.2.0-next.4) (2026-02-24)
193
+
194
+ **Note:** Version bump only for package @pie-lib/plot
195
+
196
+ # [3.2.0-next.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.2.0-next.1...@pie-lib/plot@3.2.0-next.3) (2026-02-24)
197
+
198
+ ### Bug Fixes
199
+
200
+ - made sure placeholder works, math item does not blur editor, table toolbar contains correct extensions [PD-5616] [PD-5584] [PD-5627] ([9bc768f](https://github.com/pie-framework/pie-lib/commit/9bc768f4e4301f91cc768475f0defa545ee7b43d))
201
+
202
+ # [3.1.0-next.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.1.0-next.2...@pie-lib/plot@3.1.0-next.4) (2026-01-27)
203
+
204
+ **Note:** Version bump only for package @pie-lib/plot
205
+
206
+ # [3.1.0-next.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@3.1.0-next.1...@pie-lib/plot@3.1.0-next.2) (2026-01-26)
207
+
208
+ **Note:** Version bump only for package @pie-lib/plot
209
+
210
+ # [3.1.0-next.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.27.2...@pie-lib/plot@3.1.0-next.1) (2026-01-26)
211
+
212
+ ### Bug Fixes
213
+
214
+ - 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))
215
+ - remove carret, point to specific libs version ([09939a5](https://github.com/pie-framework/pie-lib/commit/09939a5aca19d7dda03d62c93d4d524f98dd69da))
216
+ - remove exports and publish ([#2068](https://github.com/pie-framework/pie-lib/issues/2068)) ([60a96cd](https://github.com/pie-framework/pie-lib/commit/60a96cde0ec65f6b1cac0ae329aa33a0abc50d05))
217
+ - updated tip-tap with mui instead of material-ui [PD-5141] ([880d3ab](https://github.com/pie-framework/pie-lib/commit/880d3ab1d63aa12c7e975c882f50624200565737))
218
+ - **plot:** fix focus PD-5452 ([882207c](https://github.com/pie-framework/pie-lib/commit/882207c6a1155a8e5818f5c7966239f8f341a0a6))
219
+ - use fixed lib deps ([de7c64d](https://github.com/pie-framework/pie-lib/commit/de7c64d14f13259fe44d47405e4421baef21e24e))
220
+
221
+ ### Features
222
+
223
+ - bump react and react-dom ([01dc19e](https://github.com/pie-framework/pie-lib/commit/01dc19e88bbc8d372c561d1511df1a82937d45af))
224
+ - migrate from [@vx](https://github.com/vx) library to [@visx](https://github.com/visx) ([135bf60](https://github.com/pie-framework/pie-lib/commit/135bf605161bfbd0070ac181892df20931691ce3))
225
+ - packages/plot mui update PD-5268 ([6456853](https://github.com/pie-framework/pie-lib/commit/645685333cb277208ca197b2853a3780edc92b15))
226
+ - sync latest changes from dev ([c936e9c](https://github.com/pie-framework/pie-lib/commit/c936e9c7f9e095e7d9b9805ac2bf72bd271e05f1))
227
+
228
+ # [3.0.0-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.27.3-next.0...@pie-lib/plot@3.0.0-next.0) (2026-01-19)
229
+
230
+ **Note:** Version bump only for package @pie-lib/plot
231
+
232
+ ## [2.27.3-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.41.0-mui-update.0...@pie-lib/plot@2.27.3-next.0) (2026-01-19)
233
+
234
+ ### Bug Fixes
235
+
236
+ - **plot:** fix focus PD-5452 ([882207c](https://github.com/pie-framework/pie-lib/commit/882207c6a1155a8e5818f5c7966239f8f341a0a6))
237
+
238
+ ## [2.27.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.27.1...@pie-lib/plot@2.27.2) (2025-11-27)
239
+
240
+ **Note:** Version bump only for package @pie-lib/plot
241
+
242
+ ## [2.27.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.23.2...@pie-lib/plot@2.27.1) (2025-10-22)
243
+
244
+ **Note:** Version bump only for package @pie-lib/plot
245
+
246
+ # [2.27.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.26.0...@pie-lib/plot@2.27.0) (2025-10-16)
247
+
248
+ **Note:** Version bump only for package @pie-lib/plot
249
+
250
+ # [2.26.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.23.0...@pie-lib/plot@2.26.0) (2025-10-16)
251
+
252
+ ### Bug Fixes
253
+
254
+ - **plot/graphing:** add title height calculations through observer PD-5208 ([f993541](https://github.com/pie-framework/pie-lib/commit/f99354174b23dcd6a1f3524a15f9b64c4041d7e2))
255
+
256
+ # [2.25.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.23.0...@pie-lib/plot@2.25.0) (2025-10-16)
257
+
258
+ ### Bug Fixes
259
+
260
+ - **plot/graphing:** add title height calculations through observer PD-5208 ([f993541](https://github.com/pie-framework/pie-lib/commit/f99354174b23dcd6a1f3524a15f9b64c4041d7e2))
261
+
262
+ # [2.24.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.23.0...@pie-lib/plot@2.24.0) (2025-10-16)
263
+
264
+ ### Bug Fixes
265
+
266
+ - **plot/graphing:** add title height calculations through observer PD-5208 ([f993541](https://github.com/pie-framework/pie-lib/commit/f99354174b23dcd6a1f3524a15f9b64c4041d7e2))
267
+
268
+ ## [2.23.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.23.1...@pie-lib/plot@2.23.2) (2025-10-14)
269
+
270
+ **Note:** Version bump only for package @pie-lib/plot
271
+
272
+ ## [2.23.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.23.0...@pie-lib/plot@2.23.1) (2025-10-09)
273
+
274
+ ### Bug Fixes
275
+
276
+ - **plot/graphing:** add title height calculations through observer PD-5208 ([f993541](https://github.com/pie-framework/pie-lib/commit/f99354174b23dcd6a1f3524a15f9b64c4041d7e2))
277
+
278
+ # [2.23.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.23.0) (2025-09-25)
279
+
280
+ ### Bug Fixes
281
+
282
+ - fixed pie-lib/icons import [PD-5126](<[dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f)>)
283
+
284
+ ### Features
285
+
286
+ - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
287
+
288
+ # [2.22.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.21.0...@pie-lib/plot@2.22.0) (2025-09-18)
289
+
290
+ **Note:** Version bump only for package @pie-lib/plot
291
+
292
+ # [2.21.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.20.0...@pie-lib/plot@2.21.0) (2025-09-18)
293
+
294
+ **Note:** Version bump only for package @pie-lib/plot
295
+
296
+ # [2.20.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.20.0) (2025-09-18)
297
+
298
+ ### Bug Fixes
299
+
300
+ - fixed pie-lib/icons import [PD-5126](<[dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f)>)
301
+
302
+ ### Features
303
+
304
+ - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
305
+
306
+ # [2.19.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.18.0...@pie-lib/plot@2.19.0) (2025-09-17)
307
+
308
+ **Note:** Version bump only for package @pie-lib/plot
309
+
310
+ # [2.18.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.17.0...@pie-lib/plot@2.18.0) (2025-09-17)
311
+
312
+ **Note:** Version bump only for package @pie-lib/plot
313
+
314
+ # [2.17.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.16.1...@pie-lib/plot@2.17.0) (2025-09-17)
315
+
316
+ **Note:** Version bump only for package @pie-lib/plot
317
+
318
+ ## [2.16.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.16.1) (2025-08-11)
319
+
320
+ ### Bug Fixes
321
+
322
+ - fixed pie-lib/icons import [PD-5126](<[dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f)>)
323
+
324
+ ### Features
325
+
326
+ - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
327
+
328
+ # [2.16.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.16.0) (2025-08-07)
329
+
330
+ ### Features
331
+
332
+ - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
333
+
334
+ # [2.15.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.15.0) (2025-07-31)
335
+
336
+ **Note:** Version bump only for package @pie-lib/plot
337
+
338
+ # [2.14.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.14.0) (2025-07-31)
339
+
340
+ **Note:** Version bump only for package @pie-lib/plot
341
+
342
+ # [2.13.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.13.0) (2025-07-31)
343
+
344
+ **Note:** Version bump only for package @pie-lib/plot
345
+
346
+ # [2.12.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.12.0) (2025-07-31)
347
+
348
+ **Note:** Version bump only for package @pie-lib/plot
349
+
350
+ # [2.11.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.11.0) (2025-07-31)
351
+
352
+ **Note:** Version bump only for package @pie-lib/plot
353
+
354
+ # [2.10.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.10.0) (2025-07-31)
355
+
356
+ **Note:** Version bump only for package @pie-lib/plot
357
+
358
+ # [2.12.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.12.0) (2025-07-31)
359
+
360
+ **Note:** Version bump only for package @pie-lib/plot
361
+
362
+ # [2.11.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.11.0) (2025-07-31)
363
+
364
+ **Note:** Version bump only for package @pie-lib/plot
365
+
366
+ # [2.10.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.10.0) (2025-07-31)
367
+
368
+ **Note:** Version bump only for package @pie-lib/plot
369
+
370
+ # [2.11.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.11.0) (2025-07-31)
371
+
372
+ **Note:** Version bump only for package @pie-lib/plot
373
+
374
+ # [2.10.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.10.0) (2025-07-31)
375
+
376
+ **Note:** Version bump only for package @pie-lib/plot
377
+
378
+ # [2.9.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.9.0) (2025-07-31)
379
+
380
+ **Note:** Version bump only for package @pie-lib/plot
381
+
382
+ # [2.9.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.9.0) (2025-07-31)
383
+
384
+ **Note:** Version bump only for package @pie-lib/plot
385
+
386
+ # [2.10.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.10.0) (2025-07-31)
387
+
388
+ **Note:** Version bump only for package @pie-lib/plot
389
+
390
+ # [2.9.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.9.0) (2025-07-31)
391
+
392
+ **Note:** Version bump only for package @pie-lib/plot
393
+
394
+ # [2.8.0-beta.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.8.0-beta.8) (2025-07-25)
395
+
396
+ **Note:** Version bump only for package @pie-lib/plot
397
+
398
+ # [2.8.0-beta.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.8.0-beta.7) (2025-07-25)
399
+
400
+ **Note:** Version bump only for package @pie-lib/plot
401
+
402
+ # [2.8.0-beta.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.8.0-beta.7) (2025-07-25)
403
+
404
+ **Note:** Version bump only for package @pie-lib/plot
405
+
406
+ # [2.8.0-beta.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.8.0-beta.6) (2025-07-25)
407
+
408
+ **Note:** Version bump only for package @pie-lib/plot
409
+
410
+ # [2.8.0-beta.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.8.0-beta.6) (2025-07-25)
411
+
412
+ **Note:** Version bump only for package @pie-lib/plot
413
+
414
+ # [2.8.0-beta.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.8.0-beta.5) (2025-07-25)
415
+
416
+ **Note:** Version bump only for package @pie-lib/plot
417
+
418
+ # [2.8.0-beta.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.8.0-beta.5) (2025-07-25)
419
+
420
+ **Note:** Version bump only for package @pie-lib/plot
421
+
422
+ # [2.8.0-beta.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.8.0-beta.4) (2025-07-25)
423
+
424
+ **Note:** Version bump only for package @pie-lib/plot
425
+
426
+ # [2.8.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.8.0-beta.3) (2025-07-25)
427
+
428
+ **Note:** Version bump only for package @pie-lib/plot
429
+
430
+ # [2.8.0-beta.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.8.0-beta.4) (2025-07-23)
431
+
432
+ **Note:** Version bump only for package @pie-lib/plot
433
+
434
+ # [2.8.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.8.0-beta.3) (2025-07-23)
435
+
436
+ **Note:** Version bump only for package @pie-lib/plot
437
+
438
+ # [2.8.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.8.0-beta.3) (2025-07-20)
439
+
440
+ **Note:** Version bump only for package @pie-lib/plot
441
+
442
+ # [2.8.0-beta.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.8.0-beta.2) (2025-07-20)
443
+
444
+ **Note:** Version bump only for package @pie-lib/plot
445
+
446
+ # [2.8.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.8.0-beta.1) (2025-07-20)
447
+
448
+ **Note:** Version bump only for package @pie-lib/plot
449
+
450
+ # [2.8.0-beta.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.8.0-beta.2) (2025-07-20)
451
+
452
+ **Note:** Version bump only for package @pie-lib/plot
453
+
454
+ # [2.8.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.8.0-beta.1) (2025-07-20)
455
+
456
+ **Note:** Version bump only for package @pie-lib/plot
457
+
458
+ # [2.8.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.8.0-beta.1) (2025-07-20)
459
+
460
+ **Note:** Version bump only for package @pie-lib/plot
461
+
462
+ # [2.8.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.8.0-beta.0) (2025-07-20)
463
+
464
+ **Note:** Version bump only for package @pie-lib/plot
465
+
466
+ # [2.9.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.9.0-beta.0) (2025-07-15)
467
+
468
+ **Note:** Version bump only for package @pie-lib/plot
469
+
470
+ # [2.8.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.3...@pie-lib/plot@2.8.0-beta.0) (2025-07-15)
471
+
472
+ **Note:** Version bump only for package @pie-lib/plot
473
+
474
+ ## [2.7.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.2...@pie-lib/plot@2.7.3) (2023-10-16)
475
+
476
+ ### Bug Fixes
477
+
478
+ - **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))
479
+ - **charting:** wip PD-3105 ([f2f8234](https://github.com/pie-framework/pie-lib/commit/f2f82343a373ae1a8f669754a061963cbfdbeb08))
480
+ - **charting:** wip PD-3105 revert push in develop ([6cce5e2](https://github.com/pie-framework/pie-lib/commit/6cce5e2d25d079c1c3eb195425dc2cf016fcd36e))
481
+
482
+ ## [2.7.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.1...@pie-lib/plot@2.7.2) (2023-06-24)
483
+
484
+ **Note:** Version bump only for package @pie-lib/plot
485
+
486
+ ## [2.7.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.7.0...@pie-lib/plot@2.7.1) (2023-06-13)
487
+
488
+ **Note:** Version bump only for package @pie-lib/plot
489
+
490
+ # [2.7.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.6.13...@pie-lib/plot@2.7.0) (2023-06-12)
491
+
492
+ ### Features
493
+
494
+ - started adding new mathMLOptions property PD-2150 ([175b45e](https://github.com/pie-framework/pie-lib/commit/175b45ecd98e9cc703bd7056b930f299a4345c75))
495
+
496
+ ## [2.6.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.6.12...@pie-lib/plot@2.6.13) (2023-04-19)
497
+
498
+ ### Bug Fixes
499
+
500
+ - **eslint:** fix eslint problems-PD-2732 ([9eb9976](https://github.com/pie-framework/pie-lib/commit/9eb9976749753da86e1057a07bd2cfc65bf64ae4))
501
+
502
+ ## [2.6.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.6.10...@pie-lib/plot@2.6.12) (2023-01-31)
503
+
504
+ **Note:** Version bump only for package @pie-lib/plot
505
+
506
+ ## [2.6.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.6.9...@pie-lib/plot@2.6.10) (2023-01-31)
507
+
508
+ **Note:** Version bump only for package @pie-lib/plot
509
+
510
+ ## [2.6.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.6.8...@pie-lib/plot@2.6.9) (2023-01-31)
511
+
512
+ **Note:** Version bump only for package @pie-lib/plot
513
+
514
+ ## [2.6.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.6.7...@pie-lib/plot@2.6.8) (2023-01-31)
515
+
516
+ **Note:** Version bump only for package @pie-lib/plot
517
+
518
+ ## [2.6.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.6.4...@pie-lib/plot@2.6.7) (2023-01-31)
519
+
520
+ **Note:** Version bump only for package @pie-lib/plot
521
+
522
+ ## [2.6.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.6.2...@pie-lib/plot@2.6.4) (2023-01-31)
523
+
524
+ **Note:** Version bump only for package @pie-lib/plot
525
+
526
+ ## [2.6.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.6.0...@pie-lib/plot@2.6.2) (2023-01-31)
527
+
528
+ **Note:** Version bump only for package @pie-lib/plot
529
+
530
+ # [2.6.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.5.4...@pie-lib/plot@2.6.0) (2023-01-16)
531
+
532
+ ### Features
533
+
534
+ - added theme naming support + cleanup ([72d562d](https://github.com/pie-framework/pie-lib/commit/72d562d509e5d31d883690eb455a9afea6bf54fc))
535
+
536
+ ## [2.5.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.5.3...@pie-lib/plot@2.5.4) (2023-01-03)
537
+
538
+ ### Bug Fixes
539
+
540
+ - **graphing:** fix axis label rotation for ios devices ([08abe86](https://github.com/pie-framework/pie-lib/commit/08abe8664ad0a7221a58baec8c451da509471734))
541
+
542
+ ## [2.5.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.5.2...@pie-lib/plot@2.5.3) (2022-11-23)
543
+
544
+ **Note:** Version bump only for package @pie-lib/plot
545
+
546
+ ## [2.5.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.5.1...@pie-lib/plot@2.5.2) (2022-10-17)
547
+
548
+ ### Bug Fixes
549
+
550
+ - **charting:** increase font size for axis labels and title ([50a10c4](https://github.com/pie-framework/pie-lib/commit/50a10c43a758726106cd6320191b992613389839))
551
+
552
+ ## [2.5.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.5.0...@pie-lib/plot@2.5.1) (2022-09-29)
553
+
554
+ ### Bug Fixes
555
+
556
+ - **charting:** center Chart Title ([2b7e39f](https://github.com/pie-framework/pie-lib/commit/2b7e39f2aa39e0db0a003f154abdfa4852f3b141))
557
+ - **charting:** fix left label position for define correct response and player chart ([4a50663](https://github.com/pie-framework/pie-lib/commit/4a5066351901cbe400180b1d19d9a54781eb726e))
558
+ - **charting:** make space for delete category buttons in define correct response and in player ([7c0f653](https://github.com/pie-framework/pie-lib/commit/7c0f6536f106099da9a9ab5a7328fed827841c5c))
559
+
560
+ # [2.5.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.4.2...@pie-lib/plot@2.5.0) (2022-09-28)
561
+
562
+ ### Bug Fixes
563
+
564
+ - **charting:** arrange the position of the checkboxes labels, fix style amd arrangement ([c5f2f7a](https://github.com/pie-framework/pie-lib/commit/c5f2f7acf60898e77ecc0b47b190256537605c8e))
565
+ - **charting:** change position for checbox labels in order to fit without overlapping the checboxes ([98a56cb](https://github.com/pie-framework/pie-lib/commit/98a56cbae47c4bcadd0d4087d6b7df3c4d5d3e2e))
566
+ - **charting:** fix conflicts ([2b3da1b](https://github.com/pie-framework/pie-lib/commit/2b3da1b4b87a518b5c18daf6f6c57db1ccc1c536))
567
+ - **charting:** prevent page scroll on devices when a charting category is dragged ([6fe37ff](https://github.com/pie-framework/pie-lib/commit/6fe37ffa0e2c387d7174d0daf5cfc1cf9e8abf80))
568
+ - **editable-html, graphing:** Add support to remove scrollbar from editable-html and removed scrollbar from graphing labels PD-1968 ([d04a0d3](https://github.com/pie-framework/pie-lib/commit/d04a0d3bc66d4b861f60b24198301459c15bd151))
569
+
570
+ ### Features
571
+
572
+ - **charting:** refactor ability to edit chart title and labels, fix style ([6edcdfb](https://github.com/pie-framework/pie-lib/commit/6edcdfbfbd83806a8487c29c42ae447b11850ac7))
573
+ - **charting:** try to set up labels for charting, work in progress ([c6cd049](https://github.com/pie-framework/pie-lib/commit/c6cd049723dadab329748511da2f6c4f1fa943db))
574
+ - **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))
575
+
576
+ ## [2.4.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.4.1...@pie-lib/plot@2.4.2) (2022-08-30)
577
+
578
+ ### Bug Fixes
579
+
580
+ - **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))
581
+
582
+ ## [2.4.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.4.0...@pie-lib/plot@2.4.1) (2022-08-29)
583
+
584
+ **Note:** Version bump only for package @pie-lib/plot
585
+
586
+ # [2.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.3.0...@pie-lib/plot@2.4.0) (2022-08-15)
587
+
588
+ ### Features
589
+
590
+ - **graphing, plot:** added pixel guide lines + ui improvements ([02ddff1](https://github.com/pie-framework/pie-lib/commit/02ddff1aed6a279b8a4ae1fcf100c766596c29c4))
591
+
592
+ # [2.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.2.0...@pie-lib/plot@2.3.0) (2022-08-01)
593
+
594
+ ### Features
595
+
596
+ - **graphing, editable-html, plot:** Added the ability to edit/center title and lables PD-1605 PD-1690 ([dd18f92](https://github.com/pie-framework/pie-lib/commit/dd18f92e19d8be98917cd4f19eb7211122d2b7fb))
597
+
598
+ # [2.2.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.1.10...@pie-lib/plot@2.2.0) (2022-05-10)
599
+
600
+ ### Features
601
+
602
+ - **graphing, plot:** Added padding between labels and graph without changing the size of graph PD-1604 ([aa93191](https://github.com/pie-framework/pie-lib/commit/aa931910c56efddaf54d4586dc0730a9688e25e3))
603
+
604
+ ## [2.1.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.1.9...@pie-lib/plot@2.1.10) (2022-03-21)
605
+
606
+ ### Bug Fixes
607
+
608
+ - **plot:** Added HTML-encoded characters support PD-1597 ([0ca23fc](https://github.com/pie-framework/pie-lib/commit/0ca23fc3276f73df875c6c9176e64890a2265d47))
609
+
610
+ ## [2.1.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.1.7...@pie-lib/plot@2.1.9) (2021-06-25)
611
+
612
+ **Note:** Version bump only for package @pie-lib/plot
613
+
614
+ ## [2.1.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.1.6...@pie-lib/plot@2.1.7) (2021-06-25)
615
+
616
+ **Note:** Version bump only for package @pie-lib/plot
617
+
618
+ ## [2.1.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.1.5...@pie-lib/plot@2.1.6) (2021-04-06)
619
+
620
+ **Note:** Version bump only for package @pie-lib/plot
621
+
622
+ ## [2.1.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.1.4...@pie-lib/plot@2.1.5) (2021-04-02)
623
+
624
+ ### Bug Fixes
625
+
626
+ - **graphing:** Modified labels size and bug fixes ([e6dd79a](https://github.com/pie-framework/pie-lib/commit/e6dd79a))
627
+
628
+ ## [2.1.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.1.3...@pie-lib/plot@2.1.4) (2021-03-15)
629
+
630
+ ### Bug Fixes
631
+
632
+ - **graphing:** calculate the amount of necessary width for domain axis label PD-988 ([0085feb](https://github.com/pie-framework/pie-lib/commit/0085feb))
633
+ - **graphing:** increase width and height for labels, depending on labels length PD-988 ([5f64c47](https://github.com/pie-framework/pie-lib/commit/5f64c47))
634
+ - **graphing:** increase width for range axisLabel PD-988 ([e4e5b8f](https://github.com/pie-framework/pie-lib/commit/e4e5b8f))
635
+
636
+ ## [2.1.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.1.2...@pie-lib/plot@2.1.3) (2021-02-15)
637
+
638
+ **Note:** Version bump only for package @pie-lib/plot
639
+
640
+ ## [2.1.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.1.0...@pie-lib/plot@2.1.2) (2021-02-15)
641
+
642
+ **Note:** Version bump only for package @pie-lib/plot
643
+
644
+ # [2.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@2.0.0...@pie-lib/plot@2.1.0) (2020-10-07)
645
+
646
+ ### Features
647
+
648
+ - **charting:** add color theme support ([606d45e](https://github.com/pie-framework/pie-lib/commit/606d45e))
649
+
650
+ # [2.0.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@1.3.16...@pie-lib/plot@2.0.0) (2020-05-15)
651
+
652
+ ### Bug Fixes
653
+
654
+ - Graphing issues and inconsistencies PD-123 ([291b053](https://github.com/pie-framework/pie-lib/commit/291b053))
655
+
656
+ ### BREAKING CHANGES
657
+
658
+ - tools, currentTool, defaultTool and hideLabel should not be used as params anymore, instead, send only toolbarTools, which is an array of strings, where each string should be a valid tool type. eg. ['point', 'line', 'label']
659
+
660
+ ## [1.3.16](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@1.3.15...@pie-lib/plot@1.3.16) (2020-04-14)
661
+
662
+ **Note:** Version bump only for package @pie-lib/plot
663
+
664
+ ## [1.3.15](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@1.3.14...@pie-lib/plot@1.3.15) (2020-04-08)
665
+
666
+ **Note:** Version bump only for package @pie-lib/plot
667
+
668
+ ## [1.3.14](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@1.3.13...@pie-lib/plot@1.3.14) (2020-03-31)
669
+
670
+ **Note:** Version bump only for package @pie-lib/plot
671
+
672
+ ## [1.3.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@1.3.12...@pie-lib/plot@1.3.13) (2020-03-31)
673
+
674
+ **Note:** Version bump only for package @pie-lib/plot
675
+
676
+ ## [1.3.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@1.3.11...@pie-lib/plot@1.3.12) (2020-03-31)
677
+
678
+ **Note:** Version bump only for package @pie-lib/plot
679
+
680
+ ## [1.3.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@1.3.10...@pie-lib/plot@1.3.11) (2020-03-30)
681
+
682
+ **Note:** Version bump only for package @pie-lib/plot
683
+
684
+ ## [1.3.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@1.3.9...@pie-lib/plot@1.3.10) (2020-03-30)
685
+
686
+ **Note:** Version bump only for package @pie-lib/plot
687
+
688
+ ## [1.3.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@1.3.8...@pie-lib/plot@1.3.9) (2020-03-30)
689
+
690
+ **Note:** Version bump only for package @pie-lib/plot
691
+
692
+ ## [1.3.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@1.3.7...@pie-lib/plot@1.3.8) (2020-03-30)
693
+
694
+ **Note:** Version bump only for package @pie-lib/plot
695
+
696
+ ## [1.3.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@1.3.6...@pie-lib/plot@1.3.7) (2020-03-30)
697
+
698
+ ### Bug Fixes
699
+
700
+ - correct export syntax ([db7fcc0](https://github.com/pie-framework/pie-lib/commit/db7fcc0))
701
+
702
+ ## [1.3.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@1.3.5...@pie-lib/plot@1.3.6) (2020-03-30)
703
+
704
+ **Note:** Version bump only for package @pie-lib/plot
705
+
706
+ ## [1.3.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@1.3.4...@pie-lib/plot@1.3.5) (2020-03-30)
707
+
708
+ ### Bug Fixes
709
+
710
+ - add module prop to package.json ([387232f](https://github.com/pie-framework/pie-lib/commit/387232f))
711
+
712
+ ## [1.3.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@1.3.3...@pie-lib/plot@1.3.4) (2020-03-18)
713
+
714
+ **Note:** Version bump only for package @pie-lib/plot
715
+
716
+ ## [1.3.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@1.3.2...@pie-lib/plot@1.3.3) (2020-02-18)
717
+
718
+ ### Bug Fixes
719
+
720
+ - 5325: Graphing: Axis labels overlapping numeric labels ([678c61a](https://github.com/pie-framework/pie-lib/commit/678c61a))
721
+
722
+ ## [1.3.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@1.3.1...@pie-lib/plot@1.3.2) (2020-02-11)
723
+
724
+ **Note:** Version bump only for package @pie-lib/plot
725
+
726
+ ## [1.3.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@1.3.0...@pie-lib/plot@1.3.1) (2019-08-21)
727
+
728
+ **Note:** Version bump only for package @pie-lib/plot
729
+
730
+ # [1.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@1.2.1...@pie-lib/plot@1.3.0) (2019-08-05)
731
+
732
+ ### Features
733
+
734
+ - **charting:** Added Dot Plot chart type and Line Plot chart type. (WIP) ([b9cafc3](https://github.com/pie-framework/pie-lib/commit/b9cafc3))
735
+
736
+ ## [1.2.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@1.2.0...@pie-lib/plot@1.2.1) (2019-07-19)
737
+
738
+ **Note:** Version bump only for package @pie-lib/plot
739
+
740
+ # [1.2.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@1.1.4...@pie-lib/plot@1.2.0) (2019-07-16)
741
+
742
+ ### Features
743
+
744
+ - support dragging when having a grid defined by decimal values ([5a5e505](https://github.com/pie-framework/pie-lib/commit/5a5e505))
745
+
746
+ ## [1.1.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@1.1.3...@pie-lib/plot@1.1.4) (2019-07-08)
747
+
748
+ **Note:** Version bump only for package @pie-lib/plot
749
+
750
+ ## [1.1.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@1.1.2...@pie-lib/plot@1.1.3) (2019-07-05)
751
+
752
+ **Note:** Version bump only for package @pie-lib/plot
753
+
754
+ ## [1.1.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@1.1.1...@pie-lib/plot@1.1.2) (2019-07-02)
755
+
756
+ **Note:** Version bump only for package @pie-lib/plot
757
+
758
+ ## [1.1.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@0.2.2...@pie-lib/plot@1.1.1) (2019-06-28)
759
+
760
+ ### Bug Fixes
761
+
762
+ - fix version conflict ([397b5de](https://github.com/pie-framework/pie-lib/commit/397b5de))
763
+
764
+ ## [0.2.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@0.2.1...@pie-lib/plot@0.2.2) (2019-06-28)
765
+
766
+ ### Bug Fixes
767
+
768
+ - calculate edge when points are on same horizontal or vertical line ([5cba298](https://github.com/pie-framework/pie-lib/commit/5cba298))
769
+
770
+ ## [0.2.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@0.2.0...@pie-lib/plot@0.2.1) (2019-06-17)
771
+
772
+ **Note:** Version bump only for package @pie-lib/plot
773
+
774
+ # [0.2.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@0.1.12...@pie-lib/plot@0.2.0) (2019-06-12)
775
+
776
+ ### Bug Fixes
777
+
778
+ - fix bounded drag calculation ([08097bd](https://github.com/pie-framework/pie-lib/commit/08097bd))
779
+
780
+ ### Features
781
+
782
+ - plot updates ([6856d56](https://github.com/pie-framework/pie-lib/commit/6856d56))
783
+
784
+ ## [0.1.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@0.1.11...@pie-lib/plot@0.1.12) (2019-03-15)
785
+
786
+ ### Bug Fixes
787
+
788
+ - rm child prepack in favour of root prepack ([381d8d6](https://github.com/pie-framework/pie-lib/commit/381d8d6))
789
+
790
+ ## [0.1.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@0.1.10...@pie-lib/plot@0.1.11) (2019-03-14)
791
+
792
+ **Note:** Version bump only for package @pie-lib/plot
793
+
794
+ ## [0.1.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@0.1.9...@pie-lib/plot@0.1.10) (2019-03-14)
795
+
796
+ **Note:** Version bump only for package @pie-lib/plot
797
+
798
+ ## [0.1.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@0.1.8...@pie-lib/plot@0.1.9) (2019-03-14)
799
+
800
+ **Note:** Version bump only for package @pie-lib/plot
801
+
802
+ ## [0.1.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@0.1.7...@pie-lib/plot@0.1.8) (2019-03-14)
803
+
804
+ **Note:** Version bump only for package @pie-lib/plot
805
+
806
+ ## [0.1.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@0.1.6...@pie-lib/plot@0.1.7) (2019-03-13)
807
+
808
+ **Note:** Version bump only for package @pie-lib/plot
809
+
810
+ ## [0.1.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@0.1.5...@pie-lib/plot@0.1.6) (2019-03-13)
811
+
812
+ **Note:** Version bump only for package @pie-lib/plot
813
+
814
+ ## [0.1.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@0.1.4...@pie-lib/plot@0.1.5) (2019-03-13)
815
+
816
+ **Note:** Version bump only for package @pie-lib/plot
817
+
818
+ ## [0.1.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@0.1.2...@pie-lib/plot@0.1.4) (2019-02-17)
819
+
820
+ ### Bug Fixes
821
+
822
+ - force version bump ([dd057a5](https://github.com/pie-framework/pie-lib/commit/dd057a5))
823
+
824
+ ## [0.1.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@0.1.1...@pie-lib/plot@0.1.2) (2019-02-17)
825
+
826
+ ### Bug Fixes
827
+
828
+ - fix tests ([1363aa4](https://github.com/pie-framework/pie-lib/commit/1363aa4))
829
+
830
+ ## [0.1.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/plot@0.1.0...@pie-lib/plot@0.1.1) (2019-01-30)
831
+
832
+ **Note:** Version bump only for package @pie-lib/plot
833
+
834
+ # 0.1.0 (2019-01-30)
835
+
836
+ ### Features
837
+
838
+ - new package plot ([1adf654](https://github.com/pie-framework/pie-lib/commit/1adf654))