Hi,
in my vb.net code I polpulated a datatable connecting to SQL server as following:
***************************************************
adapter = New SqlDataAdapter(MyQuery, SQLconn)
adapter.SelectCommand.CommandTimeout = 0
T_Data = New DataTable
adapter.Fill(T_Data)
***************************************************
Then I import this datatable into sfdatagrid in order to visualize it into new form temp:
Temp.SfDataGrid1.DataSource = T_Data
Temp.ShowDialog()
A column of this datatable reports a percentage value:
∆_14g_Data UP Down
38.06
-0.79
4.27
-2.84
-11.9
-42.01
1.77
-28.78
-49.84
-22.51
33.52
My question is if I can modifying this column using GridProgressBar without adding new column (I wanna change Style) as reported in you example:
Me.sfDataGrid.Columns.Add(New GridProgressBarColumn() With {.MappingName = "SoftwareProficiency", .HeaderText = "Software Proficiency", .Maximum = 100, .Minimum = 0, .ValueMode = ProgressBarValueMode.Percentage})
Is it possible?
Thank in advanced
Gio