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
Prperties settings in JFreeChart
Re: Properties settings in JFreeChart
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.
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.