Stacked Bubble 2
Info - How to setup Vizzu
In HTML
, create a placeholder element that will contain the rendered
chart.
| <html> |
| <body> |
| <div id="myVizzu"> |
| </div> |
| </body> |
| </html> |
In JavaScript
, initialize and configure the chart:
| import Vizzu from 'https://cdn.jsdelivr.net/npm/vizzu@0.7/dist/vizzu.min.js' |
| import { |
| data_4 |
| } from 'https://lib.vizzuhq.com/0.7/assets/data/chart_types_eu.js' |
| |
| let chart = new Vizzu('myVizzu') |
| |
| chart.initializing |
| |
| chart.animate({ |
| data_4 |
| }) |
- move the Size channel's Dimension to the X-axis
- move the Measure to the Y-axis
- duplicate the Dimension in the Color channel onto the Y-axis
- null the Label channel
- switch the Geometry from Circle to Rectangle
| chart.animate({ |
| config: { |
| "channels": { |
| "color": "Country", |
| "size": [ |
| "Year", |
| "Value 2 (+)" |
| ], |
| "label": "Value 2 (+)" |
| }, |
| "geometry": "circle" |
| } |
| }); |
| |
| chart.animate({ |
| config: { |
| "channels": { |
| "x": "Year", |
| "y": [ |
| "Country", |
| "Value 2 (+)" |
| ], |
| "size": null, |
| "label": null |
| }, |
| "geometry": "rectangle" |
| } |
| }); |
| |
| chart.feature('tooltip', true); |