I've added a Copyright subtitle to my chart and tried to position it in the lower right of the chart: TextTitle textTitle = new TextTitle("Copyright \u00A9 2008. Acme, Inc. "); textTitle.setFont(new Font("SansSerif", Font.PLAIN, 10)); textTitle.setPosition(RectangleEdge.BOTTOM); textTitle.setHorizontalAlignment(HorizontalAlignment.RIGHT); chart.addSubtitle(textTitle); The only problem is the copyright notice appears above the legend. Is there any way to get it to appear below the legend? Thx. ...