如何对 JFreeChart 中的图例进行排序?
有没有办法按支持对象对 JFreeChart 图例中的项目进行排序?
我注意到 TimeSeries/Series 通过 Comparable 对象设置标题。
是否有一种方法或设置可以强制图例按项目所代表的可比较对象进行排序?目前图例按 FIFO 顺序排序。
Is there a way to sort the items in a JFreeChart legend by their backing object?
I've noticed that the TimeSeries/Series sets the title via a Comparable object.
Is there a way or a setting that forces the legend to be sorted by the comparable objects that the items are representing? Currently the legend is sorted by FIFO order.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
LegendItemCollection
以所需的顺序添加项目。大多数 Plot 都有一个 setFixedLegendItems() 方法来覆盖默认值。You could use the
add()
method ofLegendItemCollection
to add the items in the desired order. MostPlot
s have asetFixedLegendItems()
method to override the default.