






























Questions? Email us:
sales@haneng.com
|
|
VerticalXAxisLabels
Description:
VerticalXAxisLabels lets you change the x-axis labels from their normal horizontal position to vertical.
Example:
<PARAM NAME="VerticalXAxisLabels" VALUE="true">
Code Samples:
Lets start with a simple chart:
View Source Code
Now lets try setting VerticalXAxisLabels to true by adding this code between the <APPLET> tags:
<PARAM NAME="VerticalXAxisLabels" VALUE="true">
The chart will now look like this:
View Source Code
Sample Chart Source Code:
Code For Chart 1:
<APPLET CODE="HanengCharts.class" ARCHIVE="HanengCharts3.jar" WIDTH=350 HEIGHT=200>
<PARAM NAME="LicenseKey" VALUE="30DAYDEMO-KYECav22N7EJFS">
<PARAM NAME="ChartType" VALUE="line">
<PARAM NAME="Text_1" VALUE="Day 1">
<PARAM NAME="Value_1" VALUE="143">
<PARAM NAME="Text_2" VALUE="Day 2">
<PARAM NAME="Value_2" VALUE="103">
<PARAM NAME="Text_3" VALUE="Day 3">
<PARAM NAME="Value_3" VALUE="149">
<PARAM NAME="Text_4" VALUE="Day 4">
<PARAM NAME="Value_4" VALUE="104">
<PARAM NAME="Text_5" VALUE="Day 5">
<PARAM NAME="Value_5" VALUE="144">
<PARAM NAME="Text_6" VALUE="Day 6">
<PARAM NAME="Value_6" VALUE="102">
<PARAM NAME="Text_7" VALUE="Day 7">
<PARAM NAME="Value_7" VALUE="110">
<PARAM NAME="Text_8" VALUE="Day 8">
<PARAM NAME="Value_8" VALUE="109">
<PARAM NAME="Text_9" VALUE="Day 9">
<PARAM NAME="Value_9" VALUE="128">
<PARAM NAME="Text_10" VALUE="Day 10">
<PARAM NAME="Value_10" VALUE="123">
</APPLET>
Code For Chart 2:
<APPLET CODE="HanengCharts.class" ARCHIVE="HanengCharts3.jar" WIDTH=350 HEIGHT=200>
<PARAM NAME="LicenseKey" VALUE="30DAYDEMO-KYECav22N7EJFS">
<PARAM NAME="ChartType" VALUE="line">
<PARAM NAME="VerticalXAxisLabels" VALUE="true">
<PARAM NAME="Text_1" VALUE="Day 1">
<PARAM NAME="Value_1" VALUE="143">
<PARAM NAME="Text_2" VALUE="Day 2">
<PARAM NAME="Value_2" VALUE="103">
<PARAM NAME="Text_3" VALUE="Day 3">
<PARAM NAME="Value_3" VALUE="149">
<PARAM NAME="Text_4" VALUE="Day 4">
<PARAM NAME="Value_4" VALUE="104">
<PARAM NAME="Text_5" VALUE="Day 5">
<PARAM NAME="Value_5" VALUE="144">
<PARAM NAME="Text_6" VALUE="Day 6">
<PARAM NAME="Value_6" VALUE="102">
<PARAM NAME="Text_7" VALUE="Day 7">
<PARAM NAME="Value_7" VALUE="110">
<PARAM NAME="Text_8" VALUE="Day 8">
<PARAM NAME="Value_8" VALUE="109">
<PARAM NAME="Text_9" VALUE="Day 9">
<PARAM NAME="Value_9" VALUE="128">
<PARAM NAME="Text_10" VALUE="Day 10">
<PARAM NAME="Value_10" VALUE="123">
</APPLET>
|
|