Ejemplo n.º 1
0
 /// <summary>
 /// Create a range marker for line charts and scatter plots
 /// </summary>
 /// <param name="rangeMarkerType"></param>
 /// <param name="color">an RRGGBB format hexadecimal number</param>
 /// <param name="startPoint">Must be between 0.0 and 1.0. 0.0 is axis start, 1.0 is axis end.</param>
 /// <param name="endPoint">Must be between 0.0 and 1.0. 0.0 is axis start, 1.0 is axis end.</param>
 public RangeMarker(RangeMarkerType rangeMarkerType, string color, double startPoint, double endPoint)
 {
     this.type = rangeMarkerType;
     this.color = color;
     this.startPoint = startPoint;
     this.endPoint = endPoint;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Create a range marker for line charts and scatter plots
 /// </summary>
 /// <param name="rangeMarkerType"></param>
 /// <param name="color">an RRGGBB format hexadecimal number</param>
 /// <param name="startPoint">Must be between 0.0 and 1.0. 0.0 is axis start, 1.0 is axis end.</param>
 /// <param name="endPoint">Must be between 0.0 and 1.0. 0.0 is axis start, 1.0 is axis end.</param>
 public RangeMarker(RangeMarkerType rangeMarkerType, string color, double startPoint, double endPoint)
 {
     this.type       = rangeMarkerType;
     this.color      = color;
     this.startPoint = startPoint;
     this.endPoint   = endPoint;
 }