gpt4 book ai didi

java - GraphView 中轴的最大值

转载 作者:行者123 更新时间:2023-11-30 10:08:48 25 4
gpt4 key购买 nike

我有以下代码:

LineGraphSeries<DataPoint> series = new LineGraphSeries<>(arr);
graphView.addSeries(series);
graphView.getViewport().setMaxX(31);
graphView.getViewport().setMaxY(150);
graphView.getViewport().setMinX(1);
graphView.getViewport().setMinY(0);

我需要通过这段代码设置轴的最大值和最小值,但是当我运行程序时,我得到了这些值:

enter image description here

怎么了?

最佳答案

来自 javadoc :

Make sure to set the y bounds to manual via setYAxisBoundsManual(boolean)

所以你还必须添加

graphView.getViewport().setYAxisBoundsManual(true);
graphView.getViewport().setXAxisBoundsManual(true);

关于java - GraphView 中轴的最大值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53616207/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com