1 | # Changelog
|
2 |
|
3 | ## [0.5.1] - 2022-07-14
|
4 |
|
5 | ### Fixed
|
6 |
|
7 | - Typescript declaration files fixed.
|
8 |
|
9 | ## [0.5.0] - 2022-07-13
|
10 |
|
11 | ### Fixed
|
12 |
|
13 | - Allow more than 5 colors in TS color palette and gradient declaration.
|
14 | The format won`t be checked in compile time, only in runtime.
|
15 | - animation-begin event called after actual animation is set up.
|
16 | - Animation control methods take effect immediately.
|
17 | - Wrong orientation after switching from circle geometry fixed.
|
18 |
|
19 | ### Added
|
20 |
|
21 | - Presets introduced for specific chart types.
|
22 | - cancel() method added for animation causing the animation to reset back to
|
23 | the start position and rejecting the animation promise.
|
24 | - Data series can be reset with new values, previously any attempt to set
|
25 | series with existing name resulted in error.
|
26 | - Logging and rendering can be switched on/off through feature() method.
|
27 | - position animation parameter for setting starting position of the animation.
|
28 | - data property of the chart in JS API contains metadata about the data set.
|
29 |
|
30 | ## [0.4.8] - 2022-06-30
|
31 |
|
32 | ### Fixed
|
33 |
|
34 | - styles property of Vizzu class on JS API fixed (renamed to style).
|
35 |
|
36 | ## [0.4.7] - 2022-03-18
|
37 |
|
38 | ### Fixed
|
39 |
|
40 | - Runtime problem fixed for stacked charts.
|
41 |
|
42 | ## [0.4.6] - 2022-03-12
|
43 |
|
44 | ### Fixed
|
45 |
|
46 | - Fixed Vizzu.options() function signature in .d.ts file.
|
47 |
|
48 | ## [0.4.5] - 2022-03-11
|
49 |
|
50 | ### Fixed
|
51 |
|
52 | - Fixed canvas border clean on transparent background.
|
53 |
|
54 | ### Added
|
55 |
|
56 | - URL of Wasm binary can be overriden using `Vizzu.options({ wasmUrl })`.
|
57 |
|
58 | ## [0.4.4] - 2022-03-10
|
59 |
|
60 | ### Fixed
|
61 |
|
62 | - User friendly error when methods called on unitialized library.
|
63 | - API throws exception instead of console log.
|
64 |
|
65 | ### Added
|
66 |
|
67 | - Mouse event data contains mouse coordinates in plot coordinate system.
|
68 | - Mouse wheel event introduced.
|
69 |
|
70 | ## [0.4.3] - 2022-01-31
|
71 |
|
72 | ### Fixed
|
73 |
|
74 | - Transparent interlacing color prevented axis title draw - fixed.
|
75 |
|
76 | ### Added
|
77 |
|
78 | - 3 hex character CSS color format support.
|
79 | - Vizzu logo is a link to the lib's web page.
|
80 |
|
81 | ## [0.4.2] - 2021-12-22
|
82 |
|
83 | ### Fixed
|
84 |
|
85 | - Fixed error on chart.animate({ style: null })
|
86 |
|
87 | ## [0.4.1] - 2021-12-22 - deprecated
|
88 |
|
89 | ## [0.4.0] - 2021-12-21
|
90 |
|
91 | ### Fixed
|
92 |
|
93 | - Marker label fade-in/fade-out fixed, values are interpolated only if measure
|
94 | is not changed on label channel.
|
95 |
|
96 | ### Added
|
97 |
|
98 | - animate() method returns an animation control object,
|
99 | animation control methods are chainable.
|
100 | - CSS properties can be used to style vizzu charts
|
101 | E.g. `--vizzu-plot-marker-colorPalette: whatever` for `{style: {plot: {marker: {colorPalette: "whatever"}}}}`
|
102 | - `maxFractionDigits` style parameter added to labels showing numbers.
|
103 | - WASM build size reduction.
|
104 |
|
105 | ## [0.3.3] - 2021-10-17
|
106 |
|
107 | ### Fixed
|
108 |
|
109 | - NPM package and d.ts file fixed for TypeScript projects.
|
110 |
|
111 | ## [0.3.2] - 2021-10-15
|
112 |
|
113 | ### Fixed
|
114 |
|
115 | - Color range legend labels show min/max of color range instead of data min/max.
|
116 | - Logo bottom padding fixed.
|
117 |
|
118 | ### Added
|
119 |
|
120 | - Parts of markers outside of plot area are getting clipped. This behaviour can
|
121 | be controlled by style.plot.overflow parameter.
|
122 | - channel title parameter has "auto" value by default. "null" will switch the
|
123 | title off.
|
124 |
|
125 | ## [0.3.1] - 2021-09-24
|
126 |
|
127 | ### Fixed
|
128 |
|
129 | - Data cube input recognition runtime error fixed.
|
130 |
|
131 | ## [0.3.0] - 2021-09-23
|
132 |
|
133 | ### Added
|
134 |
|
135 | - First public release
|