@syncfusion/ej2-angular-charts 30.1.37-ngcc → 30.1.39-ngcc

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 (149) hide show
  1. package/CHANGELOG.md +3547 -0
  2. package/esm2020/public_api.mjs +2 -0
  3. package/esm2020/src/accumulation-chart/accumulationchart-all.module.mjs +53 -0
  4. package/esm2020/src/accumulation-chart/accumulationchart.component.mjs +146 -0
  5. package/esm2020/src/accumulation-chart/accumulationchart.module.mjs +43 -0
  6. package/esm2020/src/accumulation-chart/annotations.directive.mjs +62 -0
  7. package/esm2020/src/accumulation-chart/series.directive.mjs +62 -0
  8. package/esm2020/src/bullet-chart/bulletchart-all.module.mjs +32 -0
  9. package/esm2020/src/bullet-chart/bulletchart.component.mjs +85 -0
  10. package/esm2020/src/bullet-chart/bulletchart.module.mjs +34 -0
  11. package/esm2020/src/bullet-chart/ranges.directive.mjs +54 -0
  12. package/esm2020/src/chart/annotations.directive.mjs +60 -0
  13. package/esm2020/src/chart/axes.directive.mjs +58 -0
  14. package/esm2020/src/chart/categories.directive.mjs +59 -0
  15. package/esm2020/src/chart/chart-all.module.mjs +206 -0
  16. package/esm2020/src/chart/chart.component.mjs +525 -0
  17. package/esm2020/src/chart/chart.module.mjs +142 -0
  18. package/esm2020/src/chart/columns.directive.mjs +52 -0
  19. package/esm2020/src/chart/indicators.directive.mjs +54 -0
  20. package/esm2020/src/chart/multilevellabels.directive.mjs +60 -0
  21. package/esm2020/src/chart/rangecolorsettings.directive.mjs +52 -0
  22. package/esm2020/src/chart/rows.directive.mjs +52 -0
  23. package/esm2020/src/chart/segments.directive.mjs +58 -0
  24. package/esm2020/src/chart/selecteddataindexes.directive.mjs +52 -0
  25. package/esm2020/src/chart/series.directive.mjs +68 -0
  26. package/esm2020/src/chart/striplines.directive.mjs +56 -0
  27. package/esm2020/src/chart/trendlines.directive.mjs +58 -0
  28. package/esm2020/src/chart3d/axes.directive.mjs +52 -0
  29. package/esm2020/src/chart3d/chart3d-all.module.mjs +68 -0
  30. package/esm2020/src/chart3d/chart3d.component.mjs +189 -0
  31. package/esm2020/src/chart3d/chart3d.module.mjs +70 -0
  32. package/esm2020/src/chart3d/columns.directive.mjs +52 -0
  33. package/esm2020/src/chart3d/rows.directive.mjs +52 -0
  34. package/esm2020/src/chart3d/selecteddataindexes.directive.mjs +52 -0
  35. package/esm2020/src/chart3d/series.directive.mjs +62 -0
  36. package/esm2020/src/circularchart3d/circularchart3d-all.module.mjs +47 -0
  37. package/esm2020/src/circularchart3d/circularchart3d.component.mjs +125 -0
  38. package/esm2020/src/circularchart3d/circularchart3d.module.mjs +43 -0
  39. package/esm2020/src/circularchart3d/selecteddataindexes.directive.mjs +52 -0
  40. package/esm2020/src/circularchart3d/series.directive.mjs +62 -0
  41. package/esm2020/src/index.mjs +64 -0
  42. package/esm2020/src/range-navigator/rangenavigator-all.module.mjs +32 -0
  43. package/esm2020/src/range-navigator/rangenavigator.component.mjs +127 -0
  44. package/esm2020/src/range-navigator/rangenavigator.module.mjs +34 -0
  45. package/esm2020/src/range-navigator/series.directive.mjs +54 -0
  46. package/esm2020/src/smithchart/series.directive.mjs +46 -0
  47. package/esm2020/src/smithchart/smithchart-all.module.mjs +32 -0
  48. package/esm2020/src/smithchart/smithchart.component.mjs +78 -0
  49. package/esm2020/src/smithchart/smithchart.module.mjs +34 -0
  50. package/esm2020/src/sparkline/rangebandsettings.directive.mjs +46 -0
  51. package/esm2020/src/sparkline/sparkline-all.module.mjs +29 -0
  52. package/esm2020/src/sparkline/sparkline.component.mjs +71 -0
  53. package/esm2020/src/sparkline/sparkline.module.mjs +34 -0
  54. package/esm2020/src/stock-chart/annotations.directive.mjs +60 -0
  55. package/esm2020/src/stock-chart/axes.directive.mjs +52 -0
  56. package/esm2020/src/stock-chart/indicators.directive.mjs +54 -0
  57. package/esm2020/src/stock-chart/periods.directive.mjs +54 -0
  58. package/esm2020/src/stock-chart/rows.directive.mjs +52 -0
  59. package/esm2020/src/stock-chart/selecteddataindexes.directive.mjs +52 -0
  60. package/esm2020/src/stock-chart/series.directive.mjs +58 -0
  61. package/esm2020/src/stock-chart/stockchart-all.module.mjs +29 -0
  62. package/esm2020/src/stock-chart/stockchart.component.mjs +337 -0
  63. package/esm2020/src/stock-chart/stockchart.module.mjs +106 -0
  64. package/esm2020/src/stock-chart/stockevents.directive.mjs +54 -0
  65. package/esm2020/src/stock-chart/trendlines.directive.mjs +59 -0
  66. package/esm2020/syncfusion-ej2-angular-charts.mjs +5 -0
  67. package/fesm2015/syncfusion-ej2-angular-charts.mjs +4376 -0
  68. package/fesm2015/syncfusion-ej2-angular-charts.mjs.map +1 -0
  69. package/fesm2020/syncfusion-ej2-angular-charts.mjs +4376 -0
  70. package/fesm2020/syncfusion-ej2-angular-charts.mjs.map +1 -0
  71. package/package.json +22 -9
  72. package/public_api.d.ts +1 -1
  73. package/schematics/utils/lib-details.js +2 -2
  74. package/schematics/utils/lib-details.ts +2 -2
  75. package/src/accumulation-chart/accumulationchart-all.module.d.ts +21 -15
  76. package/src/accumulation-chart/accumulationchart.component.d.ts +61 -58
  77. package/src/accumulation-chart/accumulationchart.module.d.ts +13 -5
  78. package/src/accumulation-chart/annotations.directive.d.ts +83 -78
  79. package/src/accumulation-chart/series.directive.d.ts +249 -244
  80. package/src/bullet-chart/bulletchart-all.module.d.ts +14 -8
  81. package/src/bullet-chart/bulletchart.component.d.ts +41 -38
  82. package/src/bullet-chart/bulletchart.module.d.ts +12 -5
  83. package/src/bullet-chart/ranges.directive.d.ts +73 -68
  84. package/src/chart/annotations.directive.d.ts +98 -93
  85. package/src/chart/axes.directive.d.ts +386 -381
  86. package/src/chart/categories.directive.d.ts +74 -69
  87. package/src/chart/chart-all.module.d.ts +72 -66
  88. package/src/chart/chart.component.d.ts +89 -86
  89. package/src/chart/chart.module.d.ts +24 -5
  90. package/src/chart/columns.directive.d.ts +35 -30
  91. package/src/chart/indicators.directive.d.ts +255 -250
  92. package/src/chart/multilevellabels.directive.d.ts +62 -57
  93. package/src/chart/rangecolorsettings.directive.d.ts +41 -36
  94. package/src/chart/rows.directive.d.ts +35 -30
  95. package/src/chart/segments.directive.d.ts +46 -41
  96. package/src/chart/selecteddataindexes.directive.d.ts +37 -32
  97. package/src/chart/series.directive.d.ts +488 -483
  98. package/src/chart/striplines.directive.d.ts +171 -166
  99. package/src/chart/trendlines.directive.d.ts +116 -111
  100. package/src/chart3d/axes.directive.d.ts +270 -265
  101. package/src/chart3d/chart3d-all.module.d.ts +26 -20
  102. package/src/chart3d/chart3d.component.d.ts +65 -62
  103. package/src/chart3d/chart3d.module.d.ts +16 -5
  104. package/src/chart3d/columns.directive.d.ts +31 -26
  105. package/src/chart3d/rows.directive.d.ts +31 -26
  106. package/src/chart3d/selecteddataindexes.directive.d.ts +37 -32
  107. package/src/chart3d/series.directive.d.ts +177 -172
  108. package/src/circularchart3d/circularchart3d-all.module.d.ts +19 -13
  109. package/src/circularchart3d/circularchart3d.component.d.ts +58 -55
  110. package/src/circularchart3d/circularchart3d.module.d.ts +13 -5
  111. package/src/circularchart3d/selecteddataindexes.directive.d.ts +37 -32
  112. package/src/circularchart3d/series.directive.d.ts +147 -142
  113. package/src/index.d.ts +63 -63
  114. package/src/range-navigator/rangenavigator-all.module.d.ts +14 -8
  115. package/src/range-navigator/rangenavigator.component.d.ts +44 -41
  116. package/src/range-navigator/rangenavigator.module.d.ts +12 -5
  117. package/src/range-navigator/series.directive.d.ts +83 -78
  118. package/src/smithchart/series.directive.d.ts +93 -88
  119. package/src/smithchart/smithchart-all.module.d.ts +14 -8
  120. package/src/smithchart/smithchart.component.d.ts +44 -41
  121. package/src/smithchart/smithchart.module.d.ts +12 -5
  122. package/src/sparkline/rangebandsettings.directive.d.ts +38 -33
  123. package/src/sparkline/sparkline-all.module.d.ts +13 -7
  124. package/src/sparkline/sparkline.component.d.ts +46 -43
  125. package/src/sparkline/sparkline.module.d.ts +12 -5
  126. package/src/stock-chart/annotations.directive.d.ts +89 -84
  127. package/src/stock-chart/axes.directive.d.ts +291 -286
  128. package/src/stock-chart/indicators.directive.d.ts +213 -208
  129. package/src/stock-chart/periods.directive.d.ts +47 -42
  130. package/src/stock-chart/rows.directive.d.ts +35 -30
  131. package/src/stock-chart/selecteddataindexes.directive.d.ts +37 -32
  132. package/src/stock-chart/series.directive.d.ts +247 -242
  133. package/src/stock-chart/stockchart-all.module.d.ts +13 -7
  134. package/src/stock-chart/stockchart.component.d.ts +68 -65
  135. package/src/stock-chart/stockchart.module.d.ts +20 -5
  136. package/src/stock-chart/stockevents.directive.d.ts +88 -83
  137. package/src/stock-chart/trendlines.directive.d.ts +117 -112
  138. package/syncfusion-ej2-angular-charts.d.ts +5 -0
  139. package/@syncfusion/ej2-angular-charts.es5.js +0 -5029
  140. package/@syncfusion/ej2-angular-charts.es5.js.map +0 -1
  141. package/@syncfusion/ej2-angular-charts.js +0 -4747
  142. package/@syncfusion/ej2-angular-charts.js.map +0 -1
  143. package/LICENSE +0 -10
  144. package/dist/ej2-angular-charts.umd.js +0 -5719
  145. package/dist/ej2-angular-charts.umd.js.map +0 -1
  146. package/dist/ej2-angular-charts.umd.min.js +0 -11
  147. package/dist/ej2-angular-charts.umd.min.js.map +0 -1
  148. package/ej2-angular-charts.d.ts +0 -13
  149. package/ej2-angular-charts.metadata.json +0 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,3547 @@
