1 回答
TA贡献1898条经验 获得超8个赞
为了让图例上有多行,
你必须使用图例位置 -->'top'
然后你可以增加数量 -->maxLines
legend: {
position: 'top',
maxLines: 3
},
从文档...
legend.maxLines- 图例中的最大行数。将此设置为大于一的数字以向图例添加线条。此选项仅在legend.positionis 时有效'top'。
请参阅以下工作片段...
google.charts.load('current', {
packages: ['corechart', 'table']
}).then(function () {
var data = google.visualization.arrayToDataTable([
['category', 'value'],
['Category 1', 34],
['Category 2', 18.7],
['Category 3', 18.6],
['Category 4', 18.6],
['Category 5', 10]
]);
var pie = new google.visualization.PieChart(document.getElementById('chart-pie'));
pie.draw(data, {
legend: {
position: 'top',
maxLines: 3
},
height: 400,
is3D: true,
width: 400
});
});
<script src="https://www.gstatic.com/charts/loader.js"></script>
<div id="chart-pie"></div>
添加回答
举报