标签: java jfreechart
如何在BarChart中将x轴位置从底部更改为第0个Y轴值?
我的条形图现在有一些负值,x轴以y轴的最低负值开始。我想将该位置更改为y轴的零值。
目前我有这个
我想要
-10
请帮助!
答案 0 :(得分:0)
如果我理解正确的话, 尝试这样的事情:
NumberAxis yAxis = (NumberAxis) xyplot.getRangeAxis(); yAxis.setLowerBound(0);