GitHub - vizzuhq/vizzu-lib: Library for animated data visualizations and data stories. (original) (raw)

Vizzu

Vizzu - Library for animated data visualizations and data stories.

Documentation · Examples · Code reference · Repository · Blog

npm version install size Tweet

Vizzu

About The Project

Vizzu is a free, open-source Javascript/C++ library utilizing a generic dataviz engine that generates many types of charts and seamlessly animates between them. It can be used to create static charts but more importantly, it is designed for building animated data stories and interactive explorers as Vizzu enables showing different perspectives of the data that the viewers can easily follow due to the animation.

Main features:

Installation

Install via npm:

Or use it from CDN:

Usage

Create a placeholder element that will contain the rendered chart:

Create a simple bar chart:

import Vizzu from 'https://cdn.jsdelivr.net/npm/vizzu@latest/dist/vizzu.min.js';

let data = { series: [{ name: 'Foo', values: ['Alice', 'Bob', 'Ted'] }, { name: 'Bar', values: [15, 32, 12] }, { name: 'Baz', values: [5, 3, 2] }] };

let chart = new Vizzu('myVizzu', { data });

chart.animate({ x: 'Foo', y: 'Bar' });

Then turn it into a scatter plot:

chart.animate({ color: 'Foo', x: 'Baz', geometry: 'circle' });

Try it!

Example chart

FAQ

You can find answers to the most frequently asked questions about using the library in our FAQ.

Projects

List of external projects (extensions, bindings, templates, etc) for Vizzu:Projects.

Roadmap

We have a comprehensive list of features we plan to implement, on ourRoadmap.

Contributing

We welcome contributions to the project, visit our contributingguide for further info.

Contact

License

Copyright © 2021-2024 Vizzu Inc.

Released under theApache 2.0 License.