Hi JC,
You may move the plot area down by using a large y-coordinate for the top-left corner to the plot area. For example, in the original sample code for the Pareto chart, the plot area is set as:
' Set the plotarea at (50, 40) and of 300 x 150 pixels in size, with a silver
' background color.
c.setPlotArea(50, 40, 300, 150, Chart.silverColor())
You may change the (50, 40) to (50, 60), like:
' Set the plotarea at (50, 60) and of 300 x 130 pixels in size, with a silver
' background color.
c.setPlotArea(50, 60 300, 130, Chart.silverColor())
Hope this can help.
Regards
Peter Kwan |