1. Setting the range
2. Using the range step
3. Range color and position
4. Set the range label prefix, postfix, and font
5. Setting the range adjuster
<applet code=com.objectplanet.chart.BarChartApplet
archive=chart.jar width=300 height=200>
<param name=sampleValues value="11,23,-34,-45,56">
<param name=range value=70>
<param name=lowerRange value=-60>
</applet>
<applet code=com.objectplanet.chart.BarChartApplet
archive=chart.jar width=300 height=200>
<param name=sampleValues value="11,23,-34,-45,56">
<param name=rangeStep value=25>
</applet>
Setting the range color and position.
<applet code=com.objectplanet.chart.BarChartApplet
archive=chart.jar width=300 height=200>
<param name=sampleValues value="10,20,30,40,50">
<param name=rangePosition value="right">
<param name=rangeColor value="red">
</applet>
<applet code=com.objectplanet.chart.BarChartApplet
archive=chart.jar width=300 height=200>
<param name=sampleValues value="10,20,30,40,50">
<param name=rangePosition value="right">
<param name=rangeColor value="#c0007f">
</applet>
Setting the range label prefix, postfix, and font.
<applet code=com.objectplanet.chart.BarChartApplet
archive=chart.jar width=300 height=200>
<param name=sampleValues value="10,20,30,40,50">
<param name=rangeLabelPrefix value="$">
<param name=rangeLabelPostfix value="us">
<param name=rangeDecimalCount value="2">
<param name=rangeLabelFont value="Arial, plain, 9">
</applet>
Turn off the range labels.
<applet code=com.objectplanet.chart.BarChartApplet
archive=chart.jar width=300 height=200>
<param name=sampleValues value="10,20,30,40,50">
<param name=rangeLabelsOff value="true">
</applet>
Turn on the range adjuster and drag the upper and lower edge or move the slider to adjust the upper and lower ranges.
<applet code=com.objectplanet.chart.BarChartApplet
archive=chart.jar width=300 height=200>
<param name=sampleValues value="10,20,30,40,50">
<param name=rangeStep value="100">
<param name=rangeAdjusterOn value=true>
</applet>
Set the position of the range adjuster.
<applet code=com.objectplanet.chart.BarChartApplet
archive=chart.jar width=300 height=200>
<param name=sampleValues value="10,20,30,40,50">
<param name=rangeStep value="100">
<param name=rangeAdjusterOn value=true>
<param name=rangeAdjusterPosition value=left>
</applet>