2
我已經試圖重新從它所產生的輸出的選擇(並且放入文本框稱爲#spectrum_selection)flot - 是否可以重新創建一個選擇?
$('#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 }
}));
}
});
我使用分割(「」)打破x軸範圍。但是,我找不到從範圍重新創建選擇的方法。是否有隱藏的功能可以允許這樣做?
非常感謝您的幫助=)
耶!找到它:$('#spectrum')。setSelection({xaxis:{from:0,to:3}}); – adamj 2013-02-25 00:08:42