2012-03-02 86 views
0

我嘗試爲jqPlot創建圖例,但它們只會顯示y斜率的最大值和最小值。就像'Max:16 Min:2'一樣,但我無法弄清楚。例如,我試圖給標籤作爲jqplot自定義傳說

var labels = [{'Max':16}, {'Min':2}]; 

但似乎沒有工作。你知道任何快速方法,或者我應該爲此創建自己的特殊渲染器嗎? 謝謝。

+0

能否請你給什麼就想要傳說的樣子,什麼是不完全工作的一些詳細信息? – 2012-03-05 17:21:33

回答

0

ufucuk。 我有同樣的問題,我解決它執行以下操作:

$("#hereGoesMyMinValue").text($("#myGraphId"). 
children(".jqplotxaxis").children(":first").text()); 
//first value shown 
$("#hereGoesMyMaxValue").text($("#myGraphId"). 
children(".jqplot-xaxis").children(":last").text()); 
//last value shown 

注意,這將是唯一的一次。 Here介紹瞭如何將它們同步

順便問一下,你也可以做到以下幾點:

var title=$("#selecting_period").children(".jqplot-title").text(); 

var coolTitle= 
title+": Showing "+ $("#myGraphId").children(".jqplot-xaxis"). 
    children(":first").text()+" to "+$("#myGraphId"). 
    children(".jqplot-xaxis").children(":last").text(); 
    $("#myGraphId").children(".jqplot-title").text(coolTitle);