Search found 3 matches
- Mon Apr 06, 2020 9:04 am
- Forum: JFreeChart
- Topic: Time Series Chart - Date Axis Question
- Replies: 7
- Views: 879613
Re: Time Series Chart - Date Axis Question
I've managed to add another axis, which achievess what I desire with the following code: //Date Axis Settings dateAxis = new DateAxis(""); plot.setDomainAxis(1, dateAxis); plot.setDomainAxisLocation(1, AxisLocation.BOTTOM_OR_LEFT); plot.mapDatasetToDomainAxes(0, Arrays.asList(0, 1)); dateAxis.setLow...
- Fri Apr 03, 2020 3:36 pm
- Forum: JFreeChart
- Topic: Time Series Chart - Date Axis Question
- Replies: 7
- Views: 879613
Re: Time Series Chart - Date Axis Question
Hi John, would you advise on what the best way to approach that would be?John Matthews wrote: ↑Wed Mar 18, 2020 12:15 amOne alternative: add a second domain axis with a different date format.
- Fri Mar 13, 2020 11:59 am
- Forum: JFreeChart
- Topic: Time Series Chart - Date Axis Question
- Replies: 7
- Views: 879613
Time Series Chart - Date Axis Question
Hi there! I have created a TimeSeriesChart which display 2 days worth of data at 30 minute granularity. I would like the X-Axis to tick interval every 1 hour (which works). However, because the data spans multiple days you can potentially see repeating times. Would it be possible that when the time ...