我遇到问题,当我在<p:chart>
内使用<p:fieldset>
时,它不显示,但如果我删除了<p:set>
,则会显示。在此版本的PrimeFaces中是否无法将这些组件一起使用?
答案 0 :(得分:0)
您可以将<p:chart>
组件与延迟<p:outputPanel>
:
<p:fieldset legend="#{msg['label.totalSpace']}" >
<p:outputPanel deferred="true">
<p:chart type="bar" model="#{officeManager.usageBarChartModel}" />
</p:outputPanel>
</p:fieldset>