我正在使用谷歌图表中的区域图表,我想知道是否有办法为每一行设置不透明度?
见这个例子:
https://developers.google.com/chart/interactive/docs/gallery/areachart?hl=nl#SimpleExample
如果我在参数数组中使用areaOpacity: 0.0
,它会隐藏线条下方的所有颜色,但我希望红线(销售)的不透明度为0.0(应隐藏它)。另一行应该是1.0,有没有办法让它完成呢?
我一直在寻找这一段时间,我感觉我正在寻找错误的关键词。任何帮助表示赞赏!
答案 0 :(得分:4)
您可以通过series.<series index>.areaOpacity
选项按数据系列设置区域不透明度:
series: {
0: {
// set the area opacity of the first data series to 0
areaOpacity: 0
}
}