예제 #1
0
 /// <summary>
 /// Add an axis constraint to the plot surface. Axis constraints can
 /// specify relative world-pixel scalings, absolute axis positions etc.
 /// </summary>
 /// <param name="c">The axis constraint to add.</param>
 public void AddAxesConstraint(AxesConstraint c)
 {
     ps_.AddAxesConstraint(c);
 }
예제 #2
0
 /// <summary>
 /// Add an axis constraint to the plot surface. Axis constraints can
 /// specify relative world-pixel scalings, absolute axis positions etc.
 /// </summary>
 /// <param name="c">The axis constraint to add.</param>
 public void AddAxesConstraint( AxesConstraint c )
 {
     ps_.AddAxesConstraint( c );
 }
예제 #3
0
 /// <summary>
 /// Remove an axis constraint from the plot surface
 /// </summary>
 /// <param name="constraint">The constraint to remove.</param>
 public void RemoveAxesConstraint(AxesConstraint c)
 {
     ps_.RemoveAxesConstraint(c);
 }