我想在图的底部添加一个标题以解释我的图。我实现了,但是离我的图表还很远。我尝试设置填充和边距来实现它,但是我没有找到如何设置它
我使用this website!测试
<div id="app" align="center">
<ve-liquidfill :data="chartData" :settings="chartSettings"></ve-liquidfill>
<h1>dad<h1/>
</div>
new Vue({
el: '#app',
data () {
this.chartSettings = {
seriesMap: {
'上海': {
shape: 'roundRect'
}
}
}
return {
chartData: {
columns: ['city', 'percent'],
rows: [{
city: '上海',
percent: 0.6
}]
}
}
}
})