I've got a program doing some processing of a CSV file and it's producing a DataTable as an output. I'm binding this to a DataGrid like so:
<DataGrid Name="GridTable" ItemsSource="{Binding OutputData}" />
Everything seems to work fine. The DataTable is produced, the DataGrid get's updated. But inexplicably the columns (type Double) don't seem to display their data. The first column (type int) works fine:
When I double check the DataTable structure it's all there, and all the correct type. I'm getting no exceptions:
The data binding clearly works as it's showing the columns and has the correct value in the first column.
Has anyone come across this before? Cheers