diff options
| author | Jacob Palecki <[email protected]> | 2020-09-01 00:56:07 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-09-01 00:56:07 -0700 |
| commit | b5b87e24053c9f52a2edb5b1cb48f8e27e434ce1 (patch) | |
| tree | 16311322d41596a69cbd2932ae8fe9dafb45401e /grapher/Form1.cs | |
| parent | Set whole or by component with toolstrip item (diff) | |
| download | rawaccel-b5b87e24053c9f52a2edb5b1cb48f8e27e434ce1.tar.xz rawaccel-b5b87e24053c9f52a2edb5b1cb48f8e27e434ce1.zip | |
Show xy charts only when accel applied by component
Diffstat (limited to 'grapher/Form1.cs')
| -rw-r--r-- | grapher/Form1.cs | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/grapher/Form1.cs b/grapher/Form1.cs index f46c960..f496293 100644 --- a/grapher/Form1.cs +++ b/grapher/Form1.cs @@ -41,8 +41,7 @@ namespace grapher new ChartXY(AccelerationChart, AccelerationChartY), new ChartXY(VelocityChart, VelocityChartY), new ChartXY(GainChart, GainChartY), - showVelocityGainToolStripMenuItem, - new CheckBox[] { sensXYLock, weightXYLock, capXYLock }); + showVelocityGainToolStripMenuItem); ActiveValueTitle.AutoSize = false; ActiveValueTitle.Left = LockXYLabel.Left + LockXYLabel.Width; @@ -61,8 +60,7 @@ namespace grapher new ActiveValueLabelXY( new ActiveValueLabel(SensitivityActiveXLabel, ActiveValueTitle), new ActiveValueLabel(SensitivityActiveYLabel, ActiveValueTitle)), - "Sensitivity", - accelCharts); + "Sensitivity"); var rotation = new Option( rotationBox, @@ -82,8 +80,7 @@ namespace grapher new ActiveValueLabelXY( new ActiveValueLabel(WeightActiveXLabel, ActiveValueTitle), new ActiveValueLabel(WeightActiveYLabel, ActiveValueTitle)), - "Weight", - accelCharts); + "Weight"); var cap = new OptionXY( capBoxX, @@ -95,8 +92,7 @@ namespace grapher new ActiveValueLabelXY( new ActiveValueLabel(CapActiveXLabel, ActiveValueTitle), new ActiveValueLabel(CapActiveYLabel, ActiveValueTitle)), - "Cap", - accelCharts); + "Cap"); var offset = new Option( offsetBox, |