






























Questions? Email us:
sales@haneng.com
|
|
Left Side Y-Axis as Default
In HanengCharts 2.x many charts had the Y-axis on the right hand side as default.
After requests we have now changed the default to be on the left hand side for
most charts.
We have received requests for the option to hide the values on the Y-axis
and now you can by adding the following parameter:
<PARAM NAME="HideYAxisLabels" VALUE="true">
HanengCharts 3.0
Chart 1 Source Code
HanengCharts 2.6
It is possible on most charts to override the default and use a right hand side Y-axis using
the following parameter:
<PARAM NAME="RightSideYAxis" VALUE="true">
Chart 2 Source Code
Source code for charts:
Chart 1:
<APPLET CODE="HanengCharts.class" ARCHIVE="HanengCharts3.jar" WIDTH=400 HEIGHT=350>
<PARAM NAME="LicenseKey" VALUE="30DAYDEMO-JUta7LyXXJKzRz">
<PARAM NAME="ChartType" VALUE="Line">
<PARAM NAME="Value_1" VALUE="34555">
<PARAM NAME="Value_2" VALUE="64751">
<PARAM NAME="Value_3" VALUE="44545">
<PARAM NAME="Value_4" VALUE="12852">
</APPLET>
Chart 2:
<APPLET CODE="HanengCharts.class" ARCHIVE="HanengCharts3.jar" WIDTH=400 HEIGHT=350>
<PARAM NAME="LicenseKey" VALUE="30DAYDEMO-JUta7LyXXJKzRz">
<PARAM NAME="ChartType" VALUE="Line">
<PARAM NAME="RightSideYAxis" VALUE="true">
<PARAM NAME="Value_1" VALUE="34555">
<PARAM NAME="Value_2" VALUE="64751">
<PARAM NAME="Value_3" VALUE="44545">
<PARAM NAME="Value_4" VALUE="12852">
</APPLET>
Back >>
|
|