You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: includes/js/lib/amcharts/CHANGELOG.md
+38Lines changed: 38 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,44 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
5
5
Please note, that this project, while following numbering syntax, it DOES NOT
6
6
adhere to [Semantic Versioning](http://semver.org/spec/v2.0.0.html) rules.
7
7
8
+
## [4.7.10] - 2019-11-15
9
+
10
+
### Added
11
+
- Global method `am4core.system.softInvalidate(chart)` added. Call this method if you update data or config of a chart that is in hidden container, after revealing the container, so that labels and possibly other elements can correctly arrange themselves.
12
+
13
+
### Fixed
14
+
- JSON config `MapChart` was breaking on geodata parsing since last release (4.7.9).
15
+
- Sometimes `MapChart` used to zoom to a wrong position when using `zoomToMapObject()` method (happened if pan inert animation was not finished at the moment of the function call).
16
+
-`Container`'s "grid" layout was incorrectly positioning items if one of its children was disabled.
17
+
- Creating a standalone series object (without assigning it to a chart) was resultin in a JS error.
18
+
19
+
20
+
## [4.7.9] - 2019-11-14
21
+
22
+
### Added
23
+
- New `Sprite` property: `showTooltipOn`. Available options: `"hover"` (default), `"hit"`, and `"always"`.
24
+
-`ignoreZeroValues` added to `PercentSeries` (default: `false`). If set to `true` it will not show slices with zero values.
25
+
26
+
### Changed
27
+
-`Sprite` property `alwaysShowTooltip` is now being deprecated in favor of `showTooltipOn = "always"`.
28
+
- In `WordCloud` words connected with a dash without spaces will not be treated as a single word, e.g. "76-ers" is now a single word rather than two separate words "76" and "ers".
29
+
- JSON config based charts will now fail with a critical error if there's incorrect `type` specified for one of the objects.
30
+
31
+
### Fixed
32
+
- Initial chart responsive rules were sometimes not being applied.
33
+
- When `MapChart` was zoomed/panned, "always-on" tooltip were remaining in the same place.
34
+
- HTML labels with `maxWidth` and `wrap` set were not being sized correctly.
35
+
- Sides of `Column3D` were not being colored properly when `fill` was being set via `propertyFields` and string-based hex color codes were used in data.
36
+
- After click on chart with `XYCursor` that `behavior = "select*"` its `xRange` and `yRange` was not being reset and could show ranges from previous selection.
37
+
-`XYCursor` will now respect order of series when showing their tooltips if they share the same value.
38
+
- Tooltip position of rotated and/or scaled sprites was incorrect.
39
+
- Changing series of `XYChartScrollbar` was not working properly (old series could remain or new series were not appearing).
40
+
-`PictorialSeries`, and `PyramidSeries` were not working properly with slices with `<= 0` values.
41
+
- When removing data from a chart using `addData(data, removeCount)`, chart was rmeoving data items from series which had data set explicitly.
42
+
- Bullets on a `RadarChart` could be displayed in wrong positions when zooming/hiding series.
43
+
- When minimizing series they could animate to incorrect minimum values and adjust min/max values.
0 commit comments