Example #1
0
 /// <summary>
 /// Translate all PlotSurface Y-Axes by shiftProportion
 /// </summary>
 public void TranslateYAxes(double shiftProportion)
 {
     if (YAxis1 != null)
     {
         YAxis1.TranslateRange(shiftProportion);
     }
     if (YAxis2 != null)
     {
         YAxis2.TranslateRange(shiftProportion);
     }
 }
Example #2
0
 /// <summary>
 /// Translate all PlotSurface Y-Axes by shiftProportion
 /// </summary>
 public void TranslateYAxes(double shiftProportion)
 {
     if (YAxis1 != null)
     {
         YAxis1.TranslateRange(shiftProportion);
     }
     if (YAxis2 != null)
     {
         YAxis2.TranslateRange(shiftProportion);
     }
     for (int i = 0; i < yAxisOverrides_.Count; i++)
     {
         if (yAxisOverrides_[i] != null)
         {
             ((Axis)yAxisOverrides_[i]).TranslateRange(shiftProportion);
         }
     }
 }