Displaying titles

Titles can be displayed at the top, left, right and bottom sides of the chart area. The previous example was modified to display titles and two additional stacked bars series.



<applet code="GraphApplet.class" codebase="../../demo/applets/classes" archive="GraphChart.jar" width=400 height=250>

<param name="title" value="The JetChart Library,Displaying Titles">
<param name="titlefont" value="SansSerif,12,1">
<param name="lefttitle" value="Left Title">
<param name="lefttitlefont" value="Dialog,12,0">
<param name="righttitle" value="Right Title">
<param name="righttitlefont" value="Dialog,12,0">
<param name="bottomtitle" value="Bottom Title">
<param name="bottomtitlefont" value="Dialog,12,0">

<param name="serie1" value="line,Line Series,ff0000">
<param name="serie1_values" value="100,80,90,40,75,60,85">
<param name="serie1_markson" value="no">
<param name="serie2" value="bar,Bar Series,0000ff">
<param name="serie2_values" value="50,70,80,30,60,55,75">
<param name="serie3" value="stackbar,Stacked bar 1,ffff00">
<param name="serie3_values" value="36,45,30,25,40,15,30">
<param name="serie4" value="stackbar,Stacked bar 2,00ff00">
<param name="serie4_values" value="36,45,30,25,40,15,30">
</applet>