public GoogleChartColumn(string columnID, string columnLabel, string columnDataType, GoogleChartSeries googleChartSeries, string columnDataRole, GoogleChartProperty columnProperty)
 {
     ColumnID = columnID;
     ColumnLabel = columnLabel;
     ColumnDataType = columnDataType;
     GoogleChartSeries = googleChartSeries;
     ColumnDataRole = columnDataRole;
     ColumnProperty = columnProperty;
 }
 public GoogleChartColumn(string columnDataType, string columnDataRole, GoogleChartProperty columnProperty)
     : this(null, null, columnDataType, null, columnDataRole, columnProperty)
 {            
 }