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.
我想在 JavaPlot 中绘制一个图表,轴“x”从较高的数字开始(以较低的数字结束)。就相当于 gnuplot 的set xrange [10:0]. 我试过用 JavaPlot 做同样的事情p.getAxis("x").setBoundaries(10, 0);,但它将值设置回 0、10。
set xrange [10:0]
p.getAxis("x").setBoundaries(10, 0);