// here is my definition
public class METRIC
{
public class RECORD
{
public object UnitPrice { get; set; }
}
}
// the collection in which i store the data collected from the database, which is then added to the datasource for SfDataGrid
private readonly ObservableCollectionAllMetrics = new ObservableCollection ();
// my column definition for the affected column
{
SfDataGrid.Columns.Add(new GridTextColumn()
{
HeaderText = "UnitPrice",
MappingName = "UnitPrice",
CellStyle = new CellStyleInfo() { HorizontalAlignment = HorizontalAlignment.Right, VerticalAlignment = VerticalAlignment.Center },
MinimumWidth = 75,
AllowEditing = true,
AllowFiltering = false,
Visible = true
});
}
Recommended approach – exe will perform automatic configuration
Please find the patch setup here:
Advanced approach – use only if you have specific needs and can directly replace existing assemblies for your build environment Please find the patch assemblies alone from:
Please find the NuGet’s from the below location:
|