const option = {
series: [{
type: 'wordCloud',
// Shape of the word cloud
shape: 'circle',
// Keep words inside shape
keepAspect: false,
// Positioning
left: 'center',
top: 'center',
width: '70%',
height: '80%',
// Size range of words
sizeRange: [12, 60],
// Rotation settings
rotationRange: [-90, 90],
rotationStep: 45,
// Layout grid size
gridSize: 8,
// Whether to draw out of bound
drawOutOfBound: false,
// Layout animation
layoutAnimation: true,
// Text style
textStyle: {
fontFamily: 'sans-serif',
fontWeight: 'bold',
color: function () {
return 'rgb(' + [
Math.round(Math.random() * 160),
Math.round(Math.random() * 160),
Math.round(Math.random() * 160)
].join(',') + ')';
}
},
// Emphasis style
emphasis: {
focus: 'self',
textStyle: {
textShadowBlur: 10,
textShadowColor: '#333'
}
},
// Data
data: [
{ name: 'Word1', value: 1000 },
{ name: 'Word2', value: 900 },
// ...
]
}]
};