Skip to content

Commit

Permalink
Add a note to link an issue with time zone formatting to the relevant…
Browse files Browse the repository at this point in the history
… ticket, #360.
  • Loading branch information
james-d-brown committed Nov 22, 2024
1 parent b9908c7 commit 926c993
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions wres-vis/src/wres/vis/charts/ChartFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -544,15 +544,14 @@ public JFreeChart getDurationDiagramChart( List<DurationDiagramStatisticOuter> s
false,
false );

// Set the date/time format
// Set the date/time format. See GitHub ticket #360
DateAxis dateAxis = ( DateAxis ) chart.getXYPlot()
.getDomainAxis();
TimeZone timeZone = TimeZone.getTimeZone( "UTC" );
SimpleDateFormat format = new SimpleDateFormat( "yyyy-MM-dd+HH" );
format.setTimeZone( timeZone );
dateAxis.setDateFormatOverride( format );

dateAxis.setTimeZone(timeZone);
dateAxis.setTimeZone( timeZone );

XYPlot plot = chart.getXYPlot();

Expand Down Expand Up @@ -993,15 +992,14 @@ else if ( chartType == ChartType.POOLING_WINDOW )
true,
false,
false );
// Set the date/time format
// Set the date/time format. See GitHub ticket #360
DateAxis dateAxis = ( DateAxis ) chart.getXYPlot()
.getDomainAxis();
TimeZone timeZone = TimeZone.getTimeZone( "UTC" );
SimpleDateFormat format = new SimpleDateFormat( "yyyy-MM-dd+HH" );
format.setTimeZone( timeZone );
dateAxis.setDateFormatOverride( format );

dateAxis.setTimeZone(timeZone);
dateAxis.setTimeZone( timeZone );
}
else
{
Expand Down

0 comments on commit 926c993

Please sign in to comment.