Skip to content

Releases: vizzuhq/vizzu-lib

v0.4.5

11 Mar 17:03
Compare
Choose a tag to compare

Fixed

  • Fixed canvas border clean on transparent background.

Added

  • URL of Wasm binary can be overriden using Vizzu.options({ wasmUrl }).

Full Changelog: v0.4.4...v0.4.5

v0.4.4

10 Mar 16:34
Compare
Choose a tag to compare

Fixed

  • Error messages are easier to understand when methods are called on the uninitialized library.
  • API throws exceptions instead of logging on to the console.

Added

  • Mouse event data now contain relative coordinates of the cursor within the plot area. The coordinates go from 0 to 1, where 0,0 is the bottom left corner, and 1,1 is the top right corner of the plot.
  • Mouse wheel event introduced.

Full Changelog: v0.4.3...v0.4.4

v0.4.3

31 Jan 14:02
Compare
Choose a tag to compare

Fixed

  • When the interlacing color was set to transparent, the axis title was not shown.

Added

  • 3-digit hex code CSS color format is now supported.
  • Vizzu logo links to the Vizzu lib website.

Full Changelog: v0.4.2...v0.4.3

v0.4.2

22 Dec 16:20
Compare
Choose a tag to compare

Fixed

  • Fixed error on chart.animate({ style: null })

Full Changelog: v0.4.0...v0.4.2

v0.4.1

22 Dec 14:22
Compare
Choose a tag to compare

Deprecated

v0.4.0

21 Dec 16:07
Compare
Choose a tag to compare

Fixed

  • Marker label values are interpolated only if the measure is not changed on the label channel.

Added

  • animate() method returns an animation control object.
    Using this result object you can play, pause, stop, seek or reverse the animations. This makes animation control easier and more logical. Also, it enables the chaining of animation control methods. Example: https://lib.vizzuhq.com/0.4/#chapter-0.15

  • CSS properties can be used to style vizzu charts
    E.g. --vizzu-plot-marker-colorPalette: #9355e8FF #123456FF #BDAF10FF; instead of {style: {plot: {marker: {colorPalette: '#9355e8FF #123456FF #BDAF10FF'}}}
    This comes in handy if you have multiple charts on the same page, if you need to apply a design scheme for charts on different pages or if you just want to give your vizzu charts a different look for users using dark mode in their browser.
    Please note: If you use CSS, don't change the set parameters later on via the style property.

  • maxFractionDigits style parameter added to labels showing numbers.
    This sets the maximum number of fractional digits used when showing numbers on the chart. The default value is 3.

  • Package size reduction.
    From 602 KB to 426 KB

Known bugs

  • animate({ style: null }) fails. Fixed in 0.4.1.

Full Changelog: v0.3.3...v0.4.0

v0.3.3

18 Oct 07:59
Compare
Choose a tag to compare

Fixed

  • NPM package and d.ts file fixed for TypeScript projects.

Full Changelog: v0.3.2...v0.3.3

v0.3.2

16 Oct 13:09
Compare
Choose a tag to compare

Fixed

  • Color range legend labels show min/max of color range instead of data min/max.
  • Logo bottom padding fixed.

Added

  • Parts of markers outside of plot area are getting clipped. This behaviour can be controlled by style.plot.overflow parameter.
  • channel title parameter has "auto" value by default. "null" will switch the title off.

Full Changelog: v0.3.1...v0.3.2

v0.3.1

25 Sep 10:21
Compare
Choose a tag to compare

Fixed

  • Data cube input recognition runtime error fixed.

Full Changelog: v0.3.0...v0.3.1

v0.3.0

23 Sep 18:46
Compare
Choose a tag to compare

Added

  • First public release