flot - 是否可以重新创建选择?

时间:2013-02-24 00:19:14

标签: javascript jquery flot

我一直在尝试从它生成的输出中重新创建一个选择(并放入一个名为#spectrum_selection的文本框中)

$('#spectrum').bind('plotselected', function(event, ranges) {
        $('#spectrum_selection').val(ranges.xaxis.from.toFixed(1) + ',' + ranges.xaxis.to.toFixed(1));

        if ($('#zoom').attr('checked'))
        {
            $.plot($('#spectrum'), data,
            $.extend(true, {}, options, {
                xaxis: { min: ranges.xaxis.from, max: ranges.xaxis.to }
            }));
        }
    });

我使用split(',')来打破x轴范围。但是,我找不到从范围重新创建选择的方法。是否有隐藏的功能可以允许这个?

非常感谢您的帮助=)

1 个答案:

答案 0 :(得分:2)

耶!发现它:$('#spectrum')。setSelection({xaxis:{from:0,to:3}});