我怎样才能去掉 google 图表中的笔划?

How can i get rid of the stroke in google charts?

我想去掉 google 图表中的中风 - 甜甜圈。

我试过这个:

'chartArea': {
                width:'80%',
                height:'80%',
                stroke:'black',
                strokeSize: 0
            },

我想得到如下效果: following :)

您可以像这样将边框颜色 属性 设置为透明。

new google.visualization.PieChart(document.getElementById('visualization')).
  draw(data, {
                pieSliceBorderColor : "transparent"

              }
      );