我正在尝试在场景中设置线图,并且到目前为止这样做 -
<LineChart fx:id="historicalReportGraph" label="Purity History Graph" GridPane.columnIndex="1">
<xAxis><CategoryAxis label="Month" lowerBound="0" upperBound="11" tickUnit="1"/></xAxis>
<yAxis><NumberAxis label="PPM" lowerBound="0" upperBound="100" tickUnit="1"/></yAxis>
</LineChart>
因为我不知道如何在场景中正确设置categoryaxis ......
如何设置此类别x轴,以便按月,一年中的12个月,从12月1日到12月?
感谢。
答案 0 :(得分:0)
我假设您在FXML中设置场景?
最简单的答案是将xAxis设置为NumberAxis,因为这是它显示的值的定义。并将yAxis更改为CategoryAxis(除非您希望它也是一个数字,然后您也将它设置为NumberAxis)