Author: norman.richards(a)jboss.com
Date: 2009-04-08 17:55:33 -0400 (Wed, 08 Apr 2009)
New Revision: 10358
Added:
trunk/examples/itext/view/customchart.xhtml
Log:
JBSEAM-3956
Added: trunk/examples/itext/view/customchart.xhtml
===================================================================
--- trunk/examples/itext/view/customchart.xhtml (rev 0)
+++ trunk/examples/itext/view/customchart.xhtml 2009-04-08 21:55:33 UTC (rev 10358)
@@ -0,0 +1,26 @@
+<!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:p="http://jboss.com/products/seam/pdf"
+
xmlns:ui="http://java.sun.com/jsf/facelets"
+
xmlns:s="http://jboss.com/products/seam/taglib"
+
xmlns:f="http://java.sun.com/jsf/core"
+
xmlns:h="http://java.sun.com/jsf/html"
+
xmlns:rich="http://richfaces.org/rich"
+
xmlns:a="http://richfaces.org/a4j">
+<head>
+ <title>Seam PDF</title>
+</head>
+<body>
+ <ui:remove>
+ <p:timeserieschart dataset="#{chartseries.dataset}"
title="monkeys"
+ domainAxisLabel="Do-main"
rangeAxisLabel="Range" foo="bar">
+ <p:series key="foo" />
+ </p:timeserieschart>
+ </ui:remove>
+
+ <p:barchart dataset="#{jfree.dataset}" />
+ <p:barchart chart="#{jfree.chart}" />
+ <p:chart title="p:chart" chart="#{jfree.chart}" />
+</body>
+</html>