Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of <see cref="MarkerViewModel"/> class.
 /// </summary>
 /// <param name="row">The number of marker.</param>
 /// <param name="collection">A collection of data series.</param>
 /// <param name="converters">A value indicating should converters be used or not.</param>
 protected MarkerViewModel(int row, DataCollection collection, bool converters)
 {
     this.row            = row;
     this.dataCollection = collection;
     this.useConverters  = converters;
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of <see cref="MarkerViewModel"/> class that uses converters.
 /// </summary>
 /// <param name="row">The number of marker.</param>
 /// <param name="collection">A collection of data series.</param>
 public MarkerViewModel(int row, DataCollection collection) :
     this(row, collection, true)
 { /* Nothing to do here */
 }