jqplot和primefaces

时间:2012-02-10 19:08:12

标签: primefaces jqplot

所以我从2.2升级到Primefaces 3.0以使用新图表。但是,不再存在格式化轴和工具提示的功能。有没有办法可以进入jqplot的图表并更改这些?旧的2.2版本有dataTipFunction。感谢你给与我的帮助。似乎很多人和我有同样的问题。

2 个答案:

答案 0 :(得分: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%" />

我可以用于线图的其他选项在本网站中给出。

Jqplot for Linechart

希望这有帮助。

答案 1 :(得分:0)

我认为你可以使用扩展属性添加到primefaces的最新快照(3.4-Snapshot) 我自己没试过,但我认为你可以使用扩展器属性来做。