1

我想知道是否有人会知道在 jQuery 中是否有可能有一个按钮来显示/隐藏显示在 highcharts 股票图表上的标志,例如我的 jsfiddle 中的那个http://jsfiddle.net/hcharge/G7rsh/6 /

我假设你会使用这样的东西

$('.on').click(function() {
        $('flags').toggle('1000', function() {
         });
    });

我只是不确定您将如何引用图表中的标志?我还希望按钮在单击时切换类。任何帮助都会很棒。

谢谢

4

2 回答 2

4

您可以在 Highcharts 中调用 Series.show() 和 Series.hide() 方法:http: //jsfiddle.net/G7rsh/7/

于 2012-07-04T09:42:55.597 回答
2

Here is a poc fiddle

Torstein answered before me but that's not fair, he created the lib :-D

BTW, his solution is better than mine

于 2012-07-04T09:59:04.937 回答