更改Google饼图百分比文字颜色

时间:2014-01-30 14:37:49

标签: c# asp.net google-visualization

如何更改饼图百分比颜色 我想改变黑色的33.33% enter image description here

1 个答案:

答案 0 :(得分:7)

您可以使用选项pieSliceTextStyle进行更改。例如:

        pieSliceTextStyle: {
            color: 'black'
        }

注意:会改变所有切片的字体颜色。请参阅pie chart configuration options

您还可以使用带有属性slices的选项textStyle来为每个切片设置不同的颜色: textStyle - 覆盖此切片的全局pieSliceTextSlice。