0
我可以使用XYDataItem創建一個堆疊的JqPlotBar圖表。但是,我需要X軸作爲標籤,例如代理A,代理S等。我嘗試使用TextValueDataItem,但條形圖未顯示。如何在x軸上創建帶有字符串標籤的JqPlotBar圖表?
Tapestry:如何在x軸上創建帶有String標籤的JqPlotBar圖表
任何幫助將不勝感激。謝謝。
我可以使用XYDataItem創建一個堆疊的JqPlotBar圖表。但是,我需要X軸作爲標籤,例如代理A,代理S等。我嘗試使用TextValueDataItem,但條形圖未顯示。如何在x軸上創建帶有字符串標籤的JqPlotBar圖表?
Tapestry:如何在x軸上創建帶有String標籤的JqPlotBar圖表
任何幫助將不勝感激。謝謝。
我找到了解決方案。我繼續使用XYDataItem。然後我使用params參數來包含選項刻度,這將在x軸上顯示標籤。
這裏是代碼片段。
JSONObject axes= new JSONObject();
JSONObject xaxis= new JSONObject();
xaxis.put("renderer", new JSONLiteral("jQuery.jqplot.CategoryAxisRenderer"));
JSONArray ticksArray = new JSONArray();
ticksArray.put("Test1");
ticksArray.put("Test2");
xaxis.put("ticks", ticksArray);
axes.put("xaxis", xaxis);
json.put("axes", axes);
options.put("options", json);
return options;