franta-hg@1
|
1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
franta-hg@1
|
2 |
<html>
|
franta-hg@1
|
3 |
<head>
|
franta-hg@1
|
4 |
<title>Cewolf Tutorial(4): Define the chart in your JSP</title>
|
franta-hg@1
|
5 |
<meta name="author" content="Guido Laures">
|
franta-hg@1
|
6 |
<link href="../cewolf.css" rel="stylesheet" type="text/css">
|
franta-hg@1
|
7 |
</head>
|
franta-hg@1
|
8 |
<body>
|
franta-hg@1
|
9 |
<h1>Tutorial: Step 4</h1>
|
franta-hg@1
|
10 |
<h2>Define the chart in your JSP</h2>
|
franta-hg@1
|
11 |
<pre><%@page contentType="text/html"%><br><%@taglib uri='/WEB-INF/cewolf.tld' prefix='cewolf' %><br><HTML><br><BODY><br><H1>Page View Statistics</H1><br><HR><br><jsp:useBean id="pageViews" class="de.laures.cewolf.example.PageViewCountData"/><br><cewolf:chart <br> id="line" <br> title="Page View Statistics" <br> type="line" <br> xaxislabel="Page" <br> yaxislabel="Views"><br> <cewolf:data><br> <cewolf:producer id="pageViews"/><br> </cewolf:data><br></cewolf:chart><br><p><br><cewolf:img chartid="line" renderer="cewolf" width="400" height="300"/><br><P><br></BODY><br></HTML><br></pre>
|
franta-hg@1
|
12 |
<p> As you can see there are different tags of the cewolf taglib
|
franta-hg@1
|
13 |
involved. The first <cewolf:chart> tag defines a chart with all
|
franta-hg@1
|
14 |
its parameters. The concrete rendering is handled by the
|
franta-hg@1
|
15 |
<cewolf:img> tag which adds the correct <img> tag in the
|
franta-hg@1
|
16 |
rendered HTML page. The connection between both cewolf tags inside the
|
franta-hg@1
|
17 |
JSP is specified by using the same <tt>id</tt> attributes. </p>
|
franta-hg@1
|
18 |
<p> When calling this JSP from a client browser you should see the page
|
franta-hg@1
|
19 |
view statistic chart. If you got a broken image have a look at your
|
franta-hg@1
|
20 |
container's log files. </p>
|
franta-hg@1
|
21 |
<p> <a href="step5.html">Step 5: Create ImageMap and Tooltip
|
franta-hg@1
|
22 |
Information>></a> </p>
|
franta-hg@1
|
23 |
<a height="30" target="new" href="http://sourceforge.net"><img
|
franta-hg@1
|
24 |
alt="SourceForge Logo" border="0" height="30"
|
franta-hg@1
|
25 |
src="http://sourceforge.net/sflogo.php?group_id=57282&type=5"></a>
|
franta-hg@1
|
26 |
</body>
|
franta-hg@1
|
27 |
</html>
|