所以我從2.2升級到Primefaces 3.0以使用新的圖表。但是,格式化軸和工具提示的功能不再存在。有沒有辦法讓我可以到達jqplot的圖表並改變它們?舊的2.2版本有dataTipFunction。感謝你給與我的幫助。看來很多人和我有同樣的問題。jqplot和primefaces
0
A
回答
0
我認爲你可以使用extender屬性添加到primefaces(3.4-Snapshot)的最新快照 我沒有嘗試過自己,但我認爲你可以使用extender屬性來做到這一點。
+0
謝謝。由於3.0的各種問題,我最終退出並轉向2.2版本。如果我確實回到3.4版,我會嘗試。 – Binh 2012-06-25 12:37:18
1
擴展器屬性爲我工作。這裏是我做到了
<script type="text/javascript" >
function open() {
this.cfg.axes = {
xaxis: {
showTicks: false
}
};
</script>
我的線型圖這個樣子 -
<pf:lineChart id="TraceJobChart"
value="#{tracejobsController.getChartForDialog()}"
legendPosition=""
yaxisLabel="Traffic"
xaxisLabel="Time"
zoom="true"
extender="open"
showMarkers="true"
shadow="true"
seriesColors="ff0000"
style="height:200px; width: 100%" />
,我可以用線型圖中的其他選項在這個網站中給出。
希望這有助於。
相關問題
- 1. primefaces和jqplot插件
- 2. Primefaces圖表+ jqplot擴展器 - 在擴展與jqplot選項y軸
- 3. Primefaces&jqplot - 顯示軸上的日期
- 4. PHP,ajax和JQplot
- 5. jqPlot with DateAxisRenderer和ajax
- 6. 如何更改Primefaces/jqPlot折線圖的標籤顏色?
- 7. JqPlot酒吧和折線圖
- 8. JQPlot和C#響應問題
- 9. jqPlot和命名系列
- 10. PrimeFaces推和Glassfish
- 11. PrimeFaces和Spring
- 12. Primefaces 1.1和jsf1.2
- 13. Primefaces ListDataModel和SelectableDataModel
- 14. Primefaces和primefaces之間的區別移動
- 15. 在JqPlot
- 16. 上jqPlot
- 17. 在jqPlot
- 18. jQplot dragable
- 19. jqplot gradientcolor
- 20. JQPlot labelRenderer
- 21. Primefaces計劃和selectEvent
- 22. Primefaces 3.0:TreeNode和ContextMenu
- 23. JSF和PrimeFaces:通過
- 24. javax.el.PropertyNotFoundException與Primefaces和DataTable
- 25. JSF和PrimeFaces策略
- 26. Primefaces編輯和JQuery
- 27. Primefaces嚮導和selectOneRadio
- 28. Spring Webflow和primefaces ActionListners
- 29. PrimeFaces dinamic CommandButtons和ContextMenu
- 30. 使用JSF和PrimeFaces
只是想跟進,我無法弄清楚如何從primefaces得到jqplot句柄,所以我最終創建了jqplot我自己。好吧!!!工作也一樣。 – Binh 2012-02-21 20:34:04