@pie-lib/charting 5.17.0-beta.0 → 5.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (102) hide show
  1. package/CHANGELOG.json +1 -581
  2. package/CHANGELOG.md +141 -43
  3. package/lib/actions-button.js +174 -0
  4. package/lib/actions-button.js.map +1 -0
  5. package/lib/axes.js +52 -81
  6. package/lib/axes.js.map +1 -0
  7. package/lib/bars/bar.js +1 -1
  8. package/lib/bars/bar.js.map +1 -0
  9. package/lib/bars/common/bars.js +11 -13
  10. package/lib/bars/common/bars.js.map +1 -0
  11. package/lib/bars/histogram.js +1 -1
  12. package/lib/bars/histogram.js.map +1 -0
  13. package/lib/chart-setup.js +3 -3
  14. package/lib/chart-setup.js.map +1 -0
  15. package/lib/chart-type.js +1 -1
  16. package/lib/chart-type.js.map +1 -0
  17. package/lib/chart-types.js +1 -1
  18. package/lib/chart-types.js.map +1 -0
  19. package/lib/chart.js +67 -58
  20. package/lib/chart.js.map +1 -0
  21. package/lib/common/drag-handle.js +4 -4
  22. package/lib/common/drag-handle.js.map +1 -0
  23. package/lib/common/drag-icon.js +1 -1
  24. package/lib/common/drag-icon.js.map +1 -0
  25. package/lib/common/styles.js +5 -5
  26. package/lib/common/styles.js.map +1 -0
  27. package/lib/grid.js +50 -13
  28. package/lib/grid.js.map +1 -0
  29. package/lib/index.js +9 -1
  30. package/lib/index.js.map +1 -0
  31. package/lib/key-legend.js +111 -0
  32. package/lib/key-legend.js.map +1 -0
  33. package/lib/line/common/drag-handle.js +5 -11
  34. package/lib/line/common/drag-handle.js.map +1 -0
  35. package/lib/line/common/line.js +4 -8
  36. package/lib/line/common/line.js.map +1 -0
  37. package/lib/line/line-cross.js +40 -5
  38. package/lib/line/line-cross.js.map +1 -0
  39. package/lib/line/line-dot.js +32 -7
  40. package/lib/line/line-dot.js.map +1 -0
  41. package/lib/mark-label.js +11 -6
  42. package/lib/mark-label.js.map +1 -0
  43. package/lib/plot/common/plot.js +10 -9
  44. package/lib/plot/common/plot.js.map +1 -0
  45. package/lib/plot/dot.js +1 -1
  46. package/lib/plot/dot.js.map +1 -0
  47. package/lib/plot/line.js +1 -1
  48. package/lib/plot/line.js.map +1 -0
  49. package/lib/shared/index.js +136 -0
  50. package/lib/tool-menu.js +10 -10
  51. package/lib/tool-menu.js.map +1 -0
  52. package/lib/utils.js +1 -1
  53. package/lib/utils.js.map +1 -0
  54. package/package.json +5 -5
  55. package/src/__tests__/__snapshots__/axes.test.jsx.snap +1 -0
  56. package/src/__tests__/__snapshots__/chart.test.jsx.snap +0 -18
  57. package/src/__tests__/__snapshots__/grid.test.jsx.snap +61 -17
  58. package/src/__tests__/axes.test.jsx +0 -5
  59. package/src/__tests__/chart.test.jsx +8 -0
  60. package/src/actions-button.jsx +109 -0
  61. package/src/axes.jsx +5 -31
  62. package/src/bars/common/bars.jsx +8 -10
  63. package/src/chart-setup.jsx +1 -1
  64. package/src/chart.jsx +31 -26
  65. package/src/common/drag-handle.jsx +3 -3
  66. package/src/common/styles.js +1 -1
  67. package/src/grid.jsx +38 -13
  68. package/src/index.js +2 -1
  69. package/src/key-legend.jsx +75 -0
  70. package/src/line/common/drag-handle.jsx +3 -9
  71. package/src/line/common/line.jsx +2 -6
  72. package/src/line/line-cross.js +29 -2
  73. package/src/line/line-dot.js +36 -19
  74. package/src/mark-label.jsx +7 -2
  75. package/src/plot/common/plot.jsx +8 -5
  76. package/src/tool-menu.jsx +1 -1
  77. package/lib/__tests__/axes.test.js +0 -181
  78. package/lib/__tests__/chart-setup.test.js +0 -58
  79. package/lib/__tests__/chart-type.test.js +0 -42
  80. package/lib/__tests__/chart.test.js +0 -108
  81. package/lib/__tests__/grid.test.js +0 -48
  82. package/lib/__tests__/mark-label.test.js +0 -57
  83. package/lib/__tests__/utils.js +0 -56
  84. package/lib/__tests__/utils.test.js +0 -197
  85. package/lib/bars/__tests__/bar.test.js +0 -62
  86. package/lib/bars/__tests__/histogram.test.js +0 -64
  87. package/lib/bars/__tests__/utils.js +0 -56
  88. package/lib/bars/common/__tests__/bars.test.js +0 -100
  89. package/lib/bars/common/__tests__/utils.js +0 -56
  90. package/lib/common/__tests__/drag-handle.test.js +0 -134
  91. package/lib/common/__tests__/utils.js +0 -56
  92. package/lib/line/__tests__/line-cross.test.js +0 -64
  93. package/lib/line/__tests__/line-dot.test.js +0 -64
  94. package/lib/line/__tests__/utils.js +0 -56
  95. package/lib/line/common/__tests__/drag-handle.test.js +0 -134
  96. package/lib/line/common/__tests__/line.test.js +0 -128
  97. package/lib/line/common/__tests__/utils.js +0 -56
  98. package/lib/plot/__tests__/dot.test.js +0 -64
  99. package/lib/plot/__tests__/line.test.js +0 -64
  100. package/lib/plot/__tests__/utils.js +0 -56
  101. package/lib/plot/common/__tests__/plot.test.js +0 -103
  102. package/lib/plot/common/__tests__/utils.js +0 -56
