Hi Josh,
Yes. The easiest method is to simply cover the unwanted parts up with a "mask".
The "mask" can be an image prepared in advance, or it can be composed of shapes drawn by ChartDirector.
For example, for your case, if the bottom concave edge happens to be an arc, one method is to simply draw a large white circle at the bottom to cover up the part that you do not want. If you know the points along the concave edge, you can also ask ChartDirector to draw a white polygon.
For example:
.... create coutour chart as usual ....
DrawArea d = c.makeChart3();
d.circle(800, 800, 500, 500, 0xffffff, 0xffffff);
Note that the white circle above is simply, but it will block other things at the bottom of the chart, such as the x-axis labels. I suggest this method because in your case there does not seem to be anything at the bottom of the chart. There are other more precise methods (use a polygon, use a white bubble in a bubble layer, use a mask image, etc). If you need to use them, please let me know.
Hope this can help.
Regards
Peter Kwan |