QuickStart Guide


Changing Chart Type:
HanengCharts offers 25 different chart types that you can choose from. You can see all the chart types available in the Chart Gallery. On this page we whill show you how to turn your 3D pie chart into a 3D bar chart.

Step 1: Open the MyFirstChart.html file again using Notepad.

Step 2: Lets start by settings the chart size back to its old size. Locate the line where it says:
<APPLET CODE="HanengCharts.class" ARCHIVE="HanengCharts3.jar" WIDTH=200 HEIGHT=200>
and change WIDTH=200 in to WIDTH=400 and change HEIGHT=200 in to HEIGHT=350.

Step 3: To change the chart type locate the line where it says:
<PARAM NAME="ChartType" VALUE="3DPie">
and change 3DPie in to 3DBar.

The code should now look like this:
<HTML><BODY>

<!-- Start HanengCharts Code -->
<APPLET CODE="HanengCharts.class" ARCHIVE="HanengCharts3.jar" WIDTH=400 HEIGHT=350>
<PARAM NAME="LicenseKey" VALUE="DEMO-DTKTG2s3R8xNVzNVFxN">
<PARAM NAME="ChartType" VALUE="3DBar">
<PARAM NAME="Title" VALUE="Units Sold">

<PARAM NAME="Text_1" VALUE="Coca Cola">
<PARAM NAME="Text_2" VALUE="Pepsi">
<PARAM NAME="Text_3" VALUE="Sprite">
<PARAM NAME="Text_4" VALUE="Fanta">

<PARAM NAME="Value_1" VALUE="1000">
<PARAM NAME="Value_2" VALUE="750">
<PARAM NAME="Value_3" VALUE="500">
<PARAM NAME="Value_4" VALUE="250">
</APPLET>
<!-- End HanengCharts Code -->

</BODY></HTML>

Step 4: Save the changes and upload the MyFirstChart.html file to your web server overwriting the old file.

Step 5: View the MyFirstChart.html on your web server again. It should now look like this:

See the change? We now have a 3D Bar chart!

Next: Changing Colors >>