Comment / Note in JFree Chart

I am looking for a way to insert a specific comment / note into an image created by JFree Chart. A note can be anywhere in the image (png), above or below the graph.

Is there any way to do this?

+3
source share
2 answers

To add text addSubtitle()is a general approach, but TextTitlea convenient implementation of the interface Title.

+1
source

If you want to create a comment or not in the image itself, you can do it with Marker. If you want something under the image / graph to use LegendItemCollection.

0
source

All Articles