Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试更改 XYPlot 中的线宽和点的大小,有什么建议吗?
还有另一个问题 - 我如何禁用 SimpleXYSeries 的图例?设置为 null 导致错误。
我正在尝试更改线的宽度XYPlot和点的大小。有什么建议吗?
XYPlot
如此处所示,您可以使用setSeriesStroke()或setBaseStroke()在您选择的渲染器中更改线条粗细。假设,您可以使用此处显示的方法XYLineAndShapeRenderer更改渲染。Shape
setSeriesStroke()
setBaseStroke()
XYLineAndShapeRenderer
Shape
我如何禁用图例?
您可以将参数传递false给legend您选择的ChartFactory方法或JFreeChart构造函数。
false
legend
ChartFactory
JFreeChart