summaryrefslogtreecommitdiff
path: root/grapher/Models/Charts
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2020-09-22 03:16:36 -0700
committerJacob Palecki <[email protected]>2020-09-22 03:16:36 -0700
commit2c288f95f2c3791daf54299580e19439c3dd1b0c (patch)
tree2e26a4f3b64b2edd312afc79766f5f790f6fb9cb /grapher/Models/Charts
parentMostly works (diff)
downloadrawaccel-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.cs4
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)