可以隐藏系列,但在dygraphs的图例中显示值?

时间:2014-01-11 22:55:21

标签: charts dygraphs

我想隐藏dygraphs图表中的一个系列,但在图例中显示值。这可能吗?

2 个答案:

答案 0 :(得分:2)

看起来我可以做一个解决方法:

series: {
  'legendOnly1': {
    strokeWidth: 0
  },
  'legendOnly2': {
    strokeWidth: 0
  }
}

如果有更好或更正式的方法来实现这一点,那就太酷了。

答案 1 :(得分:1)

试试这个

series: {
        'S1' : {
            axis: 'y1'
             },

    'S2': {
                 axis: 'y2'
         },
        },                                                                    
visibility: [ true, false],