1
+ # Changelog
2
+
3
+ ## [Unreleased]
4
+
5
+ ### Chart
6
+
7
+ #### Bug Fixes
8
+
9
+ - `#I730840` - Now, the column with single point renders properly on date time category axis.
10
+
11
+ ### Stock Chart
12
+
13
+ #### Feature
14
+
15
+ - Added support to highlight the last value of the series with a label and grid line indicator, offering a clear and immediate reference point for the series endpoint. Explore the demo [here](https://ej2.syncfusion.com/demos/#/tailwind3/stock-chart/spline.html)
16
+
17
+ ## 29.2.10 (2025-06-10)
18
+
19
+ ### Chart
20
+
21
+ #### Bug Fixes
22
+
23
+ - `#I730840` - The console warning for the shared tooltip in trend line will no longer occurs.
24
+
25
+ ## 29.2.8 (2025-06-03)
26
+
27
+ ### Chart
28
+
29
+ #### Bug Fixes
30
+
31
+ - `#I956983` - The console warning for an empty text anchor will no longer occur on canvas-enabled charts.
32
+ - `#I727900` - Resolved a console error that occurred when updating the spline series using the add Point method.
33
+
34
+ ## 29.2.5 (2025-05-21)
35
+
36
+ ### Chart
37
+
38
+ #### Features
39
+
40
+ - `#I668455` - Provided support for setting offset values for labels in category axes.
41
+
42
+ #### Bug Fixes
43
+
44
+ - `#I722486` - Chart empty point mode now works properly in ASP.NET MVC Chart.
45
+ - `#I725935` - Console error no longer occurs when toggling combination line and stacked area series.
46
+
47
+ ## 29.2.4 (2025-05-14)
48
+
49
+ ### Chart
50
+
51
+ #### Bug Fixes
52
+
53
+ - `#F67379` - Now the opacity updates properly on the data point after the tooltip fades out.
54
+
55
+ ## 29.1.41 (2025-05-06)
56
+
57
+ ### Accumulation Chart
58
+
59
+ #### Bug Fixes
60
+
61
+ - `#I580016` - Wrapped data labels are now correctly positioned in pyramid charts when smart labels are enabled.
62
+
63
+ ### Chart
64
+
65
+ #### Bug Fixes
66
+
67
+ - `#I715763` - Stacking labels now render correctly for grouped stacking column series.
68
+ - `#I713317` - Stripline text now positions correctly when rotation is applied.
69
+
70
+ ## 29.1.40 (2025-04-29)
71
+
72
+ ### Accumulation Chart
73
+
74
+ #### Bug Fixes
75
+
76
+ - `#I711450` - Pie chart now properly renders with higher border width values.
77
+
78
+ ## 29.1.35 (2025-04-01)
79
+
80
+ ### 3DChart
81
+
82
+ #### Bug Fixes
83
+
84
+ - `#I637725` - Now, the first label on the y-axis is positioned properly for the 100% stacking series when the x-value is empty.
85
+
86
+ ### Chart
87
+
88
+ #### Bug Fixes
89
+
90
+ - `#I697165` - The legend symbol fill remains unchanged, even when point color mapping is applied to the series, maintaining its original color instead of reflecting individual point colors.
91
+ - `#I703094` - Tooltip trackball now works properly for the canvas-enabled scatter type chart.
92
+ - `#I701635` - Now the column placed properly for the uneven data set.
93
+ - `#I703055` - Crosshair tooltip now updates properly when dynamically enabled or disabled.
94
+
95
+ ## 29.1.33 (2025-03-25)
96
+
97
+ ### Chart
98
+
99
+ #### Features
100
+
101
+ - `#I597593` - Introduced support for displaying a tooltip that provides information about the data point closest to the cursor.
102
+ - `#I580507` - Users can now place horizontal and vertical scrollbars at the top, bottom, left, or right of the chart.
103
+ - `#I609348`- Provided support for customizing the corner radius for individual columns.
104
+ - Added support for displaying the cumulative total for stacked chart data directly through data labels.
105
+ - Users can now highlight the entire range of data points within a specific category for better visibility.
106
+ - Added support to customize Excel properties through an event triggered before the chart data is exported.
107
+ - Added animation support for data labels, enhancing the visual appearance when they appear on the chart.
108
+
109
+ ### Accumulation Chart
110
+
111
+ #### Features
112
+
113
+ - `#I667715` - Added support for trapezoidal funnel shapes in the accumulation chart, offering a new design option to represent data more effectively and enhance visual appeal.
114
+ - Provided the customization support for accumulation chart title position.
115
+
116
+ ## 28.2.9 (2025-03-04)
117
+
118
+ ### Chart
119
+
120
+ #### Bug Fixes
121
+
122
+ - `#I694559` - Now, the RTL-enabled chart renders properly while exporting.
123
+ - `#I690910` - Multiple charts can now be exported as a single CSV or XLSX file.
124
+
125
+ ## 28.2.7 (2025-02-25)
126
+
127
+ ### Accumulation Chart
128
+
129
+ #### Bug Fixes
130
+
131
+ - `#I691821` - The accumulation chart rendering performance has been improved.
132
+
133
+ ## 28.2.6 (2025-02-18)
134
+
135
+ ### Chart
136
+
137
+ #### Bug Fixes
138
+
139
+ - `#I691577` - Now, mouse wheel zooming works properly in the Firefox browser.
140
+
141
+ ## 28.2.5 (2025-02-11)
142
+
143
+ ### Chart
144
+
145
+ #### Bug Fixes
146
+
147
+ - `#I687354` - The chart with the primary and secondary axes is now working properly even when no series is bound.
148
+
149
+ ## 28.2.4 (2025-02-04)
150
+
151
+ ### Chart
152
+
153
+ #### Bug Fixes
154
+
155
+ - `#I681285` - Chart performance has been optimized when using the data label template.
156
+
157
+ ## 28.2.3 (2025-01-29)
158
+
159
+ ### Chart
160
+
161
+ #### Bug Fixes
162
+
163
+ - `#I679703` - The arguments in the `axisMultiLabelRender` event can now be modified correctly.
164
+
165
+ ## 28.1.41 (2025-01-21)
166
+
167
+ ### Chart
168
+
169
+ #### Bug Fixes
170
+
171
+ - `#I651775` - The data label position for the stacked column now renders properly.
172
+ - `#F195744` - The tooltip for the stacking column series now renders properly during keyboard navigation.
173
+
174
+ ### Bullet Chart
175
+
176
+ #### Bug Fixes
177
+
178
+ - `#I676482` - The bullet chart will render properly even when the range is set to empty.
179
+
180
+ ## 28.1.39 (2024-01-14)
181
+
182
+ ### Chart
183
+
184
+ #### Bug Fixes
185
+
186
+ - `#I663652` - The calculations for both sum and intermediate sum indexes have been corrected.
187
+
188
+ ## 28.1.38 (2025-01-07)
189
+
190
+ ### Chart
191
+
192
+ #### Bug Fixes
193
+
194
+ - `#F195601` - The console error no longer occurs when rendering a single data point with a multilevel label.
195
+ - `#I676165` - Exporting a chart with complex properties to CSV or XLSX now functions correctly.
196
+
197
+ ### Accumulation Chart
198
+
199
+ #### Bug Fixes
200
+
201
+ - `#I674361` - The subtitle now renders correctly even when its length exceeds that of the title.
202
+
203
+ ## 28.1.37 (2024-12-31)
204
+
205
+ ### Chart
206
+
207
+ #### Bug Fixes
208
+
209
+ - `#I667080` - The column series now renders properly when the width is set in pixels and `enableSideBySidePlacement` is set to false.
210
+ - `#I654525` - The y-axis now dynamically adjusts to accommodate negative ranges when the negative error bar exceeds the minimum value.
211
+
212
+ ## 28.1.36 (2024-12-24)
213
+
214
+ ### Chart
215
+
216
+ #### Bug Fixes
217
+
218
+ - `#I665246` - Now, the chart point click and double-click events are working properly in the waterfall chart.
219
+ - `#I662191` - Now, zooming is restricted for the mouse wheel, similar to selection zoom.
220
+ - `#I666272` - Now, the y-axis range is set properly for the waterfall series.
221
+ - `#I666317` - The exceptions that occurred during React Jest testing have been resolved.
222
+
223
+ ## 28.1.35 (2024-12-18)
224
+
225
+ ### Chart
226
+
227
+ #### Bug Fixes
228
+
229
+ - `#I662154` - Axis labels are now rendered correctly in the exported PDF, even when headers and footers are included.
230
+ - `#I662546` - Tooltip highlighting functions correctly when the column series width is specified using `columnWidthInPixel`.
231
+ - `#I662277` - The intermediate sum index is no longer included in the calculation of the sum index.
232
+ - `#I663653` - Data labels are now rendered correctly when the intermediate sum index is empty.
233
+ - `#I663652` - The calculations for both sum and intermediate sum indexes have been corrected.
234
+
235
+ ## 28.1.33 (2024-12-12)
236
+
237
+ ### Chart
238
+
239
+ #### Bug Fixes
240
+
241
+ - `#I659555` - Now, the minor gridlines and ticks are rendered in canvas mode.
242
+
243
+ #### New Features
244
+
245
+ - `#I567864` - Legends can be arranged horizontally or vertically, with a fixed-width option and a maximum column count for consistent and flexible presentation.
246
+ - `#I620773` - The crosshair now snaps to the nearest data point, providing improved precision and focus on individual data points.
247
+ - `#F194134` - Users can now customize the position of the zoom toolbar within the chart using drag-and-drop functionality, allowing easy repositioning anywhere within the chart area.
248
+ - Users can now customize the ARIA label, role, tab index, and focusable options for chart elements to improve accessibility and keyboard navigation.
249
+ - Added options for adjusting the spacing between the chart area and container.
250
+ - When hovering over a data point, the corresponding series is now highlighted, improving clarity and interaction with the tooltip.
251
+
252
+ #### Breaking Changes
253
+
254
+ - The default value of the `edgeLabelPlacement` property has been changed from `None` to `Shift` for better visibility of axis labels.
255
+
256
+ ### Stock Chart
257
+
258
+ #### New Features
259
+
260
+ - `#I620773` - The crosshair now snaps to the nearest data point, providing improved precision and focus on individual data points.
261
+
262
+ ## 27.2.5 (2024-12-03)
263
+
264
+ ### Chart
265
+
266
+ #### Bug Fixes
267
+
268
+ - `#I653576` - Now, the data label for zero will not overlap with the previous rectangle in inverted stacking series.
269
+ - `#I656631` - The data label for the polar and radar series renders properly, even when it collides with the axis.
270
+ - `#I657609` - Now, the legend tooltip text updates properly when changes are made in the legend render event.
271
+
272
+ ## 27.2.4 (2024-11-26)
273
+
274
+ ### Chart
275
+
276
+ #### Bug Fixes
277
+
278
+ - `#I654525` - Now, the error bar is displayed properly for the larger value.
279
+ - `#I653358` - Now, the text render event’s text argument contains the datetime for the y-axis.
280
+ - `#I654788` - Now, the chart zooms properly while scrolling after it is destroyed and re-rendered.
281
+ - `#I653576` - The data label position is now set correctly for the labelIntersectAction as Hide.
282
+ - `#I653442` - The selection rectangle now renders properly in canvas mode.
283
+ - `#I654149` - Now the spline series animation is proper when adding null values.
284
+
285
+ ## 27.2.3 (2024-11-19)
286
+
287
+ ### Chart
288
+
289
+ #### Bug Fixes
290
+
291
+ - `#I650885` - Now, the subtitle will align properly without cut off.
292
+ - `#I651405` - Legends with paging now render correctly when toggling in canvas mode.
293
+
294
+ ### Stock Chart
295
+
296
+ #### Bug Fixes
297
+
298
+ - `#I652007` - The tick mark now remains consistent for the selected indicator after refresh or resize.
299
+
300
+ ## 27.2.2 (2024-11-14)
301
+
302
+ ### Chart
303
+
304
+ #### Bug Fixes
305
+
306
+ - `#I650135` - The cumulative percentage in the Pareto chart tooltip will display the precise value to two decimal points.
307
+ - `#I648361` - The exponential trendline now renders correctly for the datetime axis.
308
+
309
+ ## 27.1.58 (2024-11-05)
310
+
311
+ ### Chart
312
+
313
+ #### Bug Fixes
314
+
315
+ - `#F188458` - Now the page scroll remains the same after clearing the series.
316
+ - `#I647466` - The zoom settings properties are now properly updated on data binding.
317
+
318
+ ### Accumulation Chart
319
+
320
+ #### Bug Fixes
321
+
322
+ - `I917094` - The series property now updates correctly on data binding.
323
+
324
+ ## 27.1.57 (2024-10-29)
325
+
326
+ ### Chart
327
+
328
+ #### Bug Fixes
329
+
330
+ - `#I640035` - The tooltips now render properly for decimal data points.
331
+ - `#I645981` - The stripline now works correctly on the logarithmic axis.
332
+
333
+ ### Stock Chart
334
+
335
+ #### Bug Fixes
336
+
337
+ - `#F194807` - The series now renders properly after a data source update and legend toggle.
338
+
339
+ ## 27.1.55 (2024-10-22)
340
+
341
+ ### Chart
342
+
343
+ #### Bug Fixes
344
+
345
+ - `#I641213` - Data points in a multi-pane chart no longer collapse when zooming in canvas mode.
346
+ - `#I641366` - The border for the multi-pane chart now renders correctly in canvas mode.
347
+ - `#I640624` - The Moving Average trendline now functions as expected when the period is set to one.
348
+ - `#I642177` - The `columnWidthInPixel` property now works correctly in the transposed stacked column chart.
349
+ - `#I638097` - The scrollbar now functions properly during data binding.
350
+ - `#I644765` - Series now renders properly when the axis interval is zero.
351
+
352
+ ### Accumulation Chart
353
+
354
+ #### Bug Fixes
355
+
356
+ - `#I642553` - The legend text size now updates correctly when resizing the accumulation chart.
357
+
358
+ ## 27.1.53 (2024-10-15)
359
+
360
+ ### Chart
361
+
362
+ #### Bug Fixes
363
+
364
+ - `#I637436` - Now, multilevel axis labels are working properly when RTL is enabled.
365
+ - `#I640682` - The border dash array now works properly for all series.
366
+ - `#I640585` - Now, the range area series works properly when the middle point's x value is set to 0.
367
+
368
+ ### 3DChart
369
+
370
+ #### Bug Fixes
371
+
372
+ - `#I637725` - The first label on the y-axis is now positioned correctly.
373
+
374
+ ## 27.1.52 (2024-10-08)
375
+
376
+ ### Chart
377
+
378
+ #### Bug Fixes
379
+
380
+ - `#I605430` - Now, the chart height is set properly when applying the scale.
381
+ - `#I636350` - Now, the y-axis label is rendered properly when rotation is enabled.
382
+
383
+ ### Accumulation Chart
384
+
385
+ #### Bug Fixes
386
+
387
+ - `#I637398` - Now, the percentage values of the pie chart points are updated when the legend is clicked.
388
+
389
+ ## 27.1.51 (2024-09-30)
390
+
391
+ ### Stock Chart
392
+
393
+ #### Bug Fixes
394
+
395
+ - `#F194476` - The crosshair tooltip now displays correctly on the axis labels.
396
+
397
+ ## 27.1.50 (2024-09-24)
398
+
399
+ ### Chart
400
+
401
+ #### Bug Fixes
402
+
403
+ - `#I631309` - Now, the spline range area chart will handle null values properly.
404
+
405
+ ### Accumulation Chart
406
+
407
+ #### Bug Fixes
408
+
409
+ - `#I630866` - Now, the group separator will work for both the tooltip x-point and the legend text.
410
+
411
+ ## 27.1.48 (2024-09-18)
412
+
413
+ ### Chart
414
+
415
+ #### Features
416
+
417
+ - `#I539415`- Provided support for smooth data transitions with animation effects when sorting data in the chart.
418
+ - `#I539415`- Provided support for smooth animation transitions when zooming the chart.
419
+ - Added support to disable risers in the step line series for enhanced customization.
420
+
421
+ ### Accumulation Chart
422
+
423
+ #### Features
424
+
425
+ - `#I539415`- Provided support for animations when adding, removing, or updating data for series, data labels, and legends.
426
+ - Added support for rounded corners in pie, donut, pyramid, and funnel charts.
427
+ - Provided pattern support for data points in accumulation charts.
428
+
429
+ ## 26.2.14 (2024-09-10)
430
+
431
+ ### Chart
432
+
433
+ #### Bug Fixes
434
+
435
+ - `#F194171` - Now, the first and last points are rendered properly in the bar chart when using the category axis.
436
+
437
+ ## 26.2.12 (2024-09-03)
438
+
439
+ ### Chart
440
+
441
+ #### Bug Fixes
442
+
443
+ - `#I624097` - Now, the pareto chart will render properly when specifying the axis name in the pareto series.
444
+
445
+ ## 26.2.11 (2024-08-27)
446
+
447
+ ### Chart
448
+
449
+ #### Bug Fixes
450
+
451
+ - `#I621966` - Now the step is applied properly from left and right of the points in the range step area.
452
+ - `#I623859` - Now the maximum range for waterfall series is calculated properly.
453
+
454
+ ## 26.2.9 (2024-08-13)
455
+
456
+ ### Chart
457
+
458
+ #### Bug Fixes
459
+
460
+ - `#I617528` - Now the data labels are visible only for the available range.
461
+ - `#I618989` - Selection zooming and panning now function properly on the date-time category axis.
462
+
463
+ ### Accumulation Chart
464
+
465
+ #### Bug Fixes
466
+
467
+ - `#I618245` - Now resizing works properly in accumulation, even when the tooltip is enabled.
468
+
469
+ ### StockChart
470
+
471
+ #### Bug Fixes
472
+
473
+ - `#F191596` - Spline rendering now correctly handles zero data values.
474
+
475
+ ## 26.2.8 (2024-08-06)
476
+
477
+ ### Chart
478
+
479
+ #### Bug Fixes
480
+
481
+ - `#I615273` - Now, the tooltip will render properly when a string is used as the y-value.
482
+
483
+ ## 26.2.5 (2024-07-26)
484
+
485
+ ### Chart
486
+
487
+ #### Bug Fixes
488
+
489
+ - `#I612449` - The secondary axis labels will render properly with scrollbar on the secondary axis.
490
+
491
+ ### RangeNavigator
492
+
493
+ #### Bug Fixes
494
+
495
+ - `#I613716` - Now, the series is rendered properly when the y-values are the same.
496
+
497
+ ## 26.2.4 (2024-07-24)
498
+
499
+ ### Chart
500
+
501
+ #### Bug Fixes
502
+
503
+ - `#I605096` - Now, the data label color is correct when setting the position to `Auto`.
504
+
505
+ ### Accumulation Chart
506
+
507
+ #### Bug Fixes
508
+
509
+ - `#I609990` - Now, the data label tooltip will adjust automatically when it goes outside the chart bounds.
510
+
511
+ ## 26.1.42 (2024-07-16)
512
+
513
+ ### Chart
514
+
515
+ #### Bug Fixes
516
+
517
+ - `#I605430` - The chart height fits the container even when scaling is applied.
518
+
519
+ ### 3DCircularChart
520
+
521
+ #### Bug Fixes
522
+
523
+ - `#I608643` - Now, the legend highlighting works properly for the 3D Circular chart.
524
+
525
+ ## 26.1.41 (2024-07-09)
526
+
527
+ ### Chart
528
+
529
+ #### Bug Fixes
530
+
531
+ - `#I604359` - The y-axis label is now proper when setting the minimum value on a date-time axis.
532
+ - `#I607015` - The marker will not get cut off when enabling the scrollbar.
533
+
534
+ #### Features
535
+
536
+ - `#I546800` - Enhanced the appearance of connector lines in the waterfall chart for better visual clarity.
537
+
538
+ ## 26.1.40 (2024-07-02)
539
+
540
+ ### Chart
541
+
542
+ #### Bug Fixes
543
+
544
+ - `#I604532` - Removed exclamation mark from comments in the chart source.
545
+
546
+ ## 26.1.39 (2024-06-25)
547
+
548
+ ### Chart
549
+
550
+ #### Bug Fixes
551
+
552
+ - `#I599108` - Now, the chart updates properly when rendered in the Firefox browser.
553
+ - `#I597246` - The chart with a zero data label is now rendered when setting the position as `Top`.
554
+
555
+ ### Accumulation Chart
556
+
557
+ #### Bug Fixes
558
+
559
+ - `#I595618` - User interaction now works properly in the nested doughnut chart.
560
+
561
+ ### Sparkline
562
+
563
+ #### Bug Fixes
564
+
565
+ - `#I601193` - The fill property in Sparkline now works properly.
566
+
567
+ ## 26.1.38 (2024-06-19)
568
+
569
+ ### Chart
570
+
571
+ #### Bug Fixes
572
+
573
+ - `#I594639` - Now, the range navigator and the chart are rendered with the same width.
574
+ - `#I598543` - Now, the chart area scrolling works properly when enabling the trackball in mobile mode.
575
+ - `#F188458` - Now, the page remains in the same position when adding or removing a series in chart.
576
+
577
+ ## 26.1.35 (2024-06-11)
578
+
579
+ ### Accumulation Chart
580
+
581
+ #### Bug Fixes
582
+
583
+ - `#I590334` - Now, the pie legend highlight works properly.
584
+ - `#I590334` - Now, the legend highlight will work properly even disabling selection in the pie chart.
585
+
586
+ ### Chart
587
+
588
+ #### Bug Fixes
589
+
590
+ - `#I591823` - Now, the legend doesn't gets overlapped when resizing the pie chart to minimal size.
591
+
592
+ #### Features
593
+
594
+ - `#I539415` - Provided support for animations when adding, removing, or updating data for all chart types, ranging from line charts to financial charts.
595
+ - `#I539415` - Provided smooth transition support for axis elements like gridlines, tick lines, and labels when data is updated in the chart.
596
+ - `#I539415` - Provided smooth transition support for annotations when data is updated in the chart.
597
+ - Improved the animation of stacking series when clicking on the legend.
598
+ - Provided highlight support for chart series when clicking on the legend.
599
+ - Users can now access point information based on the pointer coordinates during chart mouse events and use this information to add or remove points on the chart.
600
+
601
+ ## 25.2.6 (2024-05-28)
602
+
603
+ ### Chart
604
+
605
+ #### Bug Fixes
606
+
607
+ - `#I592273` - An empty tooltip will no longer be displayed when the cancel argument is enabled in the shared tooltip event.
608
+
609
+ ## 25.2.5 (2024-05-21)
610
+
611
+ ### Accumulation Chart
612
+
613
+ #### Bug Fixes
614
+
615
+ - `#I580553` - Accessibility issues are resolved, and now the score has become stable.
616
+
617
+ ### Chart
618
+
619
+ #### Bug Fixes
620
+
621
+ - `#I581265` - Now, the Stacking Bar chart has been exported as a CSV file, and the CSV contains the appropriate data.
622
+
623
+ ## 25.2.4 (2024-05-14)
624
+
625
+ ### Chart
626
+
627
+ #### Bug Fixes
628
+
629
+ - `#I585297` - Tooltips in polar and radar series now render properly without console errors.
630
+ - `#I532022` - Now, axis labels will render properly without any cutting off.
631
+ - `#I585033` - Now, datetime annotations render properly.
632
+
633
+ ## 25.2.3 (2024-05-08)
634
+
635
+ ### Accumulation Chart
636
+
637
+ #### Bug Fixes
638
+
639
+ - `#I574491` - The right click function now works properly in the accumulation chart with the external mouse on the mac.
640
+
641
+ ### Chart
642
+
643
+ #### Bug Fixes
644
+
645
+ - `#I581265` - Now, the bar chart has been exported as a CSV file, and the CSV contains the appropriate data.
646
+
647
+ ## 25.1.42 (2024-04-30)
648
+
649
+ ### Accumulation Chart
650
+
651
+ #### Bug Fixes
652
+
653
+ - `#I579773` - Now, the center label remains center even when adjusting the start and end angles.
654
+ - `#I577505` - Now, the radius specified by the mapping will render properly in the accumulation chart.
655
+
656
+ ## 25.1.41 (2024-04-23)
657
+
658
+ ### Chart
659
+
660
+ #### Bug Fixes
661
+
662
+ - `#I577538` - When resizing the chart, the maximum value does not change.
663
+ - `#I578863` - Now the chart exports properly in portrait orientation.
664
+ - `#I579386` - Now the legend renders properly using the add series method in canvas.
665
+ - `#I577327` - Now the DateTimeCategory series is visible when clicking on the legend.
666
+
667
+ ## 25.1.40 (2024-04-16)
668
+
669
+ ### Chart
670
+
671
+ #### Bug Fixes
672
+
673
+ - `#I574804` - Now, the title is wrapped properly when it exits the chart in wrap mode.
674
+ - `#I573884` - Now, all legend items with the same value in point mode will render properly.
675
+
676
+ ## 25.1.39 (2024-04-09)
677
+
678
+ ### Chart
679
+
680
+ #### Bug Fixes
681
+
682
+ - `#I571372` - The first axis label does not shift to the left when using `edgelabelplacement` as `shift`.
683
+ - `#I571107` - When the chart is resized, the console error will no longer be thrown.
684
+
685
+ ## 25.1.38 (2024-04-02)
686
+
687
+ ### Chart
688
+
689
+ #### Bug Fixes
690
+
691
+ - `#I532022` - Now, the datalabel position is properly set when the position property is set to `Auto`.
692
+
693
+ ## 25.1.37 (2024-03-26)
694
+
695
+ ### AccumulationChart
696
+
697
+ #### Bug Fixes
698
+
699
+ - `#I564804` - Now, the `textWrap` property in the legend is working properly.
700
+
701
+ ### Chart
702
+
703
+ #### Bug Fixes
704
+
705
+ - `#I528508` - The tooltip template div is now added based on the series count, and it renders properly.
706
+ - `#I563227` - Now, datalabel does not take the y value in place of a null value, and it renders properly.
707
+ - `#I562333` - Now, annotations are rendered corresponding to their series point while enabling the `isIndexed` property
708
+ - `#I566633` - Now, the first axis label is properly displayed on the x-axis.
709
+
710
+ ## 25.1.35 (2024-03-15)
711
+
712
+ ### Chart
713
+
714
+ #### Features
715
+
716
+ - `#I528518` - Now, it is possible to specify the dasharray for all types of striplines border, including vertical, horizontal, and segmented, in the chart.
717
+
718
+ ### 3DCircularChart
719
+
720
+ The 3D Circular Chart provides a graphical representation of data in three dimensions, with each slice's size indicating its proportion relative to the entire dataset. Unlike traditional 2D charts, 3D charts add depth to visualization, providing a better understanding of data patterns.
721
+
722
+ - **Series**: The 3D Circular Chart can plot pie and donut types.
723
+ - **Data binding**: Bind the 3D Circular Chart component with an array of JSON objects or a data manager. In addition to chart series, data labels and tooltips can also be bound to the data.
724
+ - **Data labels**: Annotate points with labels to improve the readability of data.
725
+ - **Legends**: Provide additional information about points in a customizable and interactive legend.
726
+ - **User interaction**: Add interactive features such as tooltips, rotation, tilt, data point highlight and selection.
727
+ - **Print and Export**: Print a 3D Circular Chart directly from the browser and export it in JPEG and PNG formats.
728
+ - **RTL**: The right-to-left mode aligns tooltips, legends, and data in the 3D Circular Chart component from right to left.
729
+
730
+ ## 24.2.9 (2024-03-05)
731
+
732
+ ### Chart
733
+
734
+ #### Bug Fixes
735
+
736
+ - `#I558392` - Now the line color of the Pareto chart is stable when toggling the legend.
737
+ - `#I558247` - Now sorting is working in the Pareto chart.
738
+ - `#I557017` - Now the column is rendered properly when a corner radius is used.
739
+
740
+ ## 24.2.8 (2024-02-27)
741
+
742
+ ### Chart
743
+
744
+ #### Bug Fixes
745
+
746
+ - `#T553171` - Now the center label is aligned properly when increasing the font size.
747
+ - `#I548552` - The y-axis now dynamically changes based on the current visible points when zooming.
748
+
749
+ ## 24.2.7 (2024-02-20)
750
+
751
+ ### Chart
752
+
753
+ #### Bug Fixes
754
+
755
+ - `#I549266` - The Hilo open-close chart data points shape is now rendering properly.
756
+
757
+ ### StockChart
758
+
759
+ #### Bug Fixes
760
+
761
+ - `#I554213` - The dropdown font style has now been changed according to the selected theme.
762
+
763
+ ## 24.2.5 (2024-02-13)
764
+
765
+ ### StockChart
766
+
767
+ #### Bug Fixes
768
+
769
+ - `#I549996` - Now, the stock chart axis labels render properly.
770
+
771
+ ## 24.2.4 (2024-02-06)
772
+
773
+ ### Chart
774
+
775
+ #### Features
776
+
777
+ - `#I528067` - Now, right-to-left scrolling is functioning correctly in the charts.
778
+
779
+ #### Bug Fixes
780
+
781
+ - `#I539074` - Now, the stacking column renders properly even when the series is sorted based on the series name.
782
+ - `#I541484` - Now, the decimal point is displayed in the y-axis label when the language setting on Google is set to French.
783
+ - `#I546219` - Now, the `visible` property in the series is working properly when updated dynamically.
784
+
785
+ ### BulletChart
786
+
787
+ #### Bug Fixes
788
+
789
+ - `#I544771` - Now, the `textAlignment` property in the `dataLabel` is working properly.
790
+
791
+ ## 24.1.47 (2024-01-23)
792
+
793
+ ### AccumulationChart
794
+
795
+ #### Bug Fixes
796
+
797
+ - `#I539550` - Now, the `enableSmartLabels` property in the accumulation chart is functioning correctly.
798
+
799
+ ### Chart
800
+
801
+ #### Bug Fixes
802
+
803
+ - `#I541520` - Now, the `startFromZero` property in the chart is working properly.
804
+
805
+ ## 24.1.46 (2024-01-17)
806
+
807
+ ### Chart
808
+
809
+ #### Bug Fixes
810
+
811
+ - `#I537751` - Now, the `enableZoom` property in the `scrollbarSettings` is working properly.
812
+ - `#I535723` - Now, the showTooltip is working properly on mobile devices.
813
+ - `#I528752` - Now, the chart values update properly during the resized event when integrating the EJ2 JS chart in a Blazor application.
814
+
815
+ ## 24.1.45 (2024-01-09)
816
+
817
+ ### AccumulationChart
818
+
819
+ #### Bug Fixes
820
+
821
+ - `#I533625` - Now, the `textAlignment` property in the `titleStyle` of the accumulation chart is functioning correctly.
822
+
823
+ ### Chart
824
+
825
+ #### Bug Fixes
826
+
827
+ - `#I536934` - Now, the `category` axis label renders properly when the x-value is provided as an empty string.
828
+
829
+ ## 24.1.44 (2024-01-03)
830
+
831
+ ### Chart
832
+
833
+ #### Bug Fixes
834
+
835
+ - `#I521819` - Improved the accuracy of the normal distribution in the histogram series.
836
+ - `#I528067` - Removed the multilevel label if all series are not visible.
837
+ - `#I185777` - Fixed the marker size issue in the scatter chart during initial loading.
838
+ - `#I185904` - Resolved the issue with the shared tooltip when disabling `showNearestPoint`.
839
+ - `#I532475` - Fixed the console error in Mozilla Firefox when zooming the bubble chart.
840
+
841
+ ## 24.1.43 (2023-12-27)
842
+
843
+ ### Chart
844
+
845
+ #### Bug Fixes
846
+
847
+ - `#I527182` - Now, the chart element ID is generated properly.
848
+ - `#I527898` - Now, the `interval` for the DateTimeCategory is working properly.
849
+ - `#I528674` - Now, scroll bar positioned properly.
850
+ - `#I528865` - Resolved the console error related to trendlines when using two sets of data with a polynomial type.
851
+
852
+ ## 24.1.41 (2023-12-18)
853
+
854
+ ### Chart
855
+
856
+ #### Features
857
+
858
+ - `#I489636`, `#F185569` - Provided support to align the axis title to the near, far, and center of the chart area.
859
+ - `#I482069`, `#I510188`, `#I511613` - Provided support to position the tooltip at a fixed location within the chart.
860
+
861
+ #### Bug Fixes
862
+
863
+ - `#F185567` - The data label now renders properly for the waterfall chart.
864
+ - `#I185614` - The 100% stacking bar is now rendered properly even when the data value is 0.
865
+
866
+ ### BulletChart
867
+
868
+ #### Features
869
+
870
+ - `#I495253` - Provided support to apply different colors to value and target bars in the bullet chart.
871
+
872
+ ### 3DChart
873
+
874
+ A 3D chart is a graphical representation of data in three dimensions, showcasing relationships and trends among variables. Unlike traditional 2D charts, 3D charts add depth to the visualization, allowing for a more immersive and comprehensive understanding of data patterns.
875
+
876
+ - **Series** - The 3D chart can plot over six chart types, including column, bar, stacking column, stacking bar, 100% stacked column, and 100% stacked bar.
877
+ - **Data Binding** - Bind the 3D chart component with an array of JSON objects or a DataManager. In addition to chart series, data labels, and tooltips can also be bound to your data.
878
+ - **Data Labels** - Support data labels to annotate points with labels to improve the readability of data.
879
+ - **Axis Types** - Able to plot different data types such as numbers, datetime, logarithmic, and string.
880
+ - **Axis Features** - Supports multiple axes, inverted axes, multiple panes, opposed positions, and smart labels.
881
+ - **Legend** - Supports a legend to provide additional information about a series with customization options.
882
+ - **Animation** - The 3D chart series will be animated when rendering and refreshing the chart widget.
883
+ - **User Interaction** - Supports interactive features such as tooltips and data point selection.
884
+ - **Export** - Supports printing the 3D chart directly from the browser and exporting the chart in both JPEG and PNG formats.
885
+ - **RTL** - Provides a full-fledged right-to-left mode that aligns the axis, tooltip, legend, and data in the 3D chart component from right to left.
886
+ - **Appearance** - Colors for the 3D charts are picked by the built-in theme, but each element of the 3D chart can be customized with simple configuration options.
887
+ - **Accessibility** - Designed to be accessible to users with disabilities, with features such as WAI-ARIA standard compliance and keyboard navigation to ensure that the 3D chart can be effectively used with assistive technologies such as screen readers.
888
+
889
+ ## 23.2.7 (2023-12-05)
890
+
891
+ ### Chart
892
+
893
+ #### Bug Fixes
894
+
895
+ - `#I522567` - The chart `height` has now been updated properly.
896
+ - `#I523917` - Now, the marker renders properly when animating the series after changing data through the period selector.
897
+
898
+ ### StockChart
899
+
900
+ #### Bug Fixes
901
+
902
+ - `#I522065` - Now, the series `border` is working properly.
903
+ - `#I523535` - Now, stock event renders properly.
904
+
905
+ ## 23.2.6 (2023-11-28)
906
+
907
+ ### Chart
908
+
909
+ #### Bug Fixes
910
+
911
+ - `#I520071` - Now, `cluster` selection is working properly in the scatter series.
912
+ - `#I522808` - Fixed console error that was thrown when using the name property in the axis for a polar chart.
913
+ - `#I523059` - Now, the period selector's selected index is highlighted properly whenever we resize the screen.
914
+
915
+ ## 23.2.5 (2023-11-23)
916
+
917
+ ### AccumulationChart
918
+
919
+ #### Bug Fixes
920
+
921
+ - `#I519546` - Now, the pie chart data label renders properly when the data point is zero.
922
+
923
+ ### Chart
924
+
925
+ #### Bug Fixes
926
+
927
+ - `#I520467` - The combination of multiple types of trendlines is now rendering properly.
928
+ - `#I519877` - Now, `StackingGroup` is working properly along with `columnWidthInPixel`.
929
+ - `#I519877` - Now, `ColumnSpacing` is working properly along with `columnWidthInPixel`.
930
+
931
+ ## 23.2.4 (2023-11-20)
932
+
933
+ ### Chart
934
+
935
+ #### Bug Fixes
936
+
937
+ - `#I504772` - It is now possible to cancel zooming using the scrollbar through the 'scrollChanged' event.
938
+
939
+ #### Features
940
+
941
+ - `#I494809` - Now steps can be applied to the line from the center, as well as from the left and right of the points.
942
+ - `#I505867` - Enhanced the rendering of scatter series with a large number of data points.
943
+
944
+ ## 23.1.44 (2023-11-07)
945
+
946
+ ### Chart
947
+
948
+ #### Bug Fixes
949
+
950
+ - `#I495717` - Now the pdf-export module is not included by default.
951
+
952
+ ## 23.1.43 (2023-10-31)
953
+
954
+ ### Chart
955
+
956
+ #### Bug Fixes
957
+
958
+ - `#F184961` - The enable RTL property is now working correctly in polar chart.
959
+ - `#I512713` - Now the chart series type can be updated using react hooks.
960
+
961
+ ## 23.1.42 (2023-10-24)
962
+
963
+ ### Chart
964
+
965
+ #### Bug Fixes
966
+
967
+ - `#I510832` - Multiple trendlines for line type series are now functioning correctly.
968
+ - `#I511821` - Now the data label is rendering properly in canvas mode.
969
+
970
+ ### StockChart
971
+
972
+ #### Bug Fixes
973
+
974
+ - `#I510304` - Now, the data was updated properly in the stock chart when trying to update it using useEffect.
975
+
976
+ ## 23.1.41 (2023-10-17)
977
+
978
+ ### RangeNavigator
979
+
980
+ #### Bug Fixes
981
+
982
+ - `#I502356` - Fixed the console error that throws when we resize the range navigator.
983
+
984
+ ## 23.1.40 (2023-10-10)
985
+
986
+ ### Chart
987
+
988
+ #### Bug Fixes
989
+
990
+ - `#I499384` - Now the chart series is getting focused properly after legend click.
991
+
992
+ ## 23.1.39 (2023-10-04)
993
+
994
+ ### Chart
995
+
996
+ #### Bug Fixes
997
+
998
+ - `#I498233` - Now the `binInterval` is properly updating on dynamic change.
999
+ - `#I504772` - Now, limit the zooming level in the chart through the onZooming event.
1000
+ - `#I501725` - Subtitle is now rendering properly based on the chart width.
1001
+
1002
+ ### AccumulationChart
1003
+
1004
+ #### Bug Fixes
1005
+
1006
+ - `#I503999` - Now, the legend in the shape of a `Cross` renders properly.
1007
+
1008
+ ## 23.1.38 (2023-09-26)
1009
+
1010
+ ### Chart
1011
+
1012
+ #### Bug Fixes
1013
+
1014
+ - `#I498152` - Fixed the issue of pane collapse when zooming in the chart.
1015
+ - `#I498070` - Now, the tooltip is displaying properly for all series when the shared tooltip is enabled.
1016
+ - `#I478252` - Updated legend aria-label based on the visibility of the series.
1017
+ - `#I499382` - Changed the color of the tab bar line based on the theme.
1018
+ - `#I499384` - Chart points are now focusing properly when navigating using arrow keys.
1019
+ - `#I498673` - Now the primary axes are displaying properly when rendering series using secondary axes.
1020
+ - `#I500178` - Fixed a issue where a console error was being thrown when trying to zoom in the Pareto chart during selection.
1021
+ - `#I482650` - Fixed issue where the height of the chart would increase when the axis was hidden.
1022
+
1023
+ ### AccumulationChart
1024
+
1025
+ #### Bug Fixes
1026
+
1027
+ - `#F184357` - Funnel chart is now rendering properly when all the data points value is zero.
1028
+ - `#I498982` - Data labels are now displaying properly after legend click.
1029
+
1030
+ ## 23.1.36 (2023-09-15)
1031
+
1032
+ ### Chart
1033
+
1034
+ #### Features
1035
+
1036
+ - `#I462095` - Provided support for using column or bar charts to display data in the form of cylindrical-shaped items.
1037
+ - `#I395116` - Provided support for synchronizing tooltips, zooming and panning, cross-hairs, highlights, and selection features across numerous charts.
1038
+ - `#I420935` - Provided support for exporting chart data to Excel in a table format.
1039
+ - `#I489636` - It is now possible to add a background and border to the chart title and subtitle.
1040
+ - `#F182191` - Provided support to hide the nearest data in tooltip when having multiple axis.
1041
+ - `#I294830` - Enhanced PDF export feature facilitates exporting charts from the web page onto multiple pages within a PDF document.
1042
+
1043
+ ### StockChart
1044
+
1045
+ #### Features
1046
+
1047
+ - `#I253147` - Provided support for exporting chart data to Excel in a table format.
1048
+ - New axis type `DateTimeCategory` is now available to show only business days.
1049
+
1050
+ ## 22.2.12 (2023-09-05)
1051
+
1052
+ ### Chart
1053
+
1054
+ #### Bug Fixes
1055
+
1056
+ - `#F184251` - Fixed an issue in axis label position when label position set to inside for bar series.
1057
+
1058
+ ## 22.2.11 (2023-08-29)
1059
+
1060
+ ### Accumulation chart
1061
+
1062
+ #### Bug Fixes
1063
+
1064
+ - `#I494139` - The tab index is now properly displayed in the accumulation chart.
1065
+
1066
+ ### Chart
1067
+
1068
+ #### Bug Fixes
1069
+
1070
+ - `#F46287` - Fixed an issue where the tooltip was not rendered when the chart id was a numeric value.
1071
+ - `#I478252` - The legend aria label has been changed based on the legend click.
1072
+ - `#I492750` - Fixed an issue where the zoom factor and zoom position were not applied after scrolling the chart.
1073
+
1074
+ ## 22.2.10 (2023-08-22)
1075
+
1076
+ ### Accumulation chart
1077
+
1078
+ #### Bug Fixes
1079
+
1080
+ - `#I490028` - Fixed an issue where the `centerLabel` text was not being displayed in bold formatting.
1081
+
1082
+ ### Sparkline
1083
+
1084
+ #### Bug Fixes
1085
+
1086
+ - `#F45948` - Fixed issue with sparkline pie not displaying properly when having single point.
1087
+ - `#F45935` - Fixed an issue where the chart gets vanished when data updated after resizing the chart.
1088
+
1089
+ ## 22.2.9 (2023-08-15)
1090
+
1091
+ ### Accumulation chart
1092
+
1093
+ #### Bug Fixes
1094
+
1095
+ - `#I486337` - Fixed an issue where the console error thrown when disabling the animation.
1096
+ - `#I486337` - Now the destroy method is properly working in accumulation chart.
1097
+
1098
+ ### Chart
1099
+
1100
+ #### Bug Fixes
1101
+
1102
+ - `#I487053` - Now, `startFromZero` is functioning correctly in stackingColumn.
1103
+
1104
+ ## 22.2.8 (2023-08-08)
1105
+
1106
+ ### Chart
1107
+
1108
+ #### Bug Fixes
1109
+
1110
+ - `#I483107` - Data editing is now working properly, along with the zoom property.
1111
+ - `#I484578` - The trendline is now rendered for the polynomial type in datetime.
1112
+ - `#I485511` - Fixed an issue where the trackball was not rendered properly in canvas mode.
1113
+
1114
+ ## 22.2.7 (2023-08-02)
1115
+
1116
+ ### Chart
1117
+
1118
+ #### Bug Fixes
1119
+
1120
+ - `#I479445` - Now, the legend opacity is working properly in the chart.
1121
+ - `#F183350` - Fixed an issue where the multicolored area was not working properly in canvas mode.
1122
+ - `#I481085` - The issue where the Legend gets cut off when `enablePages` is set to false has been resolved.
1123
+ - `#I481219` - Now, SelectedDataIndexes are properly updated when it is cleared on button click.
1124
+ - `#I482650` - Now the chart is proper when refreshed after zooming in and out.
1125
+
1126
+ ## 22.2.5 (2023-07-27)
1127
+
1128
+ ### Chart
1129
+
1130
+ #### Bug Fixes
1131
+
1132
+ - `#I477552` - Fixed an issue where the column was overlapping with the axis line.
1133
+ - `#I477506` - Fixed an issue where the trendline was not changing when updating its properties.
1134
+ - `#I475454` - Now UseGroupingSeparator is working in accumulation tooltip.
1135
+ - `#F183277` - Fixed an issue where range color mapping was not working when using two series.
1136
+ - `#I479131` - Fixed the issue of data label cropping when setting the value as the minimum.
1137
+ - `#I479171` - Fixed an issue where the range values of the scroll bar were not proper.
1138
+ - `#I471081` - Now, stripline is proper when the width is changed.
1139
+
1140
+ ## 22.1.39 (2023-07-18)
1141
+
1142
+ ### Chart
1143
+
1144
+ #### Bug Fixes
1145
+
1146
+ - `#I474743` - Fixed issue where chart type did not change when updated using the "type" attribute.
1147
+ - `#I473789` - Fixed an issue where the chart was not getting rendered in PhantomJS.
1148
+ - `#I473845` - Resolved an issue where axis labels were not rendering correctly during export and initial render.
1149
+ - `#I478252` - Improved the accessibility of the legend.
1150
+ - `#I478253` - Updated the accessibility text in the chart container.
1151
+ - `#I481747` - Now, the double axis labels are correct when the culture is set to 'it'.
1152
+
1153
+ ## 22.1.38 (2023-07-11)
1154
+
1155
+ ### Chart
1156
+
1157
+ #### Bug Fixes
1158
+
1159
+ - `#I475437` - Resolved issue where crosshair intersection point was not properly displayed.
1160
+ - `#I463171` - Resolved issue where column width was not properly displayed.
1161
+
1162
+ ## 22.1.37 (2023-07-04)
1163
+
1164
+ ### Chart
1165
+
1166
+ #### Bug Fixes
1167
+
1168
+ - `#I464403` - Fixed an issue where the dash array in segmented stripline was not working properly.
1169
+ - `#I473748` - Fixed issue where the chart was not being rendered when a null value was given as the series name.
1170
+ - `#I474198` - Fixed an issue where the x axis label was not displayed correctly.
1171
+ - `#I474198` - Fixed an issue where the first label was getting cut off when the edgeLabelPlacement was set to 'shift'.
1172
+
1173
+ ## 22.1.36 (2023-06-28)
1174
+
1175
+ ### Chart
1176
+
1177
+ #### Bug Fixes
1178
+
1179
+ - `#F182477` - Resolved the issue where the X axis displayed all values even when an interval of 1 and only one data point was provided.
1180
+ - `#I471069` - Fixed an issue where multiple axes were not displaying properly when using large records of data.
1181
+ - `#I461357` - Fixed issue with selection not working when using zoom settings.
1182
+
1183
+ ## 22.1.34 (2023-06-21)
1184
+
1185
+ ### Chart
1186
+
1187
+ #### New Features
1188
+
1189
+ - `#I461049` - Provided support to display a zoom toolbar for the chart on initial load, which allows user to zoom in on the chart.
1190
+ - `#I439527` - Provided support for a cross-shaped marker to the data points in the chart.
1191
+ - `#I283789` - Provided support to position the chart title to the left, right, or bottom of the chart.
1192
+ - `#I286744` - It is now possible to customize the axis scroll bar by changing its color and height, and disable zooming in the scrollbar.
1193
+ - `#I386094` - Improved the axis label placement after line break.
1194
+ - `#I428708` - Provided distinct markers shape for each series in the chart.
1195
+ - `#I404448` - It is now possible to customize the Pareto axis and line in terms of marker, width, dash array, and color.
1196
+
1197
+ #### Breaking Changes
1198
+
1199
+ - To differentiate between marker shapes in the `ChartShape` enumeration, the existing Cross shape has been replaced with Plus, while a new enumeration, Cross, has been added for the cross shape.
1200
+ - The font family for chart elements such as the title, axis labels, data labels, legend, tooltip, etc., has been changed based on the theme in the 2023 Volume 2 release.
1201
+
1202
+ | Theme | Previous Font Family| New Font Family |
1203
+ | -------- | -------- | -------- |
1204
+ | Material | Segoe UI | Roboto |
1205
+ | Bootstrap 5 | Segoe UI | Helvetica |
1206
+ | Bootstrap 4 | Segoe UI | Helvetica |
1207
+ | Bootstrap | Segoe UI | Helvetica |
1208
+ | TailWind | Segoe UI | Inter|
1209
+
1210
+ #### Bug Fixes
1211
+
1212
+ - `#I467459` - The legend is now rendering properly when resizing the chart.
1213
+ - `#F182605` - The multicolored line series chart is now rendering properly while using `isInversed` in the primary Y-axis.
1214
+ - `#I467459` - Now, the axis labels are rotating properly in the canvas mode.
1215
+
1216
+ ### Stock Chart
1217
+
1218
+ #### Breaking Changes
1219
+
1220
+ - By default, the series type and trendline dropdowns have been removed from the stock chart period selector. However, you can still add them to the list upon request or as needed. This modification provides a cleaner interface and reduces clutter in the stock chart period selector.
1221
+ - By default, the tooltip for the range selector in the stock chart has been removed. Instead, the tooltip will now appear only when you move the slider.
1222
+ - The print option has been removed from the period selector because it is already available in the export dropdown. This modification provides a cleaner interface and reduces clutter in the stock chart's period selector.
1223
+ - The font family for stock chart elements such as the title, axis labels, data labels, legend, tooltip, etc., has been changed based on the theme in the 2023 Volume 2 release.
1224
+
1225
+ | Theme | Previous Font Family| New Font Family |
1226
+ | -------- | -------- | -------- |
1227
+ | Material | Segoe UI | Roboto |
1228
+ | Bootstrap 5 | Segoe UI | Helvetica |
1229
+ | Bootstrap 4 | Segoe UI | Helvetica |
1230
+ | Bootstrap | Segoe UI | Helvetica |
1231
+ | TailWind | Segoe UI | Inter|
1232
+
1233
+ ### Accumulation chart
1234
+
1235
+ #### Breaking Changes
1236
+
1237
+ - The font family for accumulation chart elements such as the title, data labels, legend, tooltip, etc., has been changed based on the theme in the 2023 Volume 2 release.
1238
+
1239
+ | Theme | Previous Font Family| New Font Family |
1240
+ | -------- | -------- | -------- |
1241
+ | Material | Segoe UI | Roboto |
1242
+ | Bootstrap 5 | Segoe UI | Helvetica |
1243
+ | Bootstrap 4 | Segoe UI | Helvetica |
1244
+ | Bootstrap | Segoe UI | Helvetica |
1245
+ | TailWind | Segoe UI | Inter|
1246
+
1247
+ ### Bullet Chart
1248
+
1249
+ #### Breaking Changes
1250
+
1251
+ - The font family for bullet chart elements such as the title, labels, legend, tooltip, etc., has been changed based on the theme in the 2023 Volume 2 release.
1252
+
1253
+ | Theme | Previous Font Family| New Font Family |
1254
+ | -------- | -------- | -------- |
1255
+ | Material | Segoe UI | Roboto |
1256
+ | Bootstrap 5 | Segoe UI | Helvetica |
1257
+ | Bootstrap 4 | Segoe UI | Helvetica |
1258
+ | Bootstrap | Segoe UI | Helvetica |
1259
+ | TailWind | Segoe UI | Inter|
1260
+
1261
+ ### RangeNavigator
1262
+
1263
+ #### Breaking Changes
1264
+
1265
+ - The font family for range navigator elements such as the axis labels, tooltip, etc., has been changed based on the theme in the 2023 Volume 2 release.
1266
+
1267
+ | Theme | Previous Font Family| New Font Family |
1268
+ | -------- | -------- | -------- |
1269
+ | Material | Segoe UI | Roboto |
1270
+ | Bootstrap 5 | Segoe UI | Helvetica |
1271
+ | Bootstrap 4 | Segoe UI | Helvetica |
1272
+ | Bootstrap | Segoe UI | Helvetica |
1273
+ | TailWind | Segoe UI | Inter|
1274
+
1275
+ ### Sparkline
1276
+
1277
+ #### Breaking Changes
1278
+
1279
+ - The font family for sparkline elements such as the data labels, tooltip, etc., has been changed based on the theme in the 2023 Volume 2 release.
1280
+
1281
+ | Theme | Previous Font Family| New Font Family |
1282
+ | -------- | -------- | -------- |
1283
+ | Material | Segoe UI | Roboto |
1284
+ | Bootstrap 5 | Segoe UI | Helvetica |
1285
+ | Bootstrap 4 | Segoe UI | Helvetica |
1286
+ | Bootstrap | Segoe UI | Helvetica |
1287
+ | TailWind | Segoe UI | Inter|
1288
+
1289
+ ### Smith Chart
1290
+
1291
+ #### Breaking Changes
1292
+
1293
+ - The font family for smith chart elements such as the title, data labels, legend, tooltip, etc., has been changed based on the theme in the 2023 Volume 2 release.
1294
+
1295
+ | Theme | Previous Font Family| New Font Family |
1296
+ | -------- | -------- | -------- |
1297
+ | Material | Segoe UI | Roboto |
1298
+ | Bootstrap 5 | Segoe UI | Helvetica |
1299
+ | Bootstrap 4 | Segoe UI | Helvetica |
1300
+ | Bootstrap | Segoe UI | Helvetica |
1301
+ | TailWind | Segoe UI | Inter|
1302
+
1303
+ ## 21.2.10 (2023-06-13)
1304
+
1305
+ ### Chart
1306
+
1307
+ #### Bug Fixes
1308
+
1309
+ `#I451537` - Spline is now proper for negative points without specify the range.
1310
+
1311
+ ## 21.2.9 (2023-06-06)
1312
+
1313
+ ### Chart
1314
+
1315
+ #### Bug Fixes
1316
+
1317
+ - `#F182216` - Fixed the issue where the data label was hidden.
1318
+ - `#I464403` - Fixed an issue where strip line text was getting cut off when it was too long.
1319
+
1320
+ ## 21.2.8 (2023-05-30)
1321
+
1322
+ ### Chart
1323
+
1324
+ #### Bug Fixes
1325
+
1326
+ - `#F181551` - The tooltip now displays the percentage of each stacking group.
1327
+ - `#F182191` - Now, tooltip values are displayed correctly when no data is given for the data point in a series.
1328
+ - `#I461357` - Now, zooming and selection are working properly when using both at the same time.
1329
+ - `#I452148` - The issue of the y-axis label overlap has been fixed.
1330
+ - `#I464813` - Fixed MinorGridLine to be visible even when the width is not set for MajorTickLine.
1331
+ - `#I463171` - Fixed issue where column width was not being set properly.
1332
+ - `#I462090` - Fixed an issue where startFromAxis was not working correctly for stripLine.
1333
+
1334
+ ## 21.2.6 (2023-05-23)
1335
+
1336
+ ### Chart
1337
+
1338
+ #### Bug Fixes
1339
+
1340
+ - `#F182033` - The marker is now proper while zooming the chart.
1341
+
1342
+ ## 21.2.5 (2023-05-16)
1343
+
1344
+ ### Chart
1345
+
1346
+ #### Bug Fixes
1347
+
1348
+ - `#F181976` - Now the tooltip is proper when using two axes in a chart.
1349
+ - `#I451537` - Now, the axis label value is correct when an interval is not given.
1350
+ - `#I451537` - Fixed an issue where the axis label was not displaying correctly.
1351
+ - `#I451537` - Now, the secondary axis label will be correctly displayed without an interval.
1352
+ - `#I452395` - Fixed an issue where the y-axis axis label was displaying double values.
1353
+ - `#I452390` - Fixed the issue where the axis label was being trimmed despite the shift given to the edgeLabelPlacement.
1354
+
1355
+ ## 21.2.4 (2023-05-09)
1356
+
1357
+ ### Chart
1358
+
1359
+ #### Bug Fixes
1360
+
1361
+ - `#I457088` - Fixed the console error thrown on clicking on the legend.
1362
+ - `#I459170` - Now the accumulation data label is visible when using a template.
1363
+
1364
+ ## 21.2.3 (2023-05-03)
1365
+
1366
+ ### Chart
1367
+
1368
+ #### Bug Fixes
1369
+
1370
+ - `#I452421` - Fixed an issue where a dotted line was showing up for line charts while exporting through PhantomJS.
1371
+ - `#I451960` - Resolved an issue where the datalabel border was getting added while exporting using PhantomJS.
1372
+ - `#I452091` - Resolved an issue where line charts were not being rendered while exporting using PhantomJS.
1373
+ - `#I455206` - Fixed an issue where the DataLabel was not visible despite there being enough space to display it.
1374
+ - `#I452148` - `MultipleRows` in labelIntersectAction property is now working properly.
1375
+ - `#I456533` - Fixed an issue where the tick line was visible even if there was no axis label for it.
1376
+ - `#F181431` - Fixed the issue where chart width was not changing on print.
1377
+
1378
+ #### New Features
1379
+
1380
+ - `#I451521` - Provided support for dashArray in series border for Pie chart.
1381
+ - `#I360879` - Provided support to disable marker explode in shared tooltip.
1382
+
1383
+ ## 21.1.41 (2023-04-18)
1384
+
1385
+ ### Chart
1386
+
1387
+ #### Bug Fixes
1388
+
1389
+ - `#I451521` - Now, the border is proper in the funnel and pyramid series.
1390
+ - `#I453698` - Cross shape marker now displays correctly in Scatter Series.
1391
+ - `#I439673` - The `enableTextWrap` property of the tooltip is now working properly in the pie chart.
1392
+ - `#I452390` - Fixed the issue where the axis label was not properly visible.
1393
+ - `#I447639` - Tooltip format now displays properly when using the axis label format.
1394
+ - `#I453698` - The legend shape now reflects the marker shape in scatter series.
1395
+
1396
+ ## 21.1.39 (2023-04-11)
1397
+
1398
+ ### Chart
1399
+
1400
+ #### Bug Fixes
1401
+
1402
+ - `#I451537` - Now, the column chart rectangle is properly rendering for OnTicks.
1403
+ - `#I452148` - The chart now renders correctly even when the x value is set to an empty string in the data source.
1404
+
1405
+ ## 21.1.38 (2023-04-04)
1406
+
1407
+ ### Chart
1408
+
1409
+ #### Bug Fixes
1410
+
1411
+ - `#I449076` - Data labels are now displayed properly in the HiloOpenClose chart.
1412
+ - `#I444669` - Line width of the series is now updating properly while using useState method.
1413
+ - `#I444557` - Legend is now rendering properly on the top position without overlapping with axis label.
1414
+
1415
+ ## 21.1.35 (2023-03-23)
1416
+
1417
+ ### Chart
1418
+
1419
+ #### New Features
1420
+
1421
+ - `#I320485` - Provided support to place a label at the center of the pie and donut charts.
1422
+ - `#I416444` - Provided support for a new chart type called range step area which is used to display the difference between minimum and maximum values over a certain time period.
1423
+ - `#I396453`, `#I314160` - Provided support to customize the height and color of the error bar of each data point.
1424
+
1425
+ #### Bug Fixes
1426
+
1427
+ - `#I444557` - Resolved the issue where the legend and the chart were overlapping.
1428
+ - `#I431278` - Resolved issue with overlapping chart and data label when rotation is enabled.
1429
+
1430
+ ## 20.4.54 (2023-03-14)
1431
+
1432
+ ### Chart
1433
+
1434
+ #### Bug Fixes
1435
+
1436
+ - `#F180863` - Resolved the issue where the page was reloading automatically.
1437
+
1438
+ ## 20.4.53 (2023-03-07)
1439
+
1440
+ ### Chart
1441
+
1442
+ #### Bug Fixes
1443
+
1444
+ - `#I441035` - Fixed issue with page becoming unresponsive when zooming chart too quickly.
1445
+
1446
+ ## 20.4.52 (2023-02-28)
1447
+
1448
+ ### Chart
1449
+
1450
+ #### Bug Fixes
1451
+
1452
+ - `#F180554` - Fixed console error thrown when using the destroy method.
1453
+ - `#I437308` - Resolved accessibility issues in chart.
1454
+ - `#I436273` - Fixed issue with chart going out when zooming without clip rect in path.
1455
+
1456
+ ## 20.4.51 (2023-02-21)
1457
+
1458
+ ### Chart
1459
+
1460
+ #### Bug Fixes
1461
+
1462
+ - `#F180050` - Tooltip text and markers are now properly aligned when text is removed from the tooltip.
1463
+ - `#I401851` - The issue of axis title and axis label overlap has been fixed.
1464
+ - `#I436272` - Disabled the marker explode for marker image.
1465
+ - `#I429808` - The axis labels getting cut off when rotating the labels has been fixed.
1466
+ - `#I437507` - `PointDoubleClick` event is not triggered in chart issue has been fixed.
1467
+
1468
+ ## 20.4.49 (2023-02-07)
1469
+
1470
+ ### Chart
1471
+
1472
+ #### Bug Fixes
1473
+
1474
+ - `#I430549` - The axis labels getting cut off when rotating the labels has been fixed.
1475
+ - `#F180163` - Removed the chart focus element when changing to the next page.
1476
+ - `#I432239` - Now, the chartDoubleClick event is triggered when used in conjunction with the chartMouseClick event.
1477
+
1478
+ ## 20.4.48 (2023-02-01)
1479
+
1480
+ ### Chart
1481
+
1482
+ #### New Features
1483
+
1484
+ - `#I423603` - Provided support to remove points with no data from shared tooltip.
1485
+
1486
+ #### Bug Fixes
1487
+
1488
+ - `#I428396` - Now, when using the overflow property, multilevel labels are wrapped based on the maximumTextWidth.
1489
+ - `#I430286` - Now the period selectors are updating properly with respect to the range selector.
1490
+ - `#I426849` - Resolved the console error in the tooltip when the data for the series is empty.
1491
+
1492
+ ## 20.4.44 (2023-01-18)
1493
+
1494
+ ### Chart
1495
+
1496
+ #### Bug Fixes
1497
+
1498
+ - `#I426511` - Chart cut off when the parent container width is less than the chart width has been fixed.
1499
+ - `#I427185` - The DateTimeCategory axis now correctly sorts data.
1500
+
1501
+ ## 20.4.43 (2023-01-10)
1502
+
1503
+ ### Chart
1504
+
1505
+ #### Bug Fixes
1506
+
1507
+ - `#I426642` - Now accumulation chart keyboard focus element is removed from DOM properly after destroying the component.
1508
+ - `#I426112` - Now UseGroupingSeparator is working in data label.
1509
+ - `#I426849` - Tooltip and crosshair are now working properly for the missed data.
1510
+
1511
+ ### RangeNavigator
1512
+
1513
+ #### Bug Fixes
1514
+
1515
+ - `#I426389` - Changed event triggered unnecessarily when clicking daterangepicker issue has been fixed.
1516
+
1517
+ ## 20.4.42 (2023-01-04)
1518
+
1519
+ ### Chart
1520
+
1521
+ #### Bug Fixes
1522
+
1523
+ - `#F179514` - Now the alignment of text is proper in the header of the tooltip and crosshair tooltip text.
1524
+ - `#I401851` - Axis title overlaps with axis labels issue has been fixed.
1525
+
1526
+ ### RangeNavigator
1527
+
1528
+ #### Bug Fixes
1529
+
1530
+ - `#I413509` - Now period selectors are updating properly for the range selector changes.
1531
+
1532
+ ## 20.4.40 (2022-12-28)
1533
+
1534
+ ### Chart
1535
+
1536
+ #### Bug Fixes
1537
+
1538
+ - `#I423644` - Now axis label is aligned properly when minimum value is high.
1539
+ - `#I423606` - Trendline is now proper for zero values,
1540
+ - `#I424547` - Now zooming the multi colored line is working properly.
1541
+
1542
+ ## 20.4.38 (2022-12-21)
1543
+
1544
+ ### Chart
1545
+
1546
+ #### New Features
1547
+
1548
+ - `#I346292`, `#I347892` - Provided support to wrap data labels in the accumulation charts.
1549
+ - `#I401851` - Provided support to rotate the axis title from 0 to 360 degree.
1550
+ - Provided support for dashed legends for dashed line series.
1551
+
1552
+ #### Bug Fixes
1553
+
1554
+ - `#I420456` - Now cancel argument in legend click event working properly.
1555
+ - `#I423376` - Console error thrown when rendering the tooltip in trendlines has been fixed.
1556
+ - `#I422475` - Accumulation chart height is now proper with respect to its parent container.
1557
+
1558
+ ### Bullet Chart
1559
+
1560
+ #### Bug Fixes
1561
+
1562
+ - `#I422321` - Now label alignment property is working properly in bullet chart.
1563
+
1564
+ ## 20.3.60 (2022-12-06)
1565
+
1566
+ ### Chart
1567
+
1568
+ #### Bug Fixes
1569
+
1570
+ - `#I421349` - Now chart axis is removed properly on dynamic update.
1571
+ - `#I421251` - Now Pie chart render When set the width to less than 20% for the parent div.
1572
+ - `#I421251` - Pie chart gets crashed when setting the datalabel issue has been fixed.
1573
+
1574
+ ### RangeNavigator
1575
+
1576
+ #### Bug Fixes
1577
+
1578
+ - `#I413509` - Now period selectors are updating properly for the range selector changes.
1579
+
1580
+ ## 20.3.58 (2022-11-22)
1581
+
1582
+ ### Chart
1583
+
1584
+ #### Bug Fixes
1585
+
1586
+ - `#I412377` - Now axis labels are placed inside the chart properly.
1587
+ - `#I412377` - Margin gets added when adding the axes dynamically issue has been fixed .
1588
+ - `#F178666` - Now the data point aria label is proper.
1589
+
1590
+ ### Stock Chart
1591
+
1592
+ #### Bug Fixes
1593
+
1594
+ - `#I418512` - Console error when specifying `labelRotation` for stockchart issue has been fixed.
1595
+
1596
+ ## 20.3.57 (2022-11-15)
1597
+
1598
+ ### Chart
1599
+
1600
+ #### Bug Fixes
1601
+
1602
+ - `#I415271` - Now technical indicator visible property working properly .
1603
+ - `#I412377` - Space is not removed when removing the axis has been fixed .
1604
+ - `#I415516` - Chart height is not proper issue has been fixed .
1605
+
1606
+ ## 20.3.56 (2022-11-08)
1607
+
1608
+ ### Chart
1609
+
1610
+ #### Bug Fixes
1611
+
1612
+ - `#I388725` - Multilevel label border cut off issue has been fixed.
1613
+
1614
+ ## 20.3.52 (2022-10-26)
1615
+
1616
+ ### Chart
1617
+
1618
+ #### Bug Fixes
1619
+
1620
+ - `#I412377` - Axis labels are now rendering properly inside the chart.
1621
+ - `#F171844` - Console error while using shared tooltip has been fixed.
1622
+
1623
+ ## 20.3.50 (2022-10-18)
1624
+
1625
+ ### Chart
1626
+
1627
+ #### Bug Fixes
1628
+
1629
+ - `#F178096` - Chart axis range is now calculated properly after zooming the chart.
1630
+
1631
+ ### Bullet Chart
1632
+
1633
+ #### Bug Fixes
1634
+
1635
+ - `#F177357` - Data label gets cropped in Bullet Chart has been fixed.
1636
+
1637
+ ## 20.3.49 (2022-10-11)
1638
+
1639
+ ### Chart
1640
+
1641
+ #### Bug Fixes
1642
+
1643
+ - `#I383934` - Now shared tooltip is rendering properly for all points.
1644
+
1645
+ ### Sparkline
1646
+
1647
+ #### Bug Fixes
1648
+
1649
+ - `#F177692` - Sparkline component is not rendered in React Next app issue has been fixed.
1650
+
1651
+ ## 20.3.48 (2022-10-05)
1652
+
1653
+ ### Chart
1654
+
1655
+ #### Bug Fixes
1656
+
1657
+ - `#I409365` - Now canvas chart is working proper on legend click.
1658
+
1659
+ ### Bullet Chart
1660
+
1661
+ #### Bug Fixes
1662
+
1663
+ - `#I400763` - Now Bulletchart axis labels are aligned properly for all fontsize.
1664
+
1665
+ ## 20.3.47 (2022-09-29)
1666
+
1667
+ ### Chart
1668
+
1669
+ #### New Features
1670
+
1671
+ - Provided border support for area chart types like Area, Step Area, Spline Area, Stacked Area and 100% Stacked Area.
1672
+ - `#I298760` - It is now possible to format data labels in the chart, and it supports all global formats.
1673
+ - `#I379807` - A toolbar for zooming and panning has been added to the chart on load.
1674
+ - `#I386960` - Provided support to customize the space between legend items in the chart.
1675
+ - `#I387973` - Provided legend click event for the accumulation chart.
1676
+
1677
+ ## 20.2.50 (2022-09-20)
1678
+
1679
+ ### Chart
1680
+
1681
+ #### Bug Fixes
1682
+
1683
+ - `#I404375` - Now alignment of the data label is working properly.
1684
+ - `#F177357` - Now interval for axis is calculating properly for zoomed data.
1685
+
1686
+ ## 20.2.49 (2022-09-13)
1687
+
1688
+ ### Chart
1689
+
1690
+ #### Bug Fixes
1691
+
1692
+ - `#I398960` - Now chart axis scrollbar is working properly.
1693
+ - `#I399859` - Pie chart subtitle is overlapped with datalabel issue has been fixed.
1694
+
1695
+ ### Stock Chart
1696
+
1697
+ #### Bug Fixes
1698
+
1699
+ - `#I401042` - Now label stlye is applying properly for stock chart axis labels.
1700
+
1701
+ ## 20.2.48 (2022-09-06)
1702
+
1703
+ ### Chart
1704
+
1705
+ #### Bug Fixes
1706
+
1707
+ - `#I400391` - X axis start label is now shifted when y axis is in opposed position.
1708
+ - `#I400062` - Now the axis lines are displayed properly after the scrollbar.
1709
+
1710
+ ### Bullet Chart
1711
+
1712
+ #### Bug Fixes
1713
+
1714
+ - `#I400762` - Bullet Chart target height is now render properly.
1715
+ - `#I400763` - Bullet chart axis labels are now center aligned, when changing value height.
1716
+
1717
+ ## 20.2.46 (2022-08-30)
1718
+
1719
+ ### Chart
1720
+
1721
+ #### Bug Fixes
1722
+
1723
+ - `#I399799` - Console error thrown in stock chart issue has been fixed.
1724
+ - `#I390359` - Now chart is rendered properly in all pixel resolution.
1725
+
1726
+ ## 20.2.45 (2022-08-23)
1727
+
1728
+ ### Chart
1729
+
1730
+ #### Bug Fixes
1731
+
1732
+ - `#I397378` - Legend toggle visibility displays diagonal line in chart issue has been fixed.
1733
+ - `#I396922` - Axis ranges are now refreshing properly after data point dragging.
1734
+ - `#I397935` - Axis are now rendering properly after legend toggle.
1735
+
1736
+ ## 20.2.44 (2022-08-16)
1737
+
1738
+ ### Chart
1739
+
1740
+ #### Bug Fixes
1741
+
1742
+ - `#I395538` - Shared tooltip template is not shown for two series has been fixed.
1743
+
1744
+ ## 20.2.43 (2022-08-08)
1745
+
1746
+ ### Chart
1747
+
1748
+ #### Bug Fixes
1749
+
1750
+ - `#I393292` - Accumulation chart tooltip marker issue has been fixed.
1751
+
1752
+ ## 20.2.40 (2022-07-26)
1753
+
1754
+ ### Chart
1755
+
1756
+ #### Bug Fixes
1757
+
1758
+ - `#I391172` - Browser clashes while performing pinch zooming has been fixed.
1759
+ - `#I383951` - Chart zooming is not working after zoom reset in mobile mode has been fixed.
1760
+ - `#I392310` - Console error When performing range selection in hidden series has been fixed.
1761
+
1762
+ ## 20.2.38 (2022-07-12)
1763
+
1764
+ ### Chart
1765
+
1766
+ #### Bug Fixes
1767
+
1768
+ - `#I381436` - Data label is hidden in stacked bar series has been fixed.
1769
+ - `#F175532` - Waterfall sum indexes are now rendering properly.
1770
+ - `#I387394` - Marker position changes while displaying tooltip for rangearea issue has been fixed.
1771
+ - `#I387391` - Horizontal and vertical line marker shapes are now rendering properly.
1772
+
1773
+ ## 20.2.36 (2022-06-30)
1774
+
1775
+ ### Chart
1776
+
1777
+ #### New Features
1778
+
1779
+ - `#I362746` - Provided keyboard navigation support for interactive elements on the chart.
1780
+ - `#I353728` - Provided highlight and select support for the range and point color mapping.
1781
+
1782
+ - `#I362746` - Provided keyboard navigation support for interactive elements on the chart.
1783
+ - `#I353728` - Provided highlight and selection support for the range and point color mapping.
1784
+
1785
+ ## 20.1.59 (2022-06-07)
1786
+
1787
+ ### Chart
1788
+
1789
+ #### Bug Fixes
1790
+
1791
+ - `#I379535` - Background issue in PDF export has been fixed.
1792
+ - `#I379093` - Draggable arrow for stacked series is removed.
1793
+ - `#I381436` - Data label is hidden in stacked bar series has been fixed.
1794
+ - `#I379549` - Add series using DataManager makes a request to the server for multiple times issue is fixed.
1795
+
1796
+ ## 20.1.57 (2022-05-24)
1797
+
1798
+ ### Chart
1799
+
1800
+ #### Bug Fixes
1801
+
1802
+ - `#I378097` - `zooomComplete` event is now properly triggered for device.
1803
+
1804
+ ## 20.1.56 (2022-05-17)
1805
+
1806
+ ### Chart
1807
+
1808
+ #### Bug Fixes
1809
+
1810
+ - `#I378119` - PlotOffsetBottom not working fine issue has been fixed.
1811
+
1812
+ ## 20.1.55 (2022-05-12)
1813
+
1814
+ ### Chart
1815
+
1816
+ #### New Features
1817
+
1818
+ - `#I360879` - Provided support to disable the marker explode without tooltip and highlight mode.
1819
+
1820
+ ## 20.1.52 (2022-05-04)
1821
+
1822
+ ### Chart
1823
+
1824
+ #### Bug Fixes
1825
+
1826
+ - `#I375071` - Now axis labels is rendering properly with label rotation.
1827
+
1828
+ ## 20.1.51 (2022-04-26)
1829
+
1830
+ ### Chart
1831
+
1832
+ #### Bug Fixes
1833
+
1834
+ - `#I375071` - Now axis labels is rendering properly with label rotation.
1835
+
1836
+ ## 20.1.50 (2022-04-19)
1837
+
1838
+ ### Chart
1839
+
1840
+ #### Bug Fixes
1841
+
1842
+ - `#I372766` - Now axis labels rendered properly when resizing.
1843
+ - Now tooltip is rendered properly when RTL is enabled.
1844
+
1845
+ ## 20.1.48 (2022-04-12)
1846
+
1847
+ ### Chart
1848
+
1849
+ #### Bug Fixes
1850
+
1851
+ - `#I369936` - Console error when setting the legend mode as `Point` has been resolved.
1852
+ - `#I371101` - Now data labels will be rendered without overlapping.
1853
+ - `#I366649` - Polar Radar not rendered in canvas mode issue has been fixed.
1854
+ - `#I369616` - Spline curve break when zoom in issue has been fixed.
1855
+
1856
+ ## 20.1.47 (2022-04-04)
1857
+
1858
+ ### Chart
1859
+
1860
+ #### New Features
1861
+
1862
+ - `#I320275` - Wrap support provided for the legend text that overflows the container.
1863
+
1864
+ #### Bug Fixes
1865
+
1866
+ - `#I365536` - Crosshair tooltip is now proper when transform is applied.
1867
+
1868
+ ## 19.4.54 (2022-03-01)
1869
+
1870
+ ### Chart
1871
+
1872
+ #### Bug Fixes
1873
+
1874
+ - `#I362757` - Histogram points position is not equivalent to axis range issue has been resolved.
1875
+
1876
+ ## 19.4.53 (2022-02-22)
1877
+
1878
+ ### Chart
1879
+
1880
+ #### Bug Fixes
1881
+
1882
+ - `I365536` - Crosshair is now proper when scaling is applied.
1883
+
1884
+ ### RangeNavigator
1885
+
1886
+ #### Bug Fixes
1887
+
1888
+ - `#I365442` - Issue in Changed event has been fixed.
1889
+
1890
+ ## 19.4.50 (2022-02-08)
1891
+
1892
+ ### Chart
1893
+
1894
+ #### Bug Fixes
1895
+
1896
+ - `#F171373` - Sum indexes is now working for the Waterfall chart.
1897
+ - `#I363094` - Labelformat is now applied properly for the datalabel.
1898
+ - `#I362757` - Histogram points position is not equivalent to axis range issue has been resolved.
1899
+
1900
+ ## 19.4.47 (2022-01-25)
1901
+
1902
+ ### Chart
1903
+
1904
+ #### Bug Fixes
1905
+
1906
+ - `#I362517` - Secondary axis is now rendering properly based on series visibility.
1907
+ - `#I171844` - Console error issue fixed while using sharedTooltipRender event.
1908
+ - `#I362117` - Hours format in range navigator is changed to 24 hours.
1909
+
1910
+ ## 19.4.43 (2022-01-18)
1911
+
1912
+ ### Chart
1913
+
1914
+ #### Bug Fixes
1915
+
1916
+ - `#I361065` - Rotated y axis labels are positioned properly now.
1917
+ - `#I361317` - Shared tooltip template far away from cursor has fixed.
1918
+
1919
+ ## 19.4.42 (2022-01-11)
1920
+
1921
+ ### Chart
1922
+
1923
+ #### Bug Fixes
1924
+
1925
+ - `#I360775` - In the chart PDF export, a console error was fixed.
1926
+
1927
+ ## 19.4.41 (2022-01-04)
1928
+
1929
+ ### Chart
1930
+
1931
+ #### Bug Fixes
1932
+
1933
+ - `#I359390` - Axis label color is properly applied through `axisLabelRender` event.
1934
+ - `#F165023` - Highlight is working fine in IE browser.
1935
+
1936
+ ## 19.4.40 (2021-12-28)
1937
+
1938
+ ### Chart
1939
+
1940
+ #### Bug Fixes
1941
+
1942
+ - `#I357152` - Legend highlight and selection is now working properly.
1943
+
1944
+ ## 19.4.38 (2021-12-17)
1945
+
1946
+ ### Chart
1947
+
1948
+ #### New Features
1949
+
1950
+ - `#I271263`,`#I344376` - Provided grouping support for the column and bar chart based on categories.
1951
+ - `#F163374` - Provided color support to the highlighted point.
1952
+ - `#I342748` - Fixed width support have been provided for chart area.
1953
+ - `#I280225`, `#I340912` - Provided support to rotate y-axis labels to a given angle.
1954
+ - `#I345716` - Provided support to reverse the rendering order of the legend items in a chart.
1955
+ - Right to Left(RTL) feature added for all chart elements like legend, tooltip, data label, title, etc.
1956
+
1957
+ #### Bug Fixes
1958
+
1959
+ - `#I346999` - Data labels are now working properly while legend click.
1960
+ - `#I349146` - Range area and scatter series working fine on canvas mode.
1961
+
1962
+ ## 19.3.55 (2021-11-23)
1963
+
1964
+ ### Chart
1965
+
1966
+ #### Bug Fixes
1967
+
1968
+ - Tooltip is now working fine in react library for mobile device.
1969
+ - `#I347059` - Data label is now rendering properly for stacking column.
1970
+ - `#F170296` - Datalabels are now removed for empty datasource on dynamic update.
1971
+
1972
+ ## 19.3.54 (2021-11-17)
1973
+
1974
+ ### Chart
1975
+
1976
+ #### Bug Fixes
1977
+
1978
+ - `#I346999` - Data label connector line is now working properly for value zero.
1979
+ - `#I347279` - Marker color is now working properly for `MulticoloredLine` series type.
1980
+
1981
+ ## 19.3.53 (2021-11-12)
1982
+
1983
+ ### Chart
1984
+
1985
+ #### Bug Fixes
1986
+
1987
+ - `#I346472`- Selection and highlight color is not proper when using pointColorMapping is fixed.
1988
+ - `#I346183` - StackingArea not rendering properly in huge data has been fixed.
1989
+
1990
+ ## 19.3.48 (2021-11-02)
1991
+
1992
+ ### Chart
1993
+
1994
+ #### Bug Fixes
1995
+
1996
+ - `#I346066` - Pie chart datalabels are now rendering properly while disabling the legend dynamically.
1997
+
1998
+ ## 19.3.46 (2021-10-19)
1999
+
2000
+ ### Chart
2001
+
2002
+ #### Bug Fixes
2003
+
2004
+ - `#I345054` - Chart with shared tooltip and huge data throws console error issue is fixed.
2005
+
2006
+ ## 19.3.45 (2021-10-12)
2007
+
2008
+ ### Chart
2009
+
2010
+ #### Bug Fixes
2011
+
2012
+ - `#I339050` - Resolved CSP issues in the chart while using inline styles.
2013
+
2014
+ - Data point highlight is now properly working while enabling the tooltip.
2015
+
2016
+ ## 19.3.44 (2021-10-05)
2017
+
2018
+ ### Chart
2019
+
2020
+ #### Bug Fixes
2021
+
2022
+ - `#I342789` - Tooltip fade out duration works properly on mobile device.
2023
+ - `#F168868` - `OnZooming` event is now triggering properly.
2024
+ - `#I339227` - Logarithmic axis range is working fine even value "0" is given.
2025
+ - `#F169237` - Spline curve is not proper for null values is fixed.
2026
+
2027
+ ## 19.3.43 (2021-09-30)
2028
+
2029
+ ### Chart
2030
+
2031
+ #### New Features
2032
+
2033
+ - `#328985, #327703` - Provide pixel support for data points in rectangular chart types such as bar, range column, and column.
2034
+
2035
+ ## 19.2.62 (2021-09-14)
2036
+
2037
+ ### Chart
2038
+
2039
+ #### Bug Fixes
2040
+
2041
+ - `#I341014`, `#I341412` - Histogram chart rendering fine while using negative points.
2042
+ - `#I340071` - Chart zooming is proper now when the axis is inversed.
2043
+ - `#I341644` - Unwired the resize event for accumulation chart.
2044
+
2045
+ ## 19.2.60 (2021-09-07)
2046
+
2047
+ ### Chart
2048
+
2049
+ #### Bug Fixes
2050
+
2051
+ - `#I340525` - Data labels are rendering fine when the background is specified for the chart.
2052
+
2053
+ ## 19.2.59 (2021-08-31)
2054
+
2055
+ ### Chart
2056
+
2057
+ - `#I340170` - Resolved console error thrown on mouse move after removing the chart.
2058
+ - Accumulation chart explode is now working properly.
2059
+ - `339227` - Logarithmic axis is now working fine for data value below 1.
2060
+
2061
+ ## 19.2.57 (2021-08-24)
2062
+
2063
+ ### Chart
2064
+
2065
+ #### Bug Fixes
2066
+
2067
+ - `#337302` - Browser responsive issue while zooming the chart has been fixed.
2068
+
2069
+ ## 19.2.56 (2021-08-17)
2070
+
2071
+ ### Chart
2072
+
2073
+ #### Bug Fixes
2074
+
2075
+ - `#337487` - Query selector issue fixed for container ID.
2076
+
2077
+ ## 19.2.55 (2021-08-11)
2078
+
2079
+ ### Chart
2080
+
2081
+ #### New Features
2082
+
2083
+ - `#335166` - Provide Fade out support for chart tooltip on touch.
2084
+
2085
+ ## 19.2.51 (2021-08-03)
2086
+
2087
+ ### Chart
2088
+
2089
+ #### Bug Fixes
2090
+
2091
+ - `#337240` - Stripline working properly on canvas mode.
2092
+
2093
+ ### Accumulation chart
2094
+
2095
+ #### Bug Fixes
2096
+
2097
+ - `#335684` - Data label positioning properly for pie chart.
2098
+
2099
+ ## 19.2.49 (2021-07-27)
2100
+
2101
+ ### Chart
2102
+
2103
+ #### Bug Fixes
2104
+
2105
+ - `#335336` - Chart series is now rendeirng properly while zooming in canvas mode.
2106
+ - `#330763` - Tooltip template is now working fine without cropping.
2107
+
2108
+ ### Accumulation chart
2109
+
2110
+ #### Bug Fixes
2111
+
2112
+ - `#335151` - Console error while selecting point after cancelling a tooltip has been fixed.
2113
+
2114
+ ## 19.2.47 (2021-07-13)
2115
+
2116
+ ### Sparkline
2117
+
2118
+ #### Bug Fixes
2119
+
2120
+ - Resolved the console script exception while mouseover on the Sparkline.
2121
+
2122
+ ### Chart
2123
+
2124
+ #### Bug Fixes
2125
+
2126
+ - `#333145` - Point selection is now working properly, when specifying the selection on load.
2127
+ - `#334269` - Range area series is now rendering properly in stock chart.
2128
+
2129
+ ## 19.2.46 (2021-07-06)
2130
+
2131
+ ### Chart
2132
+
2133
+ #### Bug Fixes
2134
+
2135
+ - `#332577` - `StepArea` gets truncated while using canvas mode issue has been fixed.
2136
+
2137
+ ## 19.2.44 (2021-06-30)
2138
+
2139
+ ### Chart
2140
+
2141
+ #### Bug Fixes
2142
+
2143
+ - `#331558` - Zooming working fine when the pan element not shown in toolbar.
2144
+
2145
+ #### New Features
2146
+
2147
+ - The "Spline Range Area" interactive chart series is now available.
2148
+
2149
+ ### Stock Chart
2150
+
2151
+ #### New Features
2152
+
2153
+ - The legend feature has been added to the stock chart.
2154
+
2155
+ ## 19.1.69 (2021-06-15)
2156
+
2157
+ ### Chart
2158
+
2159
+ #### Bug Fixes
2160
+
2161
+ - `#329311` - Legend text is now rendering properly with ampersand symbol.
2162
+
2163
+ ## 19.1.67 (2021-06-08)
2164
+
2165
+ ### Chart
2166
+
2167
+ #### Bug Fixes
2168
+
2169
+ - `#F165670` - Marker Explode is now rendered properly with image.
2170
+ - `#328528` - Histogram is rendering properly when the `binInterval` value is 0.
2171
+ - `#328780` - `multiLevelLabelClick` event is now triggering in canvas mode.
2172
+
2173
+ ## 19.1.65 (2021-05-25)
2174
+
2175
+ ### Chart
2176
+
2177
+ #### Bug Fixes
2178
+
2179
+ - `#328528` - Histogram is rendering properly when the `binInterval` value is 0.
2180
+
2181
+ ### Stock Chart
2182
+
2183
+ #### Bug Fixes
2184
+
2185
+ - `#F165171` - Tooltip for column in stock chart is working properly now.
2186
+
2187
+ ## 19.1.64 (2021-05-19)
2188
+
2189
+ ### Chart
2190
+
2191
+ #### Bug Fixes
2192
+
2193
+ - `#326473` - Print is now working properly with strip line dash array.
2194
+
2195
+ ## 19.1.63 (2021-05-13)
2196
+
2197
+ ### Chart
2198
+
2199
+ #### Bug Fixes
2200
+
2201
+ - `#325456` - Highlight and selection issue has been fixed for multiple charts.
2202
+ - `#F165060` - Accumulation chart with data label is now rendering properly inside the dashboard layout.
2203
+
2204
+ #### New Features
2205
+
2206
+ - `#288255` - Improved logarithmic axis to show value less than 1.
2207
+
2208
+ ## 19.1.59 (2021-05-04)
2209
+
2210
+ ### Chart
2211
+
2212
+ #### Bug Fixes
2213
+
2214
+ - `#308029` - Console error thrown while using special character in the chart container ID issue has fixed.
2215
+ - `#F164708` - The white space in the legend icon issue has been fixed.
2216
+ - Accumulation chart refresh method removes inner HTML elements issue has been fixed.
2217
+ - `#325193` - Rotating data label is now working properly
2218
+
2219
+ #### New Features
2220
+
2221
+ - `#289399` - Provided support to reverse the legend shape and text.
2222
+
2223
+ ## 19.1.58 (2021-04-27)
2224
+
2225
+ ### Accumulation chart
2226
+
2227
+ #### Bug Fixes
2228
+
2229
+ - `#323707` - Console error thrown while using various radius pie chart inside dashboard layout issue is fixed.
2230
+
2231
+ ## 19.1.57 (2021-04-20)
2232
+
2233
+ ### Chart
2234
+
2235
+ #### Bug Fixes
2236
+
2237
+ - `#F163318` - Need to skip data not available in shared tooltip issue fixed.
2238
+
2239
+ ## 19.1.56 (2021-04-13)
2240
+
2241
+ ### Chart
2242
+
2243
+ #### Bug Fixes
2244
+
2245
+ - `#310867` - 100% Stacking area is now working properly on browser resize.
2246
+ - `#318354` - Scrollbar issue for bar type series is resolved.
2247
+ - `#319835` - Normal distribution line in histogram series is rendering properly.
2248
+
2249
+ ### Bullet chart
2250
+
2251
+ #### Bug Fixes
2252
+
2253
+ - `#318856` - Label for the negative data is now rendering properly.
2254
+
2255
+ ## 19.1.54 (2021-03-30)
2256
+
2257
+ ### Chart
2258
+
2259
+ #### New Features
2260
+
2261
+ - Range color mapping feature added.
2262
+
2263
+ #### Bug Fixes
2264
+
2265
+ - `#313827` - Fixed stripline fails issue on canvas mode.
2266
+ - `#304737` - Remove child of null console error thrown while using canvas mode issue has been fixed.
2267
+ - `#314894` - Stripline is not working in datetime for core platform issue fixed.
2268
+ - `#F162046` - Dynamic indicator change using useState issue resolved.
2269
+
2270
+ ## 18.4.46 (2021-03-02)
2271
+
2272
+ ### Chart
2273
+
2274
+ #### Bug Fixes
2275
+
2276
+ - `#156827` - Axis line break label alignment issue has been fixed.
2277
+
2278
+ ## 18.4.44 (2021-02-23)
2279
+
2280
+ ### Chart
2281
+
2282
+ #### New Features
2283
+
2284
+ - `#253348` - Icon support for legend space has been provided.
2285
+
2286
+ ## 18.4.43 (2021-02-16)
2287
+
2288
+ ### Chart
2289
+
2290
+ #### Bug Fixes
2291
+
2292
+ - `#308967` - Chart horizontal strip line position changes issue has been fixed.
2293
+ - `#21006` - Render fail using point color mapping if datasource array is empty issue fixed.
2294
+
2295
+ #### New Features
2296
+
2297
+ - `#281265` - Support for spacing between axis labels & axis title and padding for legend container implemented
2298
+
2299
+ ### Accumulation chart
2300
+
2301
+ #### Bug Fixes
2302
+
2303
+ - `#308019` - Accumulation chart data labels are rendering over the chart issue has been fixed.
2304
+ - `#308020` - The labels to each slice of the pie chart are not reactive issue has been fixed.
2305
+
2306
+ ### RangeNavigator
2307
+
2308
+ #### Bug Fixes
2309
+
2310
+ - `#311116` - Disable range selector is not working issue has been fixed.
2311
+
2312
+ ## 18.4.42 (2021-02-09)
2313
+
2314
+ ### Chart
2315
+
2316
+ #### New Features
2317
+
2318
+ - `#292925, #311306` - Provided the support for chart trackball tooltip template.
2319
+
2320
+ #### Bug Fixes
2321
+
2322
+ - `#305550` - Dragging issue fixed on multi selection in chart.
2323
+
2324
+ ## 18.4.41 (2021-02-02)
2325
+
2326
+ ### Accumulation chart
2327
+
2328
+ #### Bug Fixes
2329
+
2330
+ - `#297039` - Fixed the data labels are overlapped issue in accumulation chart.
2331
+
2332
+ ## 18.4.39 (2021-01-28)
2333
+
2334
+ ### Chart
2335
+
2336
+ #### Bug Fixes
2337
+
2338
+ - `#308150` - Fixed the data label issue for label instersect action.
2339
+ - `#307320` - Data label Template hides on hovering over the marker issue has been fixed.
2340
+
2341
+ ## 18.4.35 (2021-01-19)
2342
+
2343
+ ### Chart
2344
+
2345
+ #### Bug Fixes
2346
+
2347
+ - `#307141` - Issue fixed in Y axis range interval.
2348
+
2349
+ ### Stock Chart
2350
+
2351
+ #### Bug Fixes
2352
+
2353
+ - `#306698` - Visible property in series is not working properly for stock chart issue fixed.
2354
+
2355
+ ## 18.4.34 (2021-01-12)
2356
+
2357
+ ### Chart
2358
+
2359
+ #### Bug Fixes
2360
+
2361
+ - `#293532` - Chart gets crash while using small values issue fixed.
2362
+
2363
+ ## 18.4.30 (2020-12-17)
2364
+
2365
+ ### Chart
2366
+
2367
+ #### Bug Fixes
2368
+
2369
+ - `#293532` - Chart gets crash while using small values issue fixed.
2370
+ - `#300644` - Data label template console error in canvas mode issue fixed.
2371
+
2372
+ ### RangeNavigator
2373
+
2374
+ #### Bug Fixes
2375
+
2376
+ - `#160214` - Range navigator cursor style issue fixed.
2377
+
2378
+ ## 18.3.52 (2020-12-01)
2379
+
2380
+ ### RangeNavigator
2381
+
2382
+ #### Bug Fixes
2383
+
2384
+ - `#294999` - Range navigator rendering properly for `Date` type.
2385
+ - `#297551` - Text Wrap support added for chart axis title.
2386
+
2387
+ ## 18.3.51 (2020-11-24)
2388
+
2389
+ ### Chart
2390
+
2391
+ #### Bug Fixes
2392
+
2393
+ - `#295143` - Mouse wheel zooming issue has been fixed.
2394
+ - `#299281` - Parent element `CSS` override issue has been fixed.
2395
+ - `#291907, #296201, #296570` - Tooltip position support added.
2396
+ - `#298154` - Update the color dynamically on pie chart has been fixed.
2397
+ - `#298291` - The label issue of sum index value has been fixed.
2398
+ - `#300936` - Histogram not rendering properly on duplicate data has been fixed.
2399
+ - `#300428` - `visibleRange` value has been added in `zoomComplete` event.
2400
+ - `#296739` - In multi color line type, segment values are not applied for multiple series issue fixed.
2401
+
2402
+ ## 18.3.50 (2020-11-17)
2403
+
2404
+ ### Chart
2405
+
2406
+ #### Bug Fixes
2407
+
2408
+ - `#295905` - Corner radius is not proper for value zero issue has been fixed.
2409
+ - `#296280` - Chart legend is not hidden while visible property is set as false in button click issue has been fixed.
2410
+ - `#285055` - Lazy load in the Chart is not working properly issue fixed.
2411
+ - `#157667` - point click is not working for low values in column chart issue has been fixed.
2412
+
2413
+ ## 18.3.48 (2020-11-11)
2414
+
2415
+ ### Chart
2416
+
2417
+ #### Bug Fixes
2418
+
2419
+ - `#292894` - Chart axis title overlaps when `labelPadding` is provided for axis labels issue has been fixed.
2420
+ - `#290869` - Axis label rotation issue has been fixed.
2421
+ - `#299015` - Script error on hovering the chart in animation issue has been fixed.
2422
+
2423
+ ## 18.3.47 (2020-11-05)
2424
+
2425
+ ### Chart
2426
+
2427
+ #### Bug Fixes
2428
+
2429
+ - `#295143` - Scrollbar `zoomFactor` and `zoomPosition` related issue has been fixed.
2430
+ - `#293312` - Waterfall series not working properly for 0 values issue has been fixed.
2431
+ - `#296989` - PageX and PageY arguments are not available in pie pointClick event issue fixed.
2432
+ - `#278146` - Scrollbar is not working properly for live data issue has been fixed.
2433
+ - `#292251, 291578, 292855` - Chart axis label tooltip is getting cropped issue has been fixed.
2434
+
2435
+ ## 18.3.44 (2020-10-27)
2436
+
2437
+ ### Chart
2438
+
2439
+ #### Bug Fixes
2440
+
2441
+ - `#292116` - Y axis minimum value is wrong for column type chart when range is not set issue has been fixed.
2442
+ - `#295143` - Initial minor grid line is not rendered while zooming issue has been fixed
2443
+ - `#296223` - Empty point settings not working for line series in polar chart issue has been fixed.
2444
+ - `#295866` - Multicolored and histogram chart console exception while providing empty datasource has been fixed.
2445
+ - `#290990` - Console error when y values are not within specified range issue has been fixed.
2446
+ - `#292455` - Scatter Series renders out of the chart Area issue fixed.
2447
+ - `#291578` - Chart axis label tooltip is getting cropped issue has been fixed.
2448
+
2449
+ ## 18.3.42 (2020-10-20)
2450
+
2451
+ ### Chart
2452
+
2453
+ #### Bug Fixes
2454
+
2455
+ - `#280301` - Radar and polar chart tooltip cropping issue has been fixed.
2456
+ - `#290360` - Scrollbar does not work properly on scrolling for `isInversed` issue has been fixed
2457
+ - `#292937` - Trendlines not working properly while providing maximum value issue has been fixed.
2458
+
2459
+ ### Sparkline
2460
+
2461
+ #### Bug Fixes
2462
+
2463
+ - `#264262` - Sparkline column is not proper when `rangepadding` is Normal issue has been fixed.
2464
+
2465
+ ## 18.3.35 (2020-10-01)
2466
+
2467
+ ### Stock Chart
2468
+
2469
+ #### Bug Fixes
2470
+
2471
+ - `#290529` - Date range picker is not proper when rendering 2 stock charts issue has been fixed.
2472
+
2473
+ ## 18.2.56 (2020-09-01)
2474
+
2475
+ ### Chart
2476
+
2477
+ #### Bug Fixes
2478
+
2479
+ - `#286177` - Place pie data labels based on space available.
2480
+ - `#290274` - Axis label customization is not proper for double type.
2481
+ - `#F155030` - DateTime Annotation does not work in ASP.NET Core has been fixed.
2482
+ - `#F157038` - Empty chart with shared tooltip throws console error has been fixed.
2483
+
2484
+ ## 18.2.55 (2020-08-25)
2485
+
2486
+ ### Accumulation chart
2487
+
2488
+ #### Bug Fixes
2489
+
2490
+ - `#288484` - Accumulation chart class is removed while refreshing the chart issue fixed.
2491
+
2492
+ ## 18.2.54 (2020-08-18)
2493
+
2494
+ ### Chart
2495
+
2496
+ #### Bug Fixes
2497
+
2498
+ - `#287569` - Shared tooltip does not render for multiple line series when there is a single point issue fixed.
2499
+ - `#285313` - Cancel property in arguments is not working properly on chart Load event issue fixed.
2500
+ - `#287632` - Point Render event customization not applied for column chart markers issue fixed.
2501
+
2502
+ ## 18.2.48 (2020-08-04)
2503
+
2504
+ ### Accumulation chart
2505
+
2506
+ #### Bug Fixes
2507
+
2508
+ - `#286597` - Tooltip showing out of the chart area issue fixed.
2509
+ - `#286177` - Pie chart data labels are overlapped when smart labels are enabled issue fixed.
2510
+
2511
+ ## 18.2.47 (2020-07-28)
2512
+
2513
+ ### Chart
2514
+
2515
+ #### Bug Fixes
2516
+
2517
+ - `#284735` - Primary y axis Lograthmic values are not rendering based on the data issue fixed.
2518
+ - `#285055` - When we scroll to end some of the data is missing issue fixed.
2519
+
2520
+ ## 18.2.46 (2020-07-21)
2521
+
2522
+ ### Chart
2523
+
2524
+ #### Bug Fixes
2525
+
2526
+ - `#285003` - Chart DataSource is not updating when the page has more number of chart issue fixed.
2527
+ - `#155963` - Added new API showZero to show data labels for value zero.
2528
+ - `#283698` - point click event is not working in some random cases.
2529
+
2530
+ ## 18.2.45 (2020-07-14)
2531
+
2532
+ - `#278688` - Added sharedTooltipRender event for shared tooltip in blazor.
2533
+ - `#276213` - Added aria label for accumulation chart title.
2534
+
2535
+ ### Chart
2536
+
2537
+ #### Bug Fixes
2538
+
2539
+ - `#155030` - Chart annotation is not working in datetime axis issue fixed.
2540
+ - `#280301` - Radar and polar chart tooltip cropping issue fixed.
2541
+ - `#155580` - Chart not rendered properly, when interval type is minutes for DateTime axis issue fixed.
2542
+
2543
+ ### RangeNavigator
2544
+
2545
+ #### Bug Fixes
2546
+
2547
+ - `#278655` - Start and end of range slider values are wrongly calculated in `changed` event issue fixed.
2548
+
2549
+ ### Sparkline
2550
+
2551
+ #### Bug Fixes
2552
+
2553
+ - `282664` - Dynamic change is not working properly in sparkline issue is fixed.
2554
+
2555
+ ## 18.2.44 (2020-07-07)
2556
+
2557
+ ### Chart
2558
+
2559
+ #### Bug Fixes
2560
+
2561
+ - `#280448` - After changing page layout from LTR to RTL label overlapping issue fixed.
2562
+ - `#280364` - Stacking area while assigning empty data source console error issue fixed.
2563
+ - `#281323` - Console error while using DateTime as `primaryYAxis` issue fixed.
2564
+ - `#281651` - Other zooming actions prevented while scrollbar zooming enabled issue is fixed.
2565
+
2566
+ ### Accumulation Chart
2567
+
2568
+ #### New Features
2569
+
2570
+ - Provided smart label placement support that places data labels smartly without overlapping one another in Pie and Doughnut charts.
2571
+
2572
+ ## 18.1.56 (2020-06-09)
2573
+
2574
+ ### Chart
2575
+
2576
+ #### Bug Fixes
2577
+
2578
+ - `#278688` - Shared Tooltip not visible while using tooltip render event issue fixed.
2579
+ - `#278311` - Y axis labels get overlapped when using single negative point issue fixed.
2580
+ - `#154576` - Range Selector doesn't match chart data range for one day issue fixed.
2581
+ - `#279008` - Cluster selection with 0 values for logarithmic type issue fixed.
2582
+
2583
+ ### Accumulation chart
2584
+
2585
+ #### Bug Fixes
2586
+
2587
+ - `#279297` - Height in percentage not working properly is fixed now.
2588
+
2589
+ ## 18.1.55 (2020-06-02)
2590
+
2591
+ ### Chart
2592
+
2593
+ #### Bug Fixes
2594
+
2595
+ - `#277354` - Data labels are getting cropped within the Chart issue fixed.
2596
+ - `#278138` - Track ball hides in `stacking area` chart issue has been fixed.
2597
+ - `#278485` - DateTime do not work properly if date time values are on the same day issue fixed.
2598
+ - `#154240` - Point click not working on some scenarios issue has been fixed.
2599
+
2600
+ ## 18.1.54 (2020-05-26)
2601
+
2602
+ ### Stock Chart
2603
+
2604
+ #### Bug Fixes
2605
+
2606
+ - `#262890` - Label position is not working in stock chart primary y axis issue fixed.
2607
+
2608
+ ### Chart
2609
+
2610
+ #### Bug Fixes
2611
+
2612
+ - `#273192` - Trendline slopes are not proper as per the datasource issue fixed.
2613
+ - `#277748` - Chart rendered twice in blazor is now resolved.
2614
+ - `#273410` - Chart resize issue in blazor has been fixed.
2615
+
2616
+ ## 18.1.53 (2020-05-19)
2617
+
2618
+ ### Accumulation chart
2619
+
2620
+ #### Bug Fixes
2621
+
2622
+ - `#153764` - The size of the doughnuts graphs does not display correctly in the Edge browser issue fixed.
2623
+ - `#277504` - Explode Index 0 is not working in accumulation chart issue fixed.
2624
+
2625
+ ### Chart
2626
+
2627
+ #### Bug Fixes
2628
+
2629
+ - `#273192` - Trendlines are placed behind the series issue has been fixed.
2630
+ - `#274960` - `pageX` and `pageY` has been added in `pointClick event`.
2631
+
2632
+ ## 18.1.52 (2020-05-13)
2633
+
2634
+ ### Accumulation chart
2635
+
2636
+ #### Bug Fixes
2637
+
2638
+ - `#I273694` - Legend paging issue when legend position in Right side fixed.
2639
+
2640
+ ## 18.1.48 (2020-05-05)
2641
+
2642
+ ### Chart
2643
+
2644
+ #### Bug Fixes
2645
+
2646
+ - `#273192` - Trendlines are short and have the wrong slope direction issue fixed.
2647
+ - `#267962` - when using react parcel, chart throws console error issue fixed.
2648
+
2649
+ ## 18.1.45 (2020-04-21)
2650
+
2651
+ ### Chart
2652
+
2653
+ #### Bug Fixes
2654
+
2655
+ - `#271540` - Chart zooming maintained while switch chart type from column to polar issue fixed.
2656
+ - `#270524` - chart is broken when use `dir="rtl"` to the body tag issue fixed.
2657
+ - `#270548` - While enabling scrollbar half of marker gets hidden issue fixed.
2658
+ - `#271515` - Column chart is now working fine with column width is zero.
2659
+
2660
+ ## 18.1.44 (2020-04-14)
2661
+
2662
+ ### Chart
2663
+
2664
+ #### Bug Fixes
2665
+
2666
+ - `#255275` - While disabling some series console error occurs issue has been fixed.
2667
+
2668
+ ### Accumulation chart
2669
+
2670
+ #### Bug Fixes
2671
+
2672
+ - `#271120` - Data labels are displayed even when its y value is zero issue has been fixed.
2673
+ - `#152613` - Accumulation chart data label position is not proper when using template issue is fixed.
2674
+
2675
+ ### Smith Chart
2676
+
2677
+ #### Bug Fixes
2678
+
2679
+ - `#152336` - Tooltip template issue fixed.
2680
+ - `#269225` - Provided event support for before rendering of tooltip
2681
+
2682
+ ## 18.1.43 (2020-04-07)
2683
+
2684
+ ### Chart
2685
+
2686
+ #### Bug Fixes
2687
+
2688
+ - `#269627` - Logarithmic scale does not work with small values issue has been fixed.
2689
+ - `#151645` - Error bar value is not updated dynamically issue has fixed.
2690
+
2691
+ ### Accumulation chart
2692
+
2693
+ #### Bug Fixes
2694
+
2695
+ - `#267438` - Export chart in canvas mode issue has been fixed
2696
+
2697
+ ## 18.1.36-beta (2020-03-19)
2698
+
2699
+ ### Chart
2700
+
2701
+ #### New Features
2702
+
2703
+ - Provided support to highlight the data points in chart.
2704
+ - Provided support for patterns to the selected and highlighted data.
2705
+
2706
+ #### Bug Fixes
2707
+
2708
+ - `#268306` - Console error thrown while hiding tooltip issue has been fixed.
2709
+
2710
+ ### Bullet Chart
2711
+
2712
+ #### New Features
2713
+
2714
+ - Provided support to legend for targets, actual value and ranges in bullet chart.
2715
+
2716
+ ## 17.4.51 (2020-02-25)
2717
+
2718
+ ### Chart
2719
+
2720
+ #### Bug Fixes
2721
+
2722
+ - `#264474` - X axis labels are not rendered in center of tick marks when angle is 270 issue has fixed.
2723
+ - `#264474` - Console error when angle is provided for x axis and data is assigned on vue mounted method issue has fixed.
2724
+ - `#264230` - Tooltip doesn't appears after zooming and hovering on same point has fixed.
2725
+ - `#151604` - Console error throwing when toggle the chart enableCanvas mode has fixed.
2726
+
2727
+ ### Accumulation chart
2728
+
2729
+ #### Bug Fixes
2730
+
2731
+ - `263828` - Accumulation chart safari browser animation issue has fixed.
2732
+
2733
+ ### RangeNavigator
2734
+
2735
+ #### Bug Fixes
2736
+
2737
+ - `266063` - Changed Event not triggered while releasing the click outside of the control has fixed.
2738
+
2739
+ ### Sparkline
2740
+
2741
+ #### Bug Fixes
2742
+
2743
+ - `#264262` - `rangePadding` property is exposed to render the columns in the sparkline charts with proper axis padding.
2744
+
2745
+ ## 17.4.50 (2020-02-18)
2746
+
2747
+ ### Chart
2748
+
2749
+ #### Bug Fixes
2750
+
2751
+ - `#262128` - Legend gets cropped while adding series dynamically issue has fixed.
2752
+ - `#261471` - Pie annotation template is not center in `blazor` issue fixed.
2753
+ - `#255275` - Trendline throws console error when legend click issue fixed.
2754
+ - `#262734` - Stripline date time is not support in asp core issue fixed.
2755
+
2756
+ ## 17.4.47 (2020-02-05)
2757
+
2758
+ ### Chart
2759
+
2760
+ #### Bug Fixes
2761
+
2762
+ - `262642` - Accumulation Chart data manager result getting previous data while using query issue has fixed.
2763
+ - `147090` - 'clearSeries' Method is added to the Chart for clearing the all series.
2764
+ - `#149030` - Label Intersect Action does not work for datalabel template issue fixed.
2765
+ - `#262400` - Tooltip y value is not working when enable the group separator issue fixed.
2766
+
2767
+ ## 17.4.46 (2020-01-30)
2768
+
2769
+ ### Chart
2770
+
2771
+ #### New Features
2772
+
2773
+ - `#260004` - Provided support for polar and radar column spacing.
2774
+ - `#257784` - Provided support for smart rendering of X-axis rotated labels.
2775
+ - `#254646` - Provided Before export event support for export in chart.
2776
+
2777
+ #### Bug Fixes
2778
+
2779
+ - `#260205` - While using animate() method one series is not removed issue is fixed now.
2780
+ - `#255275` - Console error thrown when changing the trendline type from linear to exponential trendline or other types is fixed now.
2781
+
2782
+ ## 17.4.41 (2020-01-07)
2783
+
2784
+ ### Stock Chart
2785
+
2786
+ #### New Features
2787
+
2788
+ - `#257199` - Provided support to enable/disable the Date Range Picker in Stock Chart's period selector.
2789
+
2790
+ #### Bug Fixes
2791
+
2792
+ - `#257199` - Tooltip stops showing after resizing window issue has fixed.
2793
+
2794
+ ## 17.4.40 (2019-12-24)
2795
+
2796
+ ### Chart
2797
+
2798
+ #### Bug Fixes
2799
+
2800
+ - `#149930` - Chart with DataManager in offline mode makes a request to the server for multiple times issue got fixed.
2801
+ - Issue in Stacking line series with multiple axes is fixed now.
2802
+ - `#257935` - Alignment issue in axis labels when rotated at 90 degree is fixed now.
2803
+
2804
+ ## 17.4.39 (2019-12-17)
2805
+
2806
+ ### RangeNavigator
2807
+
2808
+ #### Bug Fixes
2809
+
2810
+ - `#255451` - Label alignment issue in range navigator has been fixed.
2811
+
2812
+ ### Chart
2813
+
2814
+ #### Bug Fixes
2815
+
2816
+ - `#256664` - Polar and radar axis labels overlapping with legend issue got fixed.
2817
+ - `#149497` - Axis labels are invalid when using label format as percentage in stacking 100 percent series types issue got fixed.
2818
+
2819
+ - `#256664` - Polar and radar axis labels overlapping with legend issue fixed.
2820
+ - `#149497` - Axis labels are invalid when using label format as percentage in stacking 100 percent series types issue fixed.
2821
+
2822
+ ### Bullet Chart
2823
+
2824
+ Bullet Chart is the variation of bar chart, which displays one or more measures, and compares it to a target value. You can also display the measures in a qualitative range of performance such as poor, satisfactory, or good. All stock elements are rendered by using Scalable Vector Graphics (SVG).
2825
+
2826
+ - **Data Binding** - Binds the data with local and remote data source.
2827
+ - **Animation** - Feature and target bar will be animated when rendering.
2828
+ - **Tooltip** - Supports tooltip for the feature and target bar.
2829
+ - **Orientation** - Supports vertical and horizontal rendering.
2830
+ - **Flow Direction** - Supports to render from right to left.
2831
+ - **Multiple Target** - Supports multiple targets.
2832
+ - **Data Labels** - Supports data label to enhance the data.
2833
+
2834
+ ## 17.3.30 (2019-12-03)
2835
+
2836
+ ### Chart
2837
+
2838
+ #### Bug Fixes
2839
+
2840
+ - `#256664` - Polar and radar axis labels overlapping with legend issue fixed.
2841
+
2842
+ ## 17.3.28 (2019-11-19)
2843
+
2844
+ ### Chart
2845
+
2846
+ #### Bug Fixes
2847
+
2848
+ - #252450 - In Polar series, selection did not work while clicking center of the marker which is plotted in the axis line is fixed
2849
+ - #254803 - While clicking legend corresponding axis of the series will hide now.
2850
+ - #252450 - Selection applied for marker shadow element is prevented now.
2851
+ - #255392 - Axis label tooltip not disappeared when the mouse is moved away from chart issue fixed.
2852
+ - #254710 - Border customization is not applied for legend in scatter chart is fixed.
2853
+
2854
+ ## 17.3.27 (2019-11-12)
2855
+
2856
+ ### Chart
2857
+
2858
+ #### Bug Fixes
2859
+
2860
+ - #250481 - Radar and Polar Chart isClosed not connecting to the first point when the minimum value set for the y axis issue has been fixed.
2861
+
2862
+ ## 17.3.26 (2019-11-05)
2863
+
2864
+ ### Chart
2865
+
2866
+ #### New Features
2867
+
2868
+ - #250563 - Provided support to render background image for chart.
2869
+
2870
+ #### Bug Fixes
2871
+
2872
+ - #253297 - Cross shape is now working fine in scatter chart.
2873
+
2874
+ ## 17.3.21 (2019-10-30)
2875
+
2876
+ ### Chart
2877
+
2878
+ #### New Features
2879
+
2880
+ - #249556 - Provided smart data label for polar radar chart.
2881
+ - #249971 - Provided support to trim polar radar axis labels based on available size.
2882
+
2883
+ #### Bug Fixes
2884
+
2885
+ - #250412 - The axis missing in polar and radar issue is fixed.
2886
+ - #148064 - Legend color is not working when using point color mapping issue is fixed.
2887
+ - #252450 - Selection while clicking on marker border issue is fixed.
2888
+
2889
+ ### Accumulation chart
2890
+
2891
+ #### Bug Fixes
2892
+
2893
+ - #252357 - 'remove' method is not support in IE 11 issue fixed.
2894
+
2895
+ ## 17.3.19 (2019-10-22)
2896
+
2897
+ ### Accumulation chart
2898
+
2899
+ #### Bug Fixes
2900
+
2901
+ - #148287 - Series DataSource change accumulation chart refresh issue fixed.
2902
+
2903
+ ### Chart
2904
+
2905
+ #### Bug Fixes
2906
+
2907
+ - #250074 - Label placement between ticks is not working for radar chart issue fixed.
2908
+ - #251346 - Radar and polar chart of draw type column and stacked column the values are plotted differently issue fixed
2909
+
2910
+ ## 17.3.17 (2019-10-15)
2911
+
2912
+ ### Chart
2913
+
2914
+ #### New Features
2915
+
2916
+ - #249554 - Provided smart axis label for polar radar chart.
2917
+ - #239599 - Provided event support for tooltip template.
2918
+
2919
+ ## 17.3.16 (2019-10-09)
2920
+
2921
+ ### Accumulation Chart
2922
+
2923
+ #### New Features
2924
+
2925
+ - #249611 - Provided duration support for hiding the tooltip.
2926
+
2927
+ ### Chart
2928
+
2929
+ #### New Features
2930
+
2931
+ - #249611 - Provided duration support for hiding the tooltip.
2932
+
2933
+ #### Bug Fixes
2934
+
2935
+ - #249730 - Polar chart column series with inversed axis with OnTicks rendering issue fixed.
2936
+ - #250074 - Radar chart values are wrongly plotted in outside the axis issue fixed.
2937
+ - #250064 - Radar and Polar Chart of Scatter Type is not rendering when the Value label is enabled issue fixed.
2938
+ - #250336 - es2015 script error issue has fixed.
2939
+ - #250081 - Radar and Polar chart when only one data is passed it is appearing as single dot issue fixed.
2940
+
2941
+ ### Stock Chart
2942
+
2943
+ #### Bug Fixes
2944
+
2945
+ - `#249956` - Annotation rendering issue has fixed.
2946
+
2947
+ ## 17.3.14 (2019-10-03)
2948
+
2949
+ ### Chart
2950
+
2951
+ #### New Features
2952
+
2953
+ - Trim support have been provided for axis title in chart.
2954
+ - Axis padding at desired position has been provided.
2955
+
2956
+ ## 17.3.9-beta (2019-09-20)
2957
+
2958
+ ### Accumulation Chart
2959
+
2960
+ #### New Features
2961
+
2962
+ - Border support have been provided for doughnut and pie while hovering.
2963
+ - Options have been provided to rotate data labels.
2964
+
2965
+ ### Chart
2966
+
2967
+ #### New Features
2968
+
2969
+ - Options provided to customize the series tooltip format separately.
2970
+ - Multi-select options have been provided to allow users to select multiple regions in a chart.
2971
+ - Lasso select options have been provided to allow users to select a region by drawing freehand shapes.
2972
+ - Options have been provided to rotate data labels.
2973
+
2974
+ ## 17.2.48-beta (2019-08-28)
2975
+
2976
+ ### Chart
2977
+
2978
+ #### Bug Fixes
2979
+
2980
+ `#243156` - Drag complete returns value in string issue has been fixed.
2981
+ `#245710` - Lograthmic is not working properly for smaller value issue has been fixed.
2982
+ `#243156` - Selection is not proper at the edge issue has been fixed.
2983
+ `#245710` - Y-Axis of Spline chart not adjusting scale to suit dataSource issue has been fixed.
2984
+
2985
+ ## 17.2.36 (2019-07-24)
2986
+
2987
+ ### Stock Chart
2988
+
2989
+ #### Bug Fixes
2990
+
2991
+ The `querySelector of null` console error issue has been fixed.
2992
+
2993
+ ### RangeNavigator
2994
+
2995
+ #### Bug Fixes
2996
+
2997
+ The `appendChild of null` console error issue has been fixed.
2998
+
2999
+ ### Chart
3000
+
3001
+ #### Bug Fixes
3002
+
3003
+ `#240342` - While scrolling chart's scrollbar Vertical HTML scrollbar goes up issue fixed.
3004
+
3005
+ ### Accumulation chart
3006
+
3007
+ #### Bug Fixes
3008
+
3009
+ - #241559 - Console error on doughnut chart when trying to hide a point via legend icon issue fixed.
3010
+
3011
+ ## 17.2.34 (2019-07-11)
3012
+
3013
+ ### Accumulation chart
3014
+
3015
+ #### Bug Fixes
3016
+
3017
+ - #240342 - Accumulation chart print not working proper in IE and Edge browsers issue fixed.
3018
+
3019
+ ## 17.2.28-beta (2019-06-27)
3020
+
3021
+ ### Chart
3022
+
3023
+ #### New Features
3024
+
3025
+ - Canvas rendering mode support provided.
3026
+ - Overlapping data labels in funnel and pyramid charts will be arranged on both sides of the charts.
3027
+ - Data Editing support provided for chart series points.
3028
+ - Multi level label click event added with custom object.
3029
+
3030
+ #### Breaking Changes
3031
+
3032
+ - sizeType enumeration name changed to SizeType
3033
+
3034
+ ### Stock Chart
3035
+
3036
+ #### Breaking Changes
3037
+
3038
+ - sizeType enumeration name changed to SizeType
3039
+
3040
+ ## 17.1.51 (2019-06-11)
3041
+
3042
+ ### Chart
3043
+
3044
+ #### Bug Fixes
3045
+
3046
+ - #144983 - Label style not working in axisLabelRender event for polar and radar series type issue fixed.
3047
+ - #237811 - Chart rendered with default width in Internet Explorer issue fixed.
3048
+
3049
+ ## 17.1.49 (2019-05-29)
3050
+
3051
+ ### Stock Chart
3052
+
3053
+ #### Bug Fixes
3054
+
3055
+ - #236896 - Provided mouse event in stock charts
3056
+
3057
+ ## 17.1.47 (2019-05-14)
3058
+
3059
+ ### Chart
3060
+
3061
+ #### New Features
3062
+
3063
+ - #233749 - Provided zOrder support for chart series.
3064
+
3065
+ ## 17.1.43 (2019-04-30)
3066
+
3067
+ ### Chart
3068
+
3069
+ #### Bug Fixes
3070
+
3071
+ - #219174 - Multi line axis label is not proper when using multiple rows intersect action issue has been fixed.
3072
+ - #231943 - Console error throws when using area chart out of the axis range has been fixed.
3073
+ - #234027 - Chart is not destroying properly while calling destroy method issue fixed.
3074
+
3075
+ ## 17.1.41 (2019-04-16)
3076
+
3077
+ ### Chart
3078
+
3079
+ #### Bug Fixes
3080
+
3081
+ - Support has been provided for multiple export in horizontal mode.
3082
+
3083
+ ## 17.1.40 (2019-04-09)
3084
+
3085
+ ### Accumulation chart
3086
+
3087
+ #### Bug Fixes
3088
+
3089
+ - Now Accumulation chart is refreshing properly on data change.
3090
+
3091
+ ### Chart
3092
+
3093
+ #### Bug Fixes
3094
+
3095
+ - Stacking column is not rendered properly when yvalue in string is fixed.
3096
+ - Zoomposition is not proper, when the axis is inversed is fixed.
3097
+ - Multiline label alignment is not proper, when breaking the labels into smaller text issue fixed
3098
+
3099
+ ## 17.1.32-beta (2019-03-13)
3100
+
3101
+ ### Chart
3102
+
3103
+ #### New Features
3104
+
3105
+ - Stacking Line series type has been added to the chart.
3106
+ - 100% Stacking Line series type has been added to the chart.
3107
+ - Support has been provided to wrap axis labels to multiple lines.
3108
+ - Chart now supports animation on data updation.
3109
+
3110
+ #### Bug Fixes
3111
+
3112
+ - Zooming icons are not visible on refreshing chart is fixed.
3113
+ - Chart not exported to SVG in IE11 is fixed.
3114
+ - Now the secondary axis is removed after changing the series type from pareto to line.
3115
+ - Legend color is not changing while changing point color using point render event is fixed.
3116
+
3117
+ - Zooming icons are not visible on refreshing chart is fixed.
3118
+ - Chart not exported to SVG in IE11 is fixed.
3119
+ - Now the secondary axis is removed after changing the series type from pareto to line.
3120
+
3121
+ ### Stock Chart
3122
+
3123
+ #### New Features
3124
+
3125
+ - Stock chart now allows stock events to highlight important dates.
3126
+
3127
+ ## 17.1.1-beta (2019-01-29)
3128
+
3129
+ ### Sparkline
3130
+
3131
+ #### New Features
3132
+
3133
+ - The right-to-left (RTL) rendering support has been provided
3134
+
3135
+ ## 16.4.48 (2019-01-22)
3136
+
3137
+ ### Chart
3138
+
3139
+ #### Bug Fixes
3140
+
3141
+ - Scatter chart's edge position render issue is fixed
3142
+ - Datalabel did not show properly in Edge browser is fixed
3143
+ - Trendline not rendering while using NaN as input issue is fixed
3144
+ - DataSource not refreshed in angular chart has been fixed.
3145
+
3146
+ ## 16.4.47 (2019-01-16)
3147
+
3148
+ ### Chart
3149
+
3150
+ #### Bug Fixes
3151
+
3152
+ - Chart not rendering using remote data without query issue is fixed
3153
+
3154
+ ## 16.4.45 (2019-01-02)
3155
+
3156
+ ### Chart
3157
+
3158
+ #### Bug Fixes
3159
+
3160
+ - Duplicates of scrollbar id in multiple chart is fixed
3161
+
3162
+ ## 16.4.44 (2018-12-24)
3163
+
3164
+ ### Stock Chart
3165
+
3166
+ #### Bug Fixes
3167
+
3168
+ - Console error in tooltip fixed
3169
+ - Highlight of buttons in period selector is working properly.
3170
+ - Height of stock chart without period selector, range navigator is working fine
3171
+
3172
+ ## 16.4.42 (2018-12-14)
3173
+
3174
+ ### Chart
3175
+
3176
+ #### Breaking Changes
3177
+
3178
+ - Export functionality has been moved into separate module. To export the chart, inject the `Export` module.
3179
+
3180
+ ## 16.4.40-beta (2018-12-10)
3181
+
3182
+ ### Chart
3183
+
3184
+ #### New Features
3185
+
3186
+ - Support for grid line animation has been provided.
3187
+ - Support has been provided to load data on-demand.
3188
+
3189
+ ### Accumulation chart
3190
+
3191
+ #### New Features
3192
+
3193
+ - The center option has been provided to the accumulation chart.
3194
+ - Support has been provided for different radius in pie slice.
3195
+
3196
+ ### Stock Chart
3197
+
3198
+ Stock Chart component is used to track and visualize stock price of any company over a specific period using charting and range tools. All stock elements are rendered by using Scalable Vector
3199
+ Graphics (SVG).
3200
+
3201
+ - **Data Binding** - Binds the data with local and remote data source.
3202
+ - **Chart** - To represent the selected data and its supports candle, hilo, OHLC, line, spline and area type series.
3203
+ - **Range Selector** - To select the smaller range from a larger collection.
3204
+ - **Data Types** - Supports three different types of data, namely Numerical, Datetime, and Logarithmic.
3205
+ - **Animation** - Chart series and slider will be animated when rendering and changing the selected data.
3206
+ - **Period Selector** - Supports period selector to select data based on predefined periods.
3207
+ - **Tooltip** - Supports tooltip for the selected data.
3208
+ - **Export** - Supports to print the chart directly from the browser and exports in both JPEG and PNG format.
3209
+
3210
+ ## 16.3.33 (2018-11-20)
3211
+
3212
+ ### Chart
3213
+
3214
+ #### New Features
3215
+
3216
+ - Margin options are added to legend.
3217
+
3218
+ #### Bug Fixes
3219
+
3220
+ - Chart is now refreshing on changing the dataSource in series directive.
3221
+ - Axis label is now rendering properly, when we have the interval in decimals.
3222
+
3223
+ ## 16.3.32 (2018-11-13)
3224
+
3225
+ ### Chart
3226
+
3227
+ #### Bug Fixes
3228
+
3229
+ - Polar area type border closing issue fixed.
3230
+ - scrollbar inverted axis position issue fixed.
3231
+
3232
+ ## 16.3.29 (2018-10-31)
3233
+
3234
+ ### Chart
3235
+
3236
+ #### New Features
3237
+
3238
+ - Options provided to change the header text in tooltip.
3239
+
3240
+ ## 16.3.27 (2018-10-23)
3241
+
3242
+ ### Chart
3243
+
3244
+ #### Bug Fixes
3245
+
3246
+ - Stroke width for line type legend is now working fine.
3247
+
3248
+ ## 16.3.24 (2018-10-09)
3249
+
3250
+ ### Chart
3251
+
3252
+ #### Bug Fixes
3253
+
3254
+ - Data label template now working properly in angular.
3255
+
3256
+ ## 16.3.22 (2018-09-25)
3257
+
3258
+ ### Chart
3259
+
3260
+ #### Bug Fixes
3261
+
3262
+ - PDF export is now working properly in high resolution.
3263
+
3264
+ ## 16.3.17 (2018-09-12)
3265
+
3266
+ ### Chart
3267
+
3268
+ #### Bug Fixes
3269
+
3270
+ - Chart now working properly in IE11 after legend click.
3271
+
3272
+ #### New Features
3273
+
3274
+ - The Pareto series type has been added to the chart.
3275
+ - Support has been added to the segmented, dashed, and recurrence striplines.
3276
+ - Support has been added to subtitle of the chart.
3277
+ - Support has been provided to trim the axis label.
3278
+ - Animation effect has been added to the chart after legend click.
3279
+ - The date-time label format has been improved.
3280
+
3281
+ ### Accumulation chart
3282
+
3283
+ #### Bug Fixes
3284
+
3285
+ - Now, opacity is working properly for the series.
3286
+
3287
+ #### New Features
3288
+
3289
+ - Animation effect has been added to the accumulation chart after legend click.
3290
+ - Support has been provided for broken slice to the grouped points.
3291
+
3292
+ ## 16.2.49 (2018-08-21)
3293
+
3294
+ ### Chart
3295
+
3296
+ #### Bug Fixes
3297
+
3298
+ - Changing label color is now working properly in `axisLabelRender` event.
3299
+
3300
+ ## 16.2.48 (2018-08-14)
3301
+
3302
+ ### Chart
3303
+
3304
+ #### New Features
3305
+
3306
+ - Added font argument in `textRender` event to change the font style for datalabel text.
3307
+
3308
+ ## 16.2.47 (2018-08-07)
3309
+
3310
+ ### Chart
3311
+
3312
+ #### Bug Fixes
3313
+
3314
+ - Removed chartmeasuretext element from the DOM.
3315
+ - Outliers in Box and Whisker series is not rendering on mouse over, when we setting the marker
3316
+ visibility to false.
3317
+
3318
+ ## 16.2.46 (2018-07-30)
3319
+
3320
+ ### Chart
3321
+
3322
+ #### New Features
3323
+
3324
+ - Added tooltipMappingName API for binding text to tooltip from dataSource.
3325
+ - Added public property to show total pages enabled in legend pagination.
3326
+
3327
+ ## 16.2.45 (2018-07-17)
3328
+
3329
+ ### Chart
3330
+
3331
+ #### Bug Fixes
3332
+
3333
+ - Axis Label is now rendering properly on rotating, without trimming.
3334
+ - DashArray is now working properly for connector line.
3335
+
3336
+ #### New Features
3337
+
3338
+ - Added common API for binding dataSource for all series.
3339
+
3340
+ ## 16.2.44 (2018-07-10)
3341
+
3342
+ ### Chart
3343
+
3344
+ #### Bug Fixes
3345
+
3346
+ - Now column series is rendering properly with single data in datetime axis.
3347
+
3348
+ ## 16.2.41 (2018-06-25)
3349
+
3350
+ ### Chart
3351
+
3352
+ #### Breaking Changes
3353
+
3354
+ - Newly Added Range Navigator component in charts package requires Navigations and Calendars dependency, so its mandatory to include the `ej2-navigations.umd.min.js` and `ej2-calendars.umd.min.js` in system.js configuration if you are using system.js module loader.
3355
+ - SVG tooltip has been moved as a separate package, so the charts require SVG-base dependency to show the tooltip. so its mandatory to include the `ej2-svg-base.umd.min.js` in system.js configuration if you are using system.js module loader.
3356
+
3357
+ #### Bug Fixes
3358
+
3359
+ - Now, tooltip is working properly when the container for chart is initialized without ID.
3360
+ - The performance issue with loading 800 series in chart has been fixed.
3361
+ - Loaded event is now triggering after legend click.
3362
+
3363
+ - Now, tooltip is working properly when the container for chart is initialized without ID.
3364
+ - The performance issue with loading 800 series in chart has been fixed.
3365
+ - Mean value for Box and Whisker is now rendering properly with multiple series.
3366
+
3367
+ #### New Features
3368
+
3369
+ - Histogram series type has been added to chart.
3370
+ - Scrollbar feature has been added to zoom and pan the chart.
3371
+
3372
+ ### Accumulation Chart
3373
+
3374
+ #### Breaking Changes
3375
+
3376
+ - Newly Added Range Navigator component in charts package requires Navigations and Calendars dependency, so its mandatory to include the `ej2-navigations.umd.min.js` and `ej2-calendars.umd.min.js` in system.js configuration if you are using system.js module loader.
3377
+ - SVG tooltip has been moved as a separate package, so the charts require SVG-base dependency to show the tooltip. so its mandatory to include the `ej2-svg-base.umd.min.js` in system.js configuration if you are using system.js module loader.
3378
+
3379
+ #### New Features
3380
+
3381
+ - Support has been provided to group the pie slice based on count.
3382
+
3383
+ ### RangeNavigator
3384
+
3385
+ The range navigator provides an intuitive interface for selecting a smaller range from a larger collection. It is commonly used in financial dashboards to filter a date range for which the data needs to be visualized. This control easily combines with other controls such as Chart, Data Grid, etc., to create rich and powerful dashboards.
3386
+
3387
+ - **Data Binding** - Binds the data with local and remote data source.
3388
+ - **Chart** - To represent the data in RangeNavigator and its supports line, step line and area type series.
3389
+ - **Slider** - To handle the selected data in RangeNavigator.
3390
+ - **Data Types** - Supports three different types of data, namely Numerical, Datetime, and Logarithmic.
3391
+ - **Animation** - Chart series and slider will be animated when rendering and changing the selected data.
3392
+ - **Period Selector** - Supports period selector to select data based on predefined periods.
3393
+ - **Light Weight** - Supports light weight RN to navigate through the data based on range.
3394
+ - **Tooltip** - Supports tooltip for the selected data.
3395
+ - **Export** - Supports to print the range navigator directly from the browser and exports the range navigator in both JPEG and PNG format.
3396
+
3397
+ ### Sparkline
3398
+
3399
+ Sparklines are easy to interpret and also it conveys much more information to the user by visualizing the data in a small amount of space.
3400
+
3401
+ - **Types** - Sparklines had five type of series. Line, Area, Column and WinLoss and Pie.
3402
+ - **Marker** - Sparklines support the marker feature.
3403
+ - **DataLabel** - Sparklines support the datalabel feature. It uses to identify the x and y value for the current point.
3404
+ - **Range Band** - Sparklines support the rangeband feature. It used to denote the certain range sparkline points.
3405
+ - **Tooltip** - Sparklines support the tooltip feature. It used to interact with points to get more about current point.
3406
+
3407
+ ### Smith Chart
3408
+
3409
+ Smith chart is one of the most useful data visualization tools for high frequency circuit applications. It contains two sets of circles to plot the parameters of transmission lines.
3410
+
3411
+ - **Types** - Smithchart had two type of rendering. Impedance and Admittance.
3412
+ - **Marker** - Smithchart supports the marker feature. It used to identify point position.
3413
+ - **Datalabel** - Smithchart supports the datalabel feature. It used to identify point values.
3414
+ - **Legend** - Smithchart supports the legend feature. It used to denote each series names.
3415
+ - **Tooltip** - Smithchart supports the tooltip feature. It used to get point values on user interaction like mouse and touch actions.
3416
+ - **Print and Export** - Smithchart supports printing and exporting as different file types.
3417
+
3418
+ Smith chart is one of the most useful data visualization tools for high frequency circuit applications. It contains two sets of circles to plot the parameters of transmission lines.
3419
+
3420
+ - **Types** - Smithchart had two type of rendering. Impedance and Admittance.
3421
+ - **Marker** - Smithchart supports the marker feature. It used to identify point position.
3422
+ - **Datalabel** - Smithchart supports the datalabel feature. It used to identify point values.
3423
+ - **Legend** - Smithchart supports the legend feature. It used to denote each series names.
3424
+ - **Tooltip** - Smithchart supports the tooltip feature. It used to get point values on user interaction like mouse and touch actions.
3425
+ - **Print and Export** - Smithchart supports printing and exporting as different file types.## 16.1.48 (2018-06-13)
3426
+
3427
+ ### Chart
3428
+
3429
+ #### Bug Fixes
3430
+
3431
+ - Mean value for Box and Whisker is now rendering properly with multiple series.
3432
+
3433
+ ## 16.1.40 (2018-05-08)
3434
+
3435
+ ### Chart
3436
+
3437
+ #### Bug Fixes
3438
+
3439
+ - Column width is now working properly, when enabling the `enableSideBySidePlacement` property.
3440
+
3441
+ ## 16.1.37 (2018-04-24)
3442
+
3443
+ ### Common
3444
+
3445
+ #### Bug Fixes
3446
+
3447
+ - Performance related issue, when loading more number of chart in angular has been fixed.
3448
+
3449
+ ### Accumulation Chart
3450
+
3451
+ #### Bug Fixes
3452
+
3453
+ - Skipped slice rendering when `y` value as 0.
3454
+
3455
+ ## 16.1.35 (2018-04-17)
3456
+
3457
+ ### Common
3458
+
3459
+ #### Bug Fixes
3460
+
3461
+ - Adding `annotation` dynamically to the chart is now working.
3462
+
3463
+ ## 16.1.29 (2018-03-13)
3464
+
3465
+ ### Chart
3466
+
3467
+ #### Bug Fixes
3468
+
3469
+ - Issue in `removeSeries` has been fixed.
3470
+ - Zooming is now working properly, when enabling the panning through code.
3471
+
3472
+ ## 16.1.24 (2018-02-22)
3473
+
3474
+ ### Common
3475
+
3476
+ #### New Features
3477
+
3478
+ - Added support for SVG and PDF export.
3479
+
3480
+ ### Chart
3481
+
3482
+ #### New Features
3483
+
3484
+ - Multicolored line type and area type series have been added to chart.
3485
+ - A new date-time category axis has been added.
3486
+ - Spline area series type has been added to chart.
3487
+ - Support has been provided to customize axis labels in multiple levels.
3488
+ - Support has been provided to wrap the chart title.
3489
+ - Support has been provided to sort data points in either ascending or descending order.
3490
+ - Supports to move the axis labels and ticks inside the chart area.
3491
+ - Axis crossing feature has been added to chart.
3492
+
3493
+ ## 15.4.27-preview (2018-01-30)
3494
+
3495
+ ### Chart
3496
+
3497
+ #### Bug Fixes
3498
+
3499
+ - Vertical chart for step area is not working fixed.
3500
+ - Stacking Area in polar and radar not proper is fixed.
3501
+ - MACD indicators not working properly in angular is fixed.
3502
+ - Marker explode not proper on image type is fixed.
3503
+ - Datalabel template for stacking 100 is now working properly.
3504
+ - Pinch zooming is now working properly when zoom factor and position is provided.
3505
+ - Binding complex datasource to chart series is now working properly.
3506
+
3507
+ ## 15.4.23-preview (2017-12-27)
3508
+
3509
+ ### Common
3510
+
3511
+ #### New Features
3512
+
3513
+ - Added typing file for ES5 global scripts (dist/global/index.d.ts)
3514
+
3515
+ #### Breaking Changes
3516
+
3517
+ - Modified the module bundle file name for ES6 bundling
3518
+
3519
+ ## 15.4.22-preview (2017-12-14)
3520
+
3521
+ ### Common
3522
+
3523
+ #### New Features
3524
+
3525
+ - Upgraded TypeScript version to 2.6.2
3526
+
3527
+ ## 15.4.17-preview (2017-11-13)
3528
+
3529
+ ### Chart
3530
+
3531
+ Chart component is used to visualize the data with user interactivity and provides customization
3532
+ options to configure the data visually. All chart elements are rendered by using Scalable Vector
3533
+ Graphics (SVG).
3534
+
3535
+ - **Series** - Chart can plot over 28 chart types that are ranging from line charts to specialized financial charts
3536
+ - **Data Binding** - Binds the data with local and remote data source.
3537
+ - **Data Labels and Markers** - Supports data label and marker to annotate and enhance a data.
3538
+ - **Error Bar** - Supports error bar to plot possible errors in data points.
3539
+ - **Axis Types** - Supports four different types of axes, namely Numerical, Categorical, Datetime, and Logarithmic.
3540
+ - **Axis Feature** - Supports multiple axes, inverted axis, multiple panes, opposed position,stripline, and smart labels.
3541
+ - **Legend** - Supports legend to provide additional information about a series with paging and customization options.
3542
+ - **Technical Indicators** - Support for RSI, Momentum, Bollinger band, accumulation distribution,EMA, SMA, stochastic, ATR, MACD, and TMA indicators.
3543
+ - **Trendlines** - Supports linear, exponential, logarithmic, power, polynomial, and moving average trendlines.
3544
+ - **Animation** - Chart series will be animated when rendering and refreshing the chart widget.
3545
+ - **User Interaction** - Supports interactive features that are zooming, panning, crosshair, trackball, tooltip, and data point selection.
3546
+ - **Annotation** - Supports annotation to mark a specific area in chart.
3547
+ - **Export** - Supports to print the chart directly from the browser and exports the chart in both JPEG and PNG format.