/// <summary>
 /// Initializes a new instance of the <see cref="GaugeLinearTrackBuilder" /> class.
 /// </summary>
 /// <param name="linearTrack">The linear gauge track.</param>
 public GaugeLinearTrackBuilder(GaugeLinearTrack linearTrack)
 {
     track = linearTrack;
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GaugeLinearPointer" /> class.
 /// </summary>
 public GaugeLinearPointer()
 {
     Margin = new ChartSpacing();
     Border = new ChartElementBorder();
     Track  = new GaugeLinearTrack();
 }
Beispiel #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GaugeLinearPointer" /> class.
 /// </summary>
 public GaugeLinearPointer()
 {
     Margin = new ChartSpacing();
     Border = new ChartElementBorder();
     Track = new GaugeLinearTrack();
 }
Beispiel #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GaugeLinearTrackBuilder" /> class.
 /// </summary>
 /// <param name="linearTrack">The linear gauge track.</param>
 public GaugeLinearTrackBuilder(GaugeLinearTrack linearTrack)
 {
     track = linearTrack;
 }
 public GaugeLinearTrackSerializer(GaugeLinearTrack track)
 {
     this.track = track;
 }