猿问

谷歌饼图更改文本对齐方式

这是我的报告,

如何一一更改我的底部值而不是滚动。


 var options = {

                legend:'bottom',

                is3D: true

                }


森栏
浏览 162回答 1
1回答

汪汪一只猫

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

相关分类

JavaScript
我要回答