Orientation, split & polar
Now that you are familiar with the basic logic and operation of Vizzu
, let's
dive in with some more advanced features that you can use to create animated
data stories and show the data from different perspectives.
Switching orientation means that you put a measure from one axis to the other to see the data from a different perspective. This is once again a state you should only use temporarily.
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.15/dist/vizzu.min.js'
import data from 'https://lib.vizzuhq.com/0.15/assets/data/music_data.js'
let chart = new Vizzu('myVizzu')
await chart.initializing
chart.animate({
data: data,
config: {
channels: {
y: {
set: ['Popularity', 'Kinds']
},
x: {
set: ['Genres']
},
color: {
set: ['Kinds']
},
label: {
set: ['Popularity']
},
},
}
})
chart.animate({
config: {
channels: {
y: {
detach: ['Popularity']
},
x: {
attach: ['Popularity']
}
}
}
})
By turning the split parameter on, you can see stacked elements side-by-side, which enables the comparison of the components.
chart.animate({
config: {
split: true
}
})
Merging the components by turning the split parameter off.
chart.animate({
config: {
split: false
}
})
We aggregate the data by removing the Genres
dimension from the x-axis.
chart.animate({
config: {
channels: {
x: {
detach: ['Genres']
}
}
}
})
Switching from cartesian coordinates to polar. When doing so, it is worth
setting the axis range on the axis with the dimension so that the viewers can
easily compare the values shown. If you want to return to the default cartesian
coordinates, just set the coordSystem
parameter to 'cartesian'
.
Info
The range of the x-axis is automatically set to max:133%
as this is the
standard way to show radial charts.
chart.animate({
config: {
channels: {
y: {
range: {
min: '-30%'
}
}
},
coordSystem: 'polar'
}
})