Tag Library supports namespace: http://primefaces.org/ui, but no tag was defined for name: lineChart

问题描述 投票:1回答:3

我想用primefaces 5.1创建一个折线图。但是在加载我的xhtml页面时,我收到错误消息“Tag Library支持命名空间:http://primefaces.org/ui,但没有为name:lineChart定义标记”。这是我的代码

sample.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的初学者......

java jsf primefaces xhtml linechart
3个回答
3
投票

目前的语法(5.1)是......

<p:chart type="line" model="#{chartView.lineModel1}" style="height:300px;"/>

2
投票

检查您当前是否使用最新版本5.1。访问PrimeFaces或检查Maven依赖:

<dependency>
    <groupId>org.primefaces</groupId>
    <artifactId>primefaces</artifactId>
    <version>5.1</version>
</dependency>

1
投票

根据primefaces 6.2的文档:

https://www.primefaces.org/docs/guide/primefaces_user_guide_6_2.pdf

 <p:chart type="line" model="#{bean.model}" />

这些是存在的不同类型,并且每个类型可以定制或组合多个

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.