Skip to content

Commit 4109bc3

Browse files
gregquinn2001Matthew Gramigna
authored and
Matthew Gramigna
committed
updated y domain to end at 3.25 and keep y ticks ending at 3. thanks Dan and Julia!
1 parent 94323ee commit 4109bc3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/summary/ProgressionLineChartVisualizer.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,8 @@ class ProgressionLineChartVisualizer extends Visualizer {
207207
});
208208
});
209209
// Get yAxisInfo
210-
const yAxisDomain = [ -1.25, 3 ];
211-
const yTicks = [ -1, 0, 1, 2, 3.25 ];
210+
const yAxisDomain = [ -1.25, 3.25 ];
211+
const yTicks = [ -1, 0, 1, 2, 3 ];
212212
// Get xAxisInfo
213213
const xAxisDomain = this.getXAxisDomain(processedData, processedPotentialDiagnosisDates);
214214
const xTicks = this.getXAxisTicks(xAxisDomain, processedPotentialDiagnosisDates, this.props.isWide);

0 commit comments

Comments
 (0)