我正在使用Google Charts API在我正在开发的一个the应用程序中包含各种图形。我正在使用javascript图表工具(而不是图像图表工具),我想知道是否可以在图表上使用透明背景(例如折线图、饼图等)?
发布于 2011-10-19 13:19:19
发布于 2013-10-31 15:59:15
为谷歌图表设置透明背景:
// Set chart options
var options = {'title':'Chart Title',
'width':600,
'height':300,
'backgroundColor': 'transparent',
'is3D':true
};
发布于 2013-01-11 23:05:25
backgroundColor:"00000000“对我来说很有效。
https://stackoverflow.com/questions/7413508
复制