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