package/CHANGELOG.json CHANGED
@@ -1,584 +1,4 @@
1
1
  [
2
- {
3
- "type": "feat",
4
- "scope": "charting",
5
- "subject": "finalize color theme support",
6
- "merge": null,
7
- "header": "feat(charting): finalize color theme support",
8
- "body": null,
9
- "footer": null,
10
- "notes": [],
11
- "hash": "b304cada4e9a7f2e6db13b87e491ce2432d268f5",
12
- "gitTags": "",
13
- "committerDate": "2020-10-23 15:43:30 +0300",
14
- "isTagged": true,
15
- "tag": "@pie-lib/charting@4.5.0"
16
- },
17
- {
18
- "type": "feat",
19
- "scope": "charting",
20
- "subject": "color theme support fixes",
21
- "merge": null,
22
- "header": "feat(charting): color theme support fixes",
23
- "body": null,
24
- "footer": null,
25
- "notes": [],
26
- "hash": "e83f9bda7da345f7e3da597d8dbeda40290ebca0",
27
- "gitTags": "",
28
- "committerDate": "2020-10-14 07:44:37 +0300",
29
- "isTagged": true,
30
- "tag": "@pie-lib/charting@4.4.0"
31
- },
32
- {
33
- "type": "fix",
34
- "scope": null,
35
- "subject": "bad src import",
36
- "merge": null,
37
- "header": "fix: bad src import",
38
- "body": null,
39
- "footer": null,
40
- "notes": [],
41
- "hash": "a2d16abff04cbb118699113260de76d5a5ac45e5",
42
- "gitTags": " (origin/feat/colors)",
43
- "committerDate": "2020-10-08 10:38:03 +0100",
44
- "isTagged": true,
45
- "tag": "@pie-lib/charting@4.3.1"
46
- },
47
- {
48
- "type": "feat",
49
- "scope": "charting",
50
- "subject": "add color theme support",
51
- "merge": null,
52
- "header": "feat(charting): add color theme support",
53
- "body": null,
54
- "footer": null,
55
- "notes": [],
56
- "hash": "606d45e46f86cb8f56544befdb8b71fb8a451746",
57
- "gitTags": "",
58
- "committerDate": "2020-09-29 16:53:15 +0300",
59
- "isTagged": true,
60
- "tag": "@pie-lib/charting@4.3.0"
61
- },
62
- {
63
- "type": "fix",
64
- "scope": null,
65
- "subject": "correct export syntax",
66
- "merge": null,
67
- "header": "fix: correct export syntax",
68
- "body": null,
69
- "footer": null,
70
- "notes": [],
71
- "hash": "b7b6b57e1a56180417db679f215c3bd8d82453f7",
72
- "gitTags": "",
73
- "committerDate": "2020-03-30 22:07:39 +0100",
74
- "isTagged": true,
75
- "tag": "@pie-lib/charting@4.2.11"
76
- },
77
- {
78
- "type": "fix",
79
- "scope": null,
80
- "subject": "add module prop to package.json",
81
- "merge": null,
82
- "header": "fix: add module prop to package.json",
83
- "body": null,
84
- "footer": null,
85
- "notes": [],
86
- "hash": "0d81793fdd3ccaafb2750d3844cdded5cb83434f",
87
- "gitTags": "",
88
- "committerDate": "2020-03-30 13:00:09 +0100",
89
- "isTagged": true,
90
- "tag": "@pie-lib/charting@4.2.10"
91
- },
92
- {
93
- "type": "fix",
94
- "scope": null,
95
- "subject": "raised up in ch5875: Added sanity checks for `size` property.",
96
- "merge": null,
97
- "header": "fix: raised up in ch5875: Added sanity checks for `size` property.",
98
- "body": null,
99
- "footer": null,
100
- "notes": [],
101
- "hash": "82b235277a1845c8f9399e22c8cd697880b9ea25",
102
- "gitTags": "",
103
- "committerDate": "2019-12-09 16:09:18 +0200",
104
- "isTagged": true,
105
- "tag": "@pie-lib/charting@4.2.10"
106
- },
107
- {
108
- "type": "fix",
109
- "scope": null,
110
- "subject": "add missing dep",
111
- "merge": null,
112
- "header": "fix: add missing dep",
113
- "body": null,
114
- "footer": null,
115
- "notes": [],
116
- "hash": "68170c5ece16d28dceea473af949b1f701065ddb",
117
- "gitTags": "",
118
- "committerDate": "2019-08-27 14:52:29 +0100",
119
- "isTagged": true,
120
- "tag": "@pie-lib/charting@4.2.10"
121
- },
122
- {
123
- "type": "feat",
124
- "scope": "charting",
125
- "subject": "added Line with Crosses Chart Type. Add rotation on categories name if they do not fit. Fixed issue with editing category name.",
126
- "merge": null,
127
- "header": "feat(charting): added Line with Crosses Chart Type. Add rotation on categories name if they do not fit. Fixed issue with editing category name.",
128
- "body": null,
129
- "footer": null,
130
- "notes": [],
131
- "hash": "ae5889313db53a6abcba4a20a58fdd00f60d74d8",
132
- "gitTags": "",
133
- "committerDate": "2019-08-03 18:38:43 +0300",
134
- "isTagged": true,
135
- "tag": "@pie-lib/charting@4.2.0"
136
- },
137
- {
138
- "type": "feat",
139
- "scope": "charting",
140
- "subject": "Add/remove categories, edit categories, interactive category, calculate step if it is not defined.",
141
- "merge": null,
142
- "header": "feat(charting): Add/remove categories, edit categories, interactive category, calculate step if it is not defined.",
143
- "body": null,
144
- "footer": null,
145
- "notes": [],
146
- "hash": "48520a7a4842b8b9860ff81b8764f4d3442a5a7d",
147
- "gitTags": "",
148
- "committerDate": "2019-07-30 14:00:20 +0300",
149
- "isTagged": true,
150
- "tag": "@pie-lib/charting@4.2.0"
151
- },
152
- {
153
- "type": "feat",
154
- "scope": null,
155
- "subject": "Added interactive (user can drag to change category value) and deletable (delete category) properties.",
156
- "merge": null,
157
- "header": "feat: Added interactive (user can drag to change category value) and deletable (delete category) properties.",
158
- "body": null,
159
- "footer": null,
160
- "notes": [],
161
- "hash": "b3b5377215b7715f1fa5a8a9578772d41de2a543",
162
- "gitTags": "",
163
- "committerDate": "2019-07-29 11:11:17 +0300",
164
- "isTagged": true,
165
- "tag": "@pie-lib/charting@4.2.0"
166
- },
167
- {
168
- "type": "feat",
169
- "scope": "charting",
170
- "subject": "Added Dot Plot chart type and Line Plot chart type. (WIP)",
171
- "merge": null,
172
- "header": "feat(charting): Added Dot Plot chart type and Line Plot chart type. (WIP)",
173
- "body": null,
174
- "footer": null,
175
- "notes": [],
176
- "hash": "b9cafc3356447b3ec55aeaedb47dbd867173e544",
177
- "gitTags": "",
178
- "committerDate": "2019-07-23 16:46:51 +0300",
179
- "isTagged": true,
180
- "tag": "@pie-lib/charting@4.2.0"
181
- },
182
- {
183
- "type": "feat",
184
- "scope": "charting",
185
- "subject": "Completed Bar chart type, added Histogram chart type and added Line chart type. (WIP)",
186
- "merge": null,
187
- "header": "feat(charting): Completed Bar chart type, added Histogram chart type and added Line chart type. (WIP)",
188
- "body": null,
189
- "footer": null,
190
- "notes": [],
191
- "hash": "271b173448cad8ea9356993cfe60941be01d0c33",
192
- "gitTags": "",
193
- "committerDate": "2019-07-22 14:55:31 +0300",
194
- "isTagged": true,
195
- "tag": "@pie-lib/charting@4.2.0"
196
- },
197
- {
198
- "type": "feat",
199
- "scope": null,
200
- "subject": "version bumps",
201
- "merge": null,
202
- "header": "feat: version bumps",
203
- "body": null,
204
- "footer": null,
205
- "notes": [],
206
- "hash": "23eb54f95e4b6480e2f8c5b336627a7f3bc2f428",
207
- "gitTags": "",
208
- "committerDate": "2019-06-10 15:24:32 +0100",
209
- "isTagged": true,
210
- "tag": "@pie-lib/charting@4.1.0"
211
- },
212
- {
213
- "type": "fix",
214
- "scope": null,
215
- "subject": "rm child prepack in favour of root prepack",
216
- "merge": null,
217
- "header": "fix: rm child prepack in favour of root prepack",
218
- "body": null,
219
- "footer": null,
220
- "notes": [],
221
- "hash": "381d8d6485269b641d8d4655148966d2e70803be",
222
- "gitTags": "",
223
- "committerDate": "2019-03-15 09:51:11 +0000",
224
- "isTagged": true,
225
- "tag": "@pie-lib/charting@4.0.13"
226
- },
227
- {
228
- "type": "fix",
229
- "scope": null,
230
- "subject": "force version bump",
231
- "merge": null,
232
- "header": "fix: force version bump",
233
- "body": null,
234
- "footer": null,
235
- "notes": [],
236
- "hash": "dd057a52e90133dfb30660b1824760cb9f10a280",
237
- "gitTags": "",
238
- "committerDate": "2019-02-17 21:23:35 +0000",
239
- "isTagged": true,
240
- "tag": "@pie-lib/charting@4.0.10"
241
- },
242
- {
243
- "type": "fix",
244
- "scope": null,
245
- "subject": "version bump",
246
- "merge": null,
247
- "header": "fix: version bump",
248
- "body": null,
249
- "footer": null,
250
- "notes": [],
251
- "hash": "d1624c88dca15007f39197c022b46467c2501e7a",
252
- "gitTags": "",
253
- "committerDate": "2019-01-30 23:00:44 +0000",
254
- "isTagged": true,
255
- "tag": "@pie-lib/charting@4.0.10"
256
- },
257
- {
258
- "type": "feat",
259
- "scope": null,
260
- "subject": "charting re-write to fit our requirements.",
261
- "merge": null,
262
- "header": "feat: charting re-write to fit our requirements.",
263
- "body": null,
264
- "footer": "BREAKING CHANGE: This has a number of new components. The old components\nare gone.",
265
- "notes": [
266
- {
267
- "title": "BREAKING CHANGE",
268
- "text": "This has a number of new components. The old components\nare gone."
269
- }
270
- ],
271
- "hash": "ca5cbf79e2578b23d67f64cbee29c96db2398ff6",
272
- "gitTags": "",
273
- "committerDate": "2019-01-30 21:51:02 +0000",
274
- "isTagged": true,
275
- "tag": "@pie-lib/charting@4.0.0"
276
- },
277
- {
278
- "type": "fix",
279
- "scope": null,
280
- "subject": "rm githead",
281
- "merge": null,
282
- "header": "fix: rm githead",
283
- "body": null,
284
- "footer": null,
285
- "notes": [],
286
- "hash": "a1523aabfe34697970bb94f3ed300603d9e11f74",
287
- "gitTags": "",
288
- "committerDate": "2018-09-12 14:44:09 +0100",
289
- "isTagged": true,
290
- "tag": "@pie-lib/charting@2.3.5"
291
- },
292
- {
293
- "type": "fix",
294
- "scope": null,
295
- "subject": "githead",
296
- "merge": null,
297
- "header": "fix: githead",
298
- "body": null,
299
- "footer": null,
300
- "notes": [],
301
- "hash": "3e485e0a7094496fd93d86a0500c75e343e9fac2",
302
- "gitTags": "",
303
- "committerDate": "2018-09-12 14:38:21 +0100",
304
- "isTagged": true,
305
- "tag": "@pie-lib/charting@2.3.5"
306
- },
307
- {
308
- "type": "fix",
309
- "scope": "lineUtils",
310
- "subject": "pointsFromExpression calculate using when x and y are 0",
311
- "merge": null,
312
- "header": "fix(lineUtils): pointsFromExpression calculate using when x and y are 0",
313
- "body": null,
314
- "footer": null,
315
- "notes": [],
316
- "hash": "d641fcd3824c539006b3c09b087e2106f2a7e646",
317
- "gitTags": "",
318
- "committerDate": "2018-06-04 12:44:10 -0400",
319
- "isTagged": true,
320
- "tag": "@pie-lib/charting@2.3.1"
321
- },
322
- {
323
- "type": "fix",
324
- "scope": "expression",
325
- "subject": "handle vertical lines which have no slope",
326
- "merge": null,
327
- "header": "fix(expression): handle vertical lines which have no slope",
328
- "body": null,
329
- "footer": null,
330
- "notes": [],
331
- "hash": "2cd6bb0c039ca9e8eb568ee4377b8a17e6234207",
332
- "gitTags": "",
333
- "committerDate": "2018-05-28 15:36:46 -0400",
334
- "isTagged": true,
335
- "tag": "@pie-lib/charting@2.3.0"
336
- },
337
- {
338
- "type": "feat",
339
- "scope": null,
340
- "subject": "add Expression.equals method",
341
- "merge": null,
342
- "header": "feat: add Expression.equals method",
343
- "body": null,
344
- "footer": null,
345
- "notes": [],
346
- "hash": "5ae0c1ee14e16d6d7af316d6a8f9922fc13660e6",
347
- "gitTags": "",
348
- "committerDate": "2018-05-25 13:10:31 -0400",
349
- "isTagged": true,
350
- "tag": "@pie-lib/charting@2.3.0"
351
- },
352
- {
353
- "type": "fix",
354
- "scope": "lint",
355
- "subject": "lint fixes",
356
- "merge": null,
357
- "header": "fix(lint): lint fixes",
358
- "body": null,
359
- "footer": null,
360
- "notes": [],
361
- "hash": "f0595831a75561d829c0f18f86ce5ea7feeb4ddd",
362
- "gitTags": "",
363
- "committerDate": "2018-05-09 13:35:42 -0400",
364
- "isTagged": true,
365
- "tag": "@pie-lib/charting@2.2.1"
366
- },
367
- {
368
- "type": "feat",
369
- "scope": "dependencies",
370
- "subject": "version bump",
371
- "merge": null,
372
- "header": "feat(dependencies): version bump",
373
- "body": null,
374
- "footer": null,
375
- "notes": [],
376
- "hash": "31bd3b3747d3808bc4f85208073331d7176e9107",
377
- "gitTags": "",
378
- "committerDate": "2018-04-24 09:41:05 -0400",
379
- "isTagged": true,
380
- "tag": "@pie-lib/charting@2.2.0"
381
- },
382
- {
383
- "type": "feat",
384
- "scope": "point-intercept",
385
- "subject": "add title label to top of chart",
386
- "merge": null,
387
- "header": "feat(point-intercept): add title label to top of chart",
388
- "body": null,
389
- "footer": null,
390
- "notes": [],
391
- "hash": "71ba936432a8d60b5d14969874c90691d981b3c4",
392
- "gitTags": "",
393
- "committerDate": "2018-04-23 09:42:15 -0400",
394
- "isTagged": true,
395
- "tag": "@pie-lib/charting@2.1.0"
396
- },
397
- {
398
- "type": "fix",
399
- "scope": "dependencies",
400
- "subject": "use react 16 and latest material-ui",
401
- "merge": null,
402
- "header": "fix(dependencies): use react 16 and latest material-ui",
403
- "body": null,
404
- "footer": "BREAKING CHANGE: react@^16.3.1 is required as a dependency.",
405
- "notes": [
406
- {
407
- "title": "BREAKING CHANGE",
408
- "text": "react@^16.3.1 is required as a dependency."
409
- }
410
- ],
411
- "hash": "2ac4f97d5a32d391eacdba48a6bb9e020ac6586b",
412
- "gitTags": "",
413
- "committerDate": "2018-04-12 22:43:29 -0400",
414
- "isTagged": true,
415
- "tag": "@pie-lib/charting@1.0.0"
416
- },
417
- {
418
- "type": "feat",
419
- "scope": "charting",
420
- "subject": "new charting package",
421
- "merge": null,
422
- "header": "feat(charting): new charting package",
423
- "body": null,
424
- "footer": null,
425
- "notes": [],
426
- "hash": "97c2f60e32a8fe3e0797aef5cf7b5b9dcb83edb3",
427
- "gitTags": "",
428
- "committerDate": "2018-04-02 10:15:10 -0400",
429
- "isTagged": true,
430
- "tag": "@pie-lib/charting@0.1.0"
431
- },
432
- {
433
- "type": "fix",
434
- "scope": "charting",
435
- "subject": "Increased labels size - PD-533",
436
- "merge": null,
437
- "header": "fix(charting): Increased labels size - PD-533",
438
- "body": null,
439
- "footer": null,
440
- "notes": [],
441
- "hash": "9d9095cef6cff56774794a41c1f76334e8f06d2b",
442
- "gitTags": "",
443
- "committerDate": "2021-03-25 14:42:45 +0200",
444
- "isTagged": true,
445
- "tag": "@pie-lib/charting@4.5.6"
446
- },
447
- {
448
- "type": "fix",
449
- "scope": "charting",
450
- "subject": "enlarge the height of the draggable target PD-43",
451
- "merge": null,
452
- "header": "fix(charting): enlarge the height of the draggable target PD-43",
453
- "body": null,
454
- "footer": null,
455
- "notes": [],
456
- "hash": "3d1b7e8e28ce6f7e04e76e4595e2225879ca73aa",
457
- "gitTags": "",
458
- "committerDate": "2021-03-08 15:56:10 +0200",
459
- "isTagged": true,
460
- "tag": "@pie-lib/charting@4.5.6"
461
- },
462
- {
463
- "type": "fix",
464
- "scope": "charting",
465
- "subject": "align chart labels when they are rotated PD-921",
466
- "merge": null,
467
- "header": "fix(charting): align chart labels when they are rotated PD-921",
468
- "body": null,
469
- "footer": null,
470
- "notes": [],
471
- "hash": "1baf5b2f94f44229eca54f9b0a1b2843760d883f",
472
- "gitTags": "",
473
- "committerDate": "2021-03-05 17:50:54 +0200",
474
- "isTagged": true,
475
- "tag": "@pie-lib/charting@4.5.6"
476
- },
477
- {
478
- "type": "fix",
479
- "scope": "charting",
480
- "subject": "override style to remove grey background behind labels in IBX PD-29",
481
- "merge": null,
482
- "header": "fix(charting): override style to remove grey background behind labels in IBX PD-29",
483
- "body": null,
484
- "footer": null,
485
- "notes": [],
486
- "hash": "ee1a8823dcfc618303f675f7844fa4db9135f860",
487
- "gitTags": " (origin/fix/PD-29/remove-grey-background-for-charting-labels-IBX)",
488
- "committerDate": "2021-06-09 15:59:25 +0300",
489
- "isTagged": true,
490
- "tag": "@pie-lib/charting@4.5.10"
491
- },
492
- {
493
- "type": "fix",
494
- "scope": "charting",
495
- "subject": "rotate category labels according to their length PD-537",
496
- "merge": null,
497
- "header": "fix(charting): rotate category labels according to their length PD-537",
498
- "body": null,
499
- "footer": null,
500
- "notes": [],
501
- "hash": "a2f42fe77935fdaa72455e60605fe3560e7d3058",
502
- "gitTags": "",
503
- "committerDate": "2021-05-28 15:43:14 +0300",
504
- "isTagged": true,
505
- "tag": "@pie-lib/charting@4.5.10"
506
- },
507
- {
508
- "type": "fix",
509
- "scope": "charting",
510
- "subject": "Updated categories filtration - PD-535",
511
- "merge": null,
512
- "header": "fix(charting): Updated categories filtration - PD-535",
513
- "body": null,
514
- "footer": null,
515
- "notes": [],
516
- "hash": "a41cc003b8954f3b09803df13839d976033b41d1",
517
- "gitTags": " (origin/fix/PD-535)",
518
- "committerDate": "2021-05-26 14:36:51 +0300",
519
- "isTagged": true,
520
- "tag": "@pie-lib/charting@4.5.10"
521
- },
522
- {
523
- "type": "fix",
524
- "scope": "charting",
525
- "subject": "Fixed the wrong horizontal position of a point on Line Dot - PD-31",
526
- "merge": null,
527
- "header": "fix(charting): Fixed the wrong horizontal position of a point on Line Dot - PD-31",
528
- "body": null,
529
- "footer": null,
530
- "notes": [],
531
- "hash": "7f5812060337865334b35f92ae568629cdd6297d",
532
- "gitTags": " (origin/fix/PD-31)",
533
- "committerDate": "2021-05-11 09:05:56 +0300",
534
- "isTagged": true,
535
- "tag": "@pie-lib/charting@4.5.10"
536
- },
537
- {
538
- "type": "fix",
539
- "scope": "charting",
540
- "subject": "Displayed the entire rightmost category label when space available PD-531",
541
- "merge": null,
542
- "header": "fix(charting): Displayed the entire rightmost category label when space available PD-531",
543
- "body": null,
544
- "footer": null,
545
- "notes": [],
546
- "hash": "4c96415952e13e789f5b67cf99e6a17d957a06e7",
547
- "gitTags": " (origin/fix/PD-531)",
548
- "committerDate": "2021-09-10 14:19:05 +0300",
549
- "isTagged": true,
550
- "tag": "@pie-lib/charting@4.5.13"
551
- },
552
- {
553
- "type": "fix",
554
- "scope": "charting",
555
- "subject": "Updated label font size",
556
- "merge": null,
557
- "header": "fix(charting): Updated label font size",
558
- "body": null,
559
- "footer": null,
560
- "notes": [],
561
- "hash": "d7905e0fd66c7a2254ace1b8ab4492de371816b1",
562
- "gitTags": "",
563
- "committerDate": "2021-03-26 13:31:22 +0200",
564
- "isTagged": true,
565
- "tag": "@pie-lib/charting@4.5.11"
566
- },
567
- {
568
- "type": "fix",
569
- "scope": "charting",
570
- "subject": "calculate step and labelStep if they are not defined or if tickLabels are crowded PD-1016",
571
- "merge": null,
572
- "header": "fix(charting): calculate step and labelStep if they are not defined or if tickLabels are crowded PD-1016",
573
- "body": null,
574
- "footer": null,
575
- "notes": [],
576
- "hash": "d215ea002c64505edaa13cd55a8e98c5190f053c",
577
- "gitTags": "",
578
- "committerDate": "2021-03-19 19:13:17 +0200",
579
- "isTagged": true,
580
- "tag": "@pie-lib/charting@4.5.11"
581
- },
582
2
  {
583
3
  "type": "fix",
584
4
  "scope": "charting",
@@ -592,6 +12,6 @@
592
12
  "gitTags": "",
593
13
  "committerDate": "2022-09-19 15:27:23 +0300",
594
14
  "isTagged": true,
595
- "tag": "@pie-lib/charting@5.2.0"
15
+ "tag": "@pie-lib/charting@5.10.0"
596
16
  }
597
17
  ]