gpt4 book ai didi

java - 如何在 JFreeChart 中将时间以这种格式 00 :00:00. 000 分配给 X 轴

转载 作者:行者123 更新时间:2023-12-01 15:25:32 26 4
gpt4 key购买 nike

我的问题是我不知道如何将 00:00:00.000 格式的时间分配给 JFreeChart 中的 X 轴。

我正在编写一个应用程序,它将从 CSV 文件中获取数据,其中的列如下所示:

time accelerationX accelerationY accelerationZ

我查找了示例,但没有找到任何可能对我有帮助的内容。

我的代码:

public ChartService() {

final CombinedDomainXYPlot plot = new CombinedDomainXYPlot(new DateAxis("Time"));
this.datasets = new TimeSeriesCollection[SUBPLOT_COUNT];

for (int i = 0; i < SUBPLOT_COUNT; i++) {
this.lastValue[i] = 100.0;
final TimeSeries series = new TimeSeries(Y_AXIS_TITLES[i], Millisecond.class);
// this.series.add(new SimpleDateFormat("hh:mm:ss.mmm"), 0.2222);

this.datasets[i] = new TimeSeriesCollection(series);
final NumberAxis rangeAxis = new NumberAxis(Y_AXIS_TITLES[i]);
rangeAxis.setAutoRangeIncludesZero(false);
final XYPlot subplot = new XYPlot(
this.datasets[i], null, rangeAxis, new StandardXYItemRenderer()
);
subplot.setBackgroundPaint(Color.lightGray);
subplot.setDomainGridlinePaint(Color.white);
subplot.setRangeGridlinePaint(Color.white);
plot.add(subplot);
}

final JFreeChart chart = new JFreeChart("Dynamic Data Demo 3", plot);

chart.setBorderPaint(Color.black);
chart.setBorderVisible(true);
chart.setBackgroundPaint(Color.white);

plot.setBackgroundPaint(Color.lightGray);
plot.setDomainGridlinePaint(Color.white);
plot.setRangeGridlinePaint(Color.white);

final ValueAxis axis = plot.getDomainAxis();
axis.setAutoRange(true);
axis.setFixedAutoRange(60000.0); // 60 seconds

final JPanel content = new JPanel(new BorderLayout());

final ChartPanel chartPanel = new ChartPanel(chart);
content.add(chartPanel);

chartPanel.setPreferredSize(new java.awt.Dimension(790, 620));
chartPanel.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5));
this.add(content);

}

请帮忙!!!

最佳答案

    String s = "10:00:00.000";
SimpleDateFormat f = new SimpleDateFormat("HH:MM:SS.SSS");

Date parsedDate = f.parse(s);

您可以按照上面的方法将给定时间转换为日期,然后您可以使用 Date 对象创建 http://www.jfree.org/jfreechart/api/gjdoc/org/jfree/data/time/Millisecond.html#Millisecond:Date

关于java - 如何在 JFreeChart 中将时间以这种格式 00 :00:00. 000 分配给 X 轴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10214600/

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