2013-03-06 53 views

回答

1

你可以使用類似這樣的行中的傳說(由How may I sort a list alphabetically using jQuery?啓發)排序:

var rows = $('#chart .jqplot-table-legend tr').get(); 
rows.sort(function(a, b) { 
    return $(a).children().last().text().localeCompare($(b).children().last().text()); 
}); 

$.each(rows, function(index, item) { 
    $('#chart .jqplot-table-legend tbody').append(item); 
}); 

這個工作最好的標準傳說渲染 - 這也將爲EnhancedLegendRenderer工作,但切換一系列可見/不可見將實際顯示或隱藏與排序前存在的標籤相對應的系列。

+0

感謝它很好! – Butters 2013-03-11 08:48:21