Esempio n. 1
0
 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;
 }
Esempio n. 2
0
 public GoogleChartColumn(string columnID, string columnLabel, string columnDataType, GoogleChartSeries googleChartSeries)
     : this(columnID, columnLabel, columnDataType, googleChartSeries, null, null)
 {
 }