public DataRowVisualProperties()
 {
     chartType         = DataRowChartType.Line;
     secondYAxis       = false;
     secondXAxis       = false;
     color             = Color.Empty;
     lineStyle         = DataRowLineStyle.Solid;
     startIndexZero    = false;
     lineWidth         = 1;
     scaleFactor       = 1.0;
     displayName       = String.Empty;
     isVisibleInLegend = true;
 }
 protected DataRowVisualProperties(DataRowVisualProperties original, Cloner cloner)
     : base(original, cloner)
 {
     this.chartType         = original.chartType;
     this.secondYAxis       = original.secondYAxis;
     this.secondXAxis       = original.secondXAxis;
     this.color             = original.color;
     this.lineStyle         = original.lineStyle;
     this.startIndexZero    = original.startIndexZero;
     this.lineWidth         = original.lineWidth;
     this.scaleFactor       = original.scaleFactor;
     this.displayName       = original.displayName;
     this.isVisibleInLegend = original.isVisibleInLegend;
 }
 public DataRowVisualProperties() {
   chartType = DataRowChartType.Line;
   secondYAxis = false;
   secondXAxis = false;
   color = Color.Empty;
   lineStyle = DataRowLineStyle.Solid;
   startIndexZero = false;
   lineWidth = 1;
   bins = 10;
   exactBins = false;
   scaleFactor = 1.0;
   displayName = String.Empty;
   isVisibleInLegend = true;
 }
 protected DataRowVisualProperties(DataRowVisualProperties original, Cloner cloner)
   : base(original, cloner) {
   this.chartType = original.chartType;
   this.secondYAxis = original.secondYAxis;
   this.secondXAxis = original.secondXAxis;
   this.color = original.color;
   this.lineStyle = original.lineStyle;
   this.startIndexZero = original.startIndexZero;
   this.lineWidth = original.lineWidth;
   this.bins = original.bins;
   this.exactBins = original.exactBins;
   this.scaleFactor = original.scaleFactor;
   this.displayName = original.displayName;
   this.isVisibleInLegend = original.isVisibleInLegend;
 }