我想隐藏dygraphs图表中的一个系列,但在图例中显示值。这可能吗?
答案 0 :(得分:2)
看起来我可以做一个解决方法:
series: {
'legendOnly1': {
strokeWidth: 0
},
'legendOnly2': {
strokeWidth: 0
}
}
如果有更好或更正式的方法来实现这一点,那就太酷了。
答案 1 :(得分:1)
试试这个
series: {
'S1' : {
axis: 'y1'
},
'S2': {
axis: 'y2'
},
},
visibility: [ true, false],