Skip to content

Commit

Permalink
updated y domain to end at 3.25 and keep y ticks ending at 3. thanks …
Browse files Browse the repository at this point in the history
…Dan and Julia!
  • Loading branch information
gregquinn2001 authored and Matthew Gramigna committed May 22, 2019
1 parent 94323ee commit 4109bc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/summary/ProgressionLineChartVisualizer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,8 @@ class ProgressionLineChartVisualizer extends Visualizer {
});
});
// Get yAxisInfo
const yAxisDomain = [ -1.25, 3 ];
const yTicks = [ -1, 0, 1, 2, 3.25 ];
const yAxisDomain = [ -1.25, 3.25 ];
const yTicks = [ -1, 0, 1, 2, 3 ];
// Get xAxisInfo
const xAxisDomain = this.getXAxisDomain(processedData, processedPotentialDiagnosisDates);
const xTicks = this.getXAxisTicks(xAxisDomain, processedPotentialDiagnosisDates, this.props.isWide);
Expand Down

0 comments on commit 4109bc3

Please sign in to comment.