Skip to content

Commit 4c7f787

Browse files
committed
Adding missed changelog entries.
1 parent 5c56fff commit 4c7f787

File tree

1 file changed

+28
-24
lines changed

1 file changed

+28
-24
lines changed

CHANGELOG.md

Lines changed: 28 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,20 @@
66

77
- Unregistering was not working correctly when the same callback was added for
88
multiple events. (#75)
9-
- The plot.marker.label.color setting now works in a way that modifies the
10-
previously calculated color based on the transparency channel of the color
9+
- The plot.marker.label.color setting now works in a way that modifies the
10+
previously calculated color based on the transparency channel of the color
1111
setting. (#144)
12+
- When rapidly clicking multiple times while the selection animation has not
13+
finished, the library is aborted due to an exception.
14+
- At times, the chosen marker would disappear from the selections during
15+
rapid mouse actions, leading to an exception being triggered.
1216

1317
## [0.8.0] - 2023-07-12
1418

1519
### Fixed
1620

1721
- Missing Area/line marker rewireing (on orientation change,
18-
base dimension change) added.
22+
base dimension change) added.
1923
- Fixed line drawing for line segments partially outside of the plot.
2024
- Fixed label position for marker in polar origo.
2125
- Axis labels won't shift if their 'side' style changed but
@@ -24,14 +28,14 @@
2428
style is also changing.
2529
- Axis titles fade-in/out when changing position instead of traveling through
2630
the chart.
27-
- Axis titles are rotating with the axis during cartesian/polar coordinate
31+
- Axis titles are rotating with the axis during cartesian/polar coordinate
2832
system change.
2933
- Fixed unintentional separate animation steps for specific dimension change
3034
animations.
3135
- Fixed JS exception mishandling as C++ exception when thrown from webassembly.
3236
- Fixed showing big numbers greater than 18446744073709551615.
3337
- Fixed mouse events/selection on line-segment markers.
34-
- Vertical polar area chart tangential borders "follow" the coordinate system
38+
- Vertical polar area chart tangential borders "follow" the coordinate system
3539
instead of being forced to remain straight.
3640

3741
### Added
@@ -42,7 +46,7 @@
4246
on axises.
4347
- 'plot.areaColor' style parameter added.
4448
- Marker click works mid-animation.
45-
- Various aggregator functions for channels beside previous sole summing:
49+
- Various aggregator functions for channels beside previous sole summing:
4650
'min()', 'max()', 'mean()', 'sum()', 'count()', 'distinct()'.
4751
- New, fast bubble chart algorithm.
4852
- Data records can be specified via objects beside arrays.
@@ -56,7 +60,7 @@
5660

5761
- Animation finishes also it begining reached at reverse play.
5862
- Fixed garbage collection of stored charts and animations.
59-
- If dimension data series re-added, previously existed categories and order
63+
- If dimension data series re-added, previously existed categories and order
6064
will remains.
6165

6266
### Added
@@ -77,29 +81,29 @@
7781
- Axis line, labels, ticks, interlacing and guide can be set to auto.
7882
- Simple fade in case of empty target chart
7983
- Fixed length serialization in style() for % unit.
80-
- Fixed missing rendering update when duration is 0 in first animate call.
84+
- Fixed missing rendering update when duration is 0 in first animate call.
8185
- Fixed error on multiple calls of the JS chart's 'data' property.
8286
- Fixed disapearing title from empty charts.
8387
- Fixed animation cancelling, did not trigger promise rejection.
84-
- Fixed chart state reset on animation cancel. Used the target chart's config
88+
- Fixed chart state reset on animation cancel. Used the target chart's config
8589
further on despite the cancellation.
8690
- Fixed the type definition of Snapshot in the d.ts file.
8791

8892
### Added
8993

90-
- 'regroupStrategy' animation option introduced to control the algorithm for
91-
transitioning between charts having the data grouped differently on them
94+
- 'regroupStrategy' animation option introduced to control the algorithm for
95+
transitioning between charts having the data grouped differently on them
9296
(containing a different set of categorical dataseries).
9397
- Multi keyframe animation support (one animation through multiple chart).
94-
- 'style' property returns the style object only filled with the user-set
98+
- 'style' property returns the style object only filled with the user-set
9599
values, all the values (returned by this property till 0.6.x) can be get
96100
using the new 'getComputedStyle()' method.
97101
- detach() method added to JS API for enabling proper garbage collection.
98102
- Actual animation can be stored for later reuse through Anim.Control.store()
99103
method.
100104
- animate() returned promise is not an animation controller object from now on,
101105
but has a member promise called 'activated', which resolves to the controller.
102-
- New style parameter, 'numberScale' has been introduced for setting the scale
106+
- New style parameter, 'numberScale' has been introduced for setting the scale
103107
system for big numbers e.g.: K M B T or k m bn tn.
104108
- Improved default options for animations: marker geometry, marker fade-in,
105109
marker position, coordinate system, title.
@@ -112,7 +116,7 @@
112116

113117
### Added
114118

115-
- Transition (instead of fade) between chart showing different categorical
119+
- Transition (instead of fade) between chart showing different categorical
116120
dataseries.
117121

118122
## [0.6.0] - 2022-10-18
@@ -127,7 +131,7 @@
127131
- Fixed animation section wise easing settings.
128132
- Area/line marker label fade-in/out fixed.
129133
- Rare missing marker on polar scatterplot fixed.
130-
- Markers drawn even if data point is outside of the plot,
134+
- Markers drawn even if data point is outside of the plot,
131135
if the marker intersects it.
132136
- Fixed unwanted partial fade of non-changing legend when switched
133137
between auto and explicit value.
@@ -136,7 +140,7 @@
136140

137141
### Added
138142

139-
- Axis line, labels, ticks, interlacing and guide can be switched on/off
143+
- Axis line, labels, ticks, interlacing and guide can be switched on/off
140144
via channel config parameters.
141145
- Padding defaults changed.
142146
- Marker labels added for some presets.
@@ -146,23 +150,23 @@
146150
### Fixed
147151

148152
- Marker guides switch off on polar scatterplots for performance purposes.
149-
- Fixed unintentional size change of circle markers during polar-cartesian
153+
- Fixed unintentional size change of circle markers during polar-cartesian
150154
coordinate system change and animation from/to treemap.
151155
- Fixed line width animation when geometry is changing.
152156
- Removed unwanted move around of marker linking first and last data point in
153-
polar coordinates during animation.
157+
polar coordinates during animation.
154158

155159
## [0.5.1] - 2022-07-14
156160

157161
### Fixed
158162

159-
- Typescript declaration files fixed.
163+
- Typescript declaration files fixed.
160164

161165
## [0.5.0] - 2022-07-13
162166

163167
### Fixed
164168

165-
- Allow more than 5 colors in TS color palette and gradient declaration.
169+
- Allow more than 5 colors in TS color palette and gradient declaration.
166170
The format won`t be checked in compile time, only in runtime.
167171
- animation-begin event called after actual animation is set up.
168172
- Animation control methods take effect immediately.
@@ -171,7 +175,7 @@
171175
### Added
172176

173177
- Presets introduced for specific chart types.
174-
- cancel() method added for animation causing the animation to reset back to
178+
- cancel() method added for animation causing the animation to reset back to
175179
the start position and rejecting the animation promise.
176180
- Data series can be reset with new values, previously any attempt to set
177181
series with existing name resulted in error.
@@ -242,12 +246,12 @@
242246

243247
### Fixed
244248

245-
- Marker label fade-in/fade-out fixed, values are interpolated only if measure
249+
- Marker label fade-in/fade-out fixed, values are interpolated only if measure
246250
is not changed on label channel.
247251

248252
### Added
249253

250-
- animate() method returns an animation control object,
254+
- animate() method returns an animation control object,
251255
animation control methods are chainable.
252256
- CSS properties can be used to style vizzu charts
253257
E.g. `--vizzu-plot-marker-colorPalette: whatever` for `{style: {plot: {marker: {colorPalette: "whatever"}}}}`
@@ -269,7 +273,7 @@
269273

270274
### Added
271275

272-
- Parts of markers outside of plot area are getting clipped. This behaviour can
276+
- Parts of markers outside of plot area are getting clipped. This behaviour can
273277
be controlled by style.plot.overflow parameter.
274278
- channel title parameter has "auto" value by default. "null" will switch the
275279
title off.

0 commit comments

Comments
 (0)