我想使用primefaces 5.1创建线图。但是我收到了错误消息" 标记库支持命名空间:http://primefaces.org/ui,但没有为名称定义标记:lineChart "加载我的xhtml页面时。这是我的代码
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui">
<h:head>
</h:head>
<h:body>
<h:form>
<p>LineChart is created By Manaf.</p>
<p:lineChart id="linear" value="#{chartBean.linearModel}" legendPosition="e" title="Linear Chart" minY="0" maxY="10" style="height:300px;"/>
<p:lineChart id="category" value="#{chartBean.categoryModel}" legendPosition="e"title="Category Chart" minY="0" maxY="200" tyle="height:300px;margin-top:20px"/>
</h:form>
</h:body>
</html>
......实际问题是什么,我是primefaces和jsf的初学者......
答案 0 :(得分:3)
当前语法(5.1)是......
<p:chart type="line" model="#{chartView.lineModel1}" style="height:300px;"/>
答案 1 :(得分:2)
检查当前是否使用最新版本5.1。访问PrimeFaces或查看 Maven依赖:
<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>5.1</version>
</dependency>
答案 2 :(得分:1)
根据primefaces 6.2的文档:
https://www.primefaces.org/docs/guide/primefaces_user_guide_6_2.pdf
<p:chart type="line" model="#{bean.model}" />
这些是存在的不同类型,每种都可以定制或组合几种