Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a note to link an issue with time zone formatting to the relevant… #367

Merged
merged 1 commit into from
Nov 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading