我无法将素数图表导出为图像。
categoryModel
与Prime-show Case相同。
是否需要依赖lib才能导出?
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
......
template="/common/commonLayout.xhtml">
<ui:define name="content">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script type="text/javascript">
//<![CDATA[
function exportChart() {
//export image
$('#output').empty().append(chart.exportAsImage());
//show the dialog
dlg.show();
}
//]]>
</script>
<h:form enctype="multipart/form-data">
<p:barChart id="basic" value="#{ChartActionBean.categoryModel}" legendPosition="ne"
title="Bar Chart" widgetVar="chart" animate="true" yaxisLabel="Number of Count"/>
<p:commandButton type="button" value="Export" icon="ui-icon-extlink" onclick="exportChart()"/>
<p:dialog widgetVar="dlg" showEffect="fade" modal="true" header="Chart as an Image">
<p:outputPanel id="output" layout="block" style="width:500px;height:300px"/>
</p:dialog>
</h:form>
</ui:define>
</ui:composition>
答案 0 :(得分:2)
在Showcase和Export按钮和OutputPanel中没有包含,因此$('#output')能够选择要附加图像的预期元素。
但是在你的情况下你已经包装了这些组件,因此JSF将为j_idt10形式生成一个id,组件的id“output”将变为“j_idt10:output”。
解决此问题:
<h:form id="form1">
//chart
// export button
//dialog containing outputPanel
</h:form>
在javascript中:
function exportChart() {
$('#form1\\:output').empty().append(chart.exportAsImage());
dlg.show();
}
或简单地放在 $('#output')之外。空()。append(chart.exportAsImage()); 将按预期工作。
答案 1 :(得分:0)
我还认为,要指定模型,请使用模型属性,而不是值。所以在你的情况下,它将是:
<p:barChart id="basic" model="#{ChartActionBean.categoryModel}" legendPosition="ne" title="Bar Chart" widgetVar="chart" animate="true" yaxisLabel="Number of Count"/>