绘制图表,打开或关闭“点”选项

时间:2013-11-25 12:48:05

标签: javascript jquery flot

我使用flotcharts.org在我的网站上显示一些数据,我想通过点击,复选框或按钮打开或关闭选项点(真或假)。以下是点开启时的示例(true):http://www.flotcharts.org/flot/examples/basic-options/index.html

1 个答案:

答案 0 :(得分:2)

这是我可以编写代码的最简单的例子:

var plot = null;
drawChart = function(showPoints) {
    plot = $.plot($("#placeholder"), [ d1, d2, d3 ], {
               series: {
                    lines: { show: true },
                    points: { show: showPoints }
               }
            });
}

drawChart(false);

$('#button').click(function(){
   drawChart(!plot.getOptions().series.points.show );        
});

Fiddle here