예제 #1
0
 /// <summary>
 /// Modification the dash type (<see cref="PlotFormat.DashType"/>).
 /// </summary>
 public void ModDashType(string SubKey, DashTypes DashType)
 {
     this.ModDashType(new[] { SubKey }, new[] { DashType });
 }
예제 #2
0
 public PlotFormat WithDashType(DashTypes dashtype)
 {
     return(new PlotFormat(baseLineFormat: this, dashType: dashtype));
 }