gpt4 book ai didi

java - 是否可以指定Y轴的范围

转载 作者:行者123 更新时间:2023-12-02 11:16:03 26 4
gpt4 key购买 nike

我在下面的代码中创建了面积图

chart = Chart3DFactory.createAreaChart("", // Main title
"", // Sub title
dataset, null, "Date", // X-Axis legend
"Time (seconds)"); // Y-Axis legend


chart.setChartBoxColor(new Color(255, 255, 255, 127));
chart.setLegendAnchor(LegendAnchor.BOTTOM_RIGHT);
CategoryPlot3D plot = (CategoryPlot3D) chart.getPlot();
plot.setGridlinePaintForValues(Color.BLACK);
chartViewer = new Chart3DViewer(chart);
borderPane.setCenter(chartViewer);

enter image description here

图表中的值高于 200,我想指定轴从 200 开始。我还没有找到关于 official website 的太多文档。或Github.有谁知道这是否可能?谢谢

最佳答案

我以前从未看过这个库,所以如果这个答案不正确,我很抱歉。

我看到您的plot类型为 CategoryPlot3D 。这个类有方法 getValueAxis()它返回 ValueAxis3D目的。 ValueAxis3D 接口(interface)扩展自 Axis3D界面。最后一个接口(interface)有这两个方法:

我相信后一种方法只是一种方便的方法,因此您不必创建 Range对象。

我希望这就是您所要求的?

关于java - 是否可以指定Y轴的范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50283095/

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