diff options
| author | Jacob Palecki <[email protected]> | 2021-01-20 00:30:50 -0800 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2021-01-20 00:30:50 -0800 |
| commit | 9c2be5743fb44e8a68084ac0bd15c02f6cce637a (patch) | |
| tree | c0b09b75f7974a50ae6959fe385c1ec768fc7c83 /grapher/Models/Charts/ChartXY.cs | |
| parent | further tweaks (diff) | |
| download | rawaccel-9c2be5743fb44e8a68084ac0bd15c02f6cce637a.tar.xz rawaccel-9c2be5743fb44e8a68084ac0bd15c02f6cce637a.zip | |
Final graph fidelity tweaks and fixes
Diffstat (limited to 'grapher/Models/Charts/ChartXY.cs')
| -rw-r--r-- | grapher/Models/Charts/ChartXY.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grapher/Models/Charts/ChartXY.cs b/grapher/Models/Charts/ChartXY.cs index 553ab3e..bd80ea2 100644 --- a/grapher/Models/Charts/ChartXY.cs +++ b/grapher/Models/Charts/ChartXY.cs @@ -244,8 +244,8 @@ namespace grapher ChartX.ChartAreas[0].AxisY.Maximum = maxX * (1 + VerticalMargin); VerifyRange(minY, maxY); - ChartX.ChartAreas[0].AxisY.Minimum = minY * (1 - VerticalMargin); - ChartX.ChartAreas[0].AxisY.Maximum = maxY * (1 + VerticalMargin); + ChartY.ChartAreas[0].AxisY.Minimum = minY * (1 - VerticalMargin); + ChartY.ChartAreas[0].AxisY.Maximum = maxY * (1 + VerticalMargin); } public void SetCombined() |