JavaFX中带有数字XAxis(分布图)的条形图

时间:2017-05-17 16:38:52

标签: java javafx charts bar-chart

我是JavaFX的新手。我想创建一个可视化事件分布的图表,我发现了许多条形图教程,但他们都使用String作为他们的XAxis。

final CategoryAxis xAxis = new CategoryAxis();
final NumberAxis yAxis = new NumberAxis();
final BarChart<String, Number> bc= new BarChart<String, Number>(xAxis, yAxis);

我想使用数字作为XAxis,因为我有一个与每个时间戳关联的值。

我的最终可视化应该如下所示:

enter image description here

如何调整条形图来执行此操作?

0 个答案:

没有答案