diff options
| author | Jacob Palecki <[email protected]> | 2020-09-22 03:16:36 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-09-22 03:16:36 -0700 |
| commit | 2c288f95f2c3791daf54299580e19439c3dd1b0c (patch) | |
| tree | 2e26a4f3b64b2edd312afc79766f5f790f6fb9cb /grapher/Models/Charts | |
| parent | Mostly works (diff) | |
| download | rawaccel-2c288f95f2c3791daf54299580e19439c3dd1b0c.tar.xz rawaccel-2c288f95f2c3791daf54299580e19439c3dd1b0c.zip | |
Fix bug & rename x axis to input speed
Diffstat (limited to 'grapher/Models/Charts')
| -rw-r--r-- | grapher/Models/Charts/ChartXY.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/grapher/Models/Charts/ChartXY.cs b/grapher/Models/Charts/ChartXY.cs index b17960b..c5c00d1 100644 --- a/grapher/Models/Charts/ChartXY.cs +++ b/grapher/Models/Charts/ChartXY.cs @@ -134,18 +134,22 @@ namespace grapher public static void SetLogarithmic(Chart chart) { + /* chart.ChartAreas[0].AxisX.Minimum = 0.001; chart.ChartAreas[0].AxisX.Maximum = 3500; chart.ChartAreas[0].AxisY.Minimum = 0.001; chart.ChartAreas[0].AxisY.Maximum = 10; chart.ChartAreas[0].AxisX.IsLogarithmic = true; chart.ChartAreas[0].AxisY.IsLogarithmic = true; + */ } public static void SetStandard(Chart chart) { + /* chart.ChartAreas[0].AxisX.IsLogarithmic = false; chart.ChartAreas[0].AxisY.IsLogarithmic = false; + */ } public void SetPointBinds(PointData combined, PointData x, PointData y) |