コード例 #1
0
 /// <summary>
 /// Translate all PlotSurface X-Axes by shiftProportion
 /// </summary>
 public void TranslateXAxes(double shiftProportion)
 {
     if (XAxis1 != null)
     {
         XAxis1.TranslateRange(shiftProportion);
     }
     if (XAxis2 != null)
     {
         XAxis2.TranslateRange(shiftProportion);
     }
 }
コード例 #2
0
 /// <summary>
 /// Translate all PlotSurface X-Axes by shiftProportion
 /// </summary>
 public void TranslateXAxes(double shiftProportion)
 {
     if (XAxis1 != null)
     {
         XAxis1.TranslateRange(shiftProportion);
     }
     if (XAxis2 != null)
     {
         XAxis2.TranslateRange(shiftProportion);
     }
     for (int i = 0; i < xAxisOverrides_.Count; i++)
     {
         if (xAxisOverrides_[i] != null)
         {
             ((Axis)xAxisOverrides_[i]).TranslateRange(shiftProportion);
         }
     }
 }