public void RemovehistogramRow(histogramRow row) {
     this.Rows.Remove(row);
 }
 public histogramRowChangeEvent(histogramRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddhistogramRow(histogramRow row) {
     this.Rows.Add(row);
 }