【问题标题】:Google Pie Chart: How can I remove the white line between slices?谷歌饼图:如何删除切片之间的白线?
【发布时间】:2014-03-06 14:57:04
【问题描述】:

类似于this question,但适用于 Google 饼图:

如何删除 Google 饼图上切片之间的白线:

在上图中,我想删除绿色箭头突出显示的空白。

【问题讨论】:

标签: javascript charts google-visualization pie-chart


【解决方案1】:

使用配置选项pieSliceBorderColor 和值transparent (see documentation here)。

  new google.visualization.PieChart(document.getElementById('visualization')).
  draw(data, {
                pieSliceBorderColor : "transparent", // Add this line
                title : "So, how was your day?"
              }
      );

之前:

之后:

摆弄它:http://jsfiddle.net/PWc43/

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2022-01-18
    相关资源
    最近更新 更多