Prperties settings in JFreeChart

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
sang

Prperties settings in JFreeChart

Post by sang » Wed May 01, 2002 12:46 am

I am not able to locate the source code from where the JFreeChart code reads the properties in the application. For my application I need to add some more properties. Can somebody help me on this.

Thanks in advance.

Sang

David Gilbert

Re: Properties settings in JFreeChart

Post by David Gilbert » Thu May 02, 2002 6:41 am

Hi Sang,

The properties controlling the appearance of the chart can be changed by accessing the individual objects that make up a chart. The JFreeChart class maintains references to a plot (some subclass of Plot), a legend (optional) and a list of titles. The plot usually has references to a domain axis and a range axis. You should refer to the Javadoc API for the properties that you can change, or buy a copy of the JFreeChart PDF documentation for examples of changing common properties.

Regards,

DG.

sang

Re: Properties settings in JFreeChart

Post by sang » Fri May 10, 2002 7:46 pm

Thanks David, I got it working

Sang

Locked