在谷歌饼图上将笔画宽度更改为2

时间:2018-04-30 14:32:58

标签: javascript html google-visualization pie-chart google-pie-chart

我试图用谷歌饼图创建一个图表,但是切片的笔划宽度要薄,我试图让它们更厚。

下面的代码是我正在使用的,但不幸的是它无法正常工作。

google.charts.load('current', {'packages':['corechart']});
google.charts.setOnLoadCallback(drawChart);

function drawChart() {
  var data = google.visualization.arrayToDataTable([
  ['Sitio', 'Dinheiro'],
  ['Restaurantes', 8],
  ['Bares', 2], 
  ['Discotecas', 7]
]);

  // Optional; add a title and set the width and height of the chart
    var options = {

        width: '92%',
        height: 550,
        color: 'white',

        backgroundColor: '#232220',

        chartArea: { top: '3%', width: '70%', height: '80%' },
        slice: {
            backgroundColor: {strokeWidth:2}
        },
        legend: { position: 'bottom', textStyle: { color: 'white', fontSize: 16 } },
        
        pieSliceBorderColor : "tranparent"
        };

  // Display the chart inside the <div> element with id="piechart"
  var chart = new google.visualization.PieChart(document.getElementById('piechart'));
  chart.draw(data, options);
}
    <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<div id="piechart" style="height: 370px; width: 92%;"></div> 

已经四处寻找,但它总是关于颜色,而不是切片宽度的宽度,所以我无法改变它

1 个答案:

答案 0 :(得分:0)

查看谷歌饼图的配置选项,没有选项来设置切片的行程宽度。

但是,您可以使用css:

设置笔触宽度
    <style type="text/css">
        path {
          stroke-width: 2;
        }
    </style>