简体   繁体   中英

jfree chart - how to add new item to legend that is not in data source

I am trying to add a new item or label in the legend, this item is not available in dataset. Which method should be used to add this item to legend?

From the jfree forum :

Adding Legends on Bar Chart for custom colors:

LegendItemCollection chartLegend = new LegendItemCollection();
Shape shape = new Rectangle(10, 10);
chartLegend.add(new LegendItem("label1", null, null, null, shape, Color.red));
chartLegend.add(new LegendItem("label2", null, null, null, shape, Color.blue));
plot.setFixedLegendItems(chartLegend);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM