Jsf PrimeFaces 5.1没有';t在p:fieldset中显示图表

Jsf PrimeFaces 5.1没有';t在p:fieldset中显示图表,jsf,primefaces,Jsf,Primefaces,我有一个问题,当我在中使用时,它不会出现,但如果我删除,它就会出现。在这个版本的PrimeFaces中不能同时使用这些组件吗?您可以用延迟的将组件括起来: <p:fieldset legend="#{msg['label.totalSpace']}" > <p:outputPanel deferred="true"> <p:chart type="bar" model="#{officeManager.usageBarChartModel

我有一个问题,当我在
中使用
时,它不会出现,但如果我删除
,它就会出现。在这个版本的PrimeFaces中不能同时使用这些组件吗?

您可以用延迟的
组件括起来:


<p:fieldset legend="#{msg['label.totalSpace']}" >
    <p:outputPanel deferred="true">
        <p:chart type="bar" model="#{officeManager.usageBarChartModel}" />
    </p:outputPanel>
</p:fieldset>