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.
在 提供的示例中JFreechart,我们看到可以显示水平IntervalMarkers。我想构建垂直IntervalMarkers,但我没有找到使用此示例的方法。
JFreechart
IntervalMarker
在笛卡尔坐标中,域与范围正交,所以
final IntervalMarker target = new IntervalMarker(10.0, 20.0); target.setLabel("Target Domain"); ... plot.addDomainMarker(target, Layer.BACKGROUND);