This question is locked. New answers and comments are not allowed.
Hi,
I'm trying to make a GridView that will populate new columns as the user checks boxes.
Basically... this data:
Would show up like this:
DateTime, Value1, Value2, ... ,ValueX
July... 5 3 2
Where as the user checks a box, a new collection of DataPoints is added to GridViewData, which should then automatically generate a new column for the data.
I can't find how to bind a "ColumnCollection" so that as a new collection of DataPoints is added to GridViewData, it is automatically added to the GridView.
Is this behavior possible, or will I need to do the adding and removing and DateTime synchronizing manually?
Thanks
I'm trying to make a GridView that will populate new columns as the user checks boxes.
Basically... this data:
public class DataPoint{ public DateTime DateTime { get; set; } public double? Value { get; set; }}public RadObservableCollection<RadObservableCollection<DataPoint>> GridViewData { get; set; }Would show up like this:
DateTime, Value1, Value2, ... ,ValueX
July... 5 3 2
Where as the user checks a box, a new collection of DataPoints is added to GridViewData, which should then automatically generate a new column for the data.
I can't find how to bind a "ColumnCollection" so that as a new collection of DataPoints is added to GridViewData, it is automatically added to the GridView.
Is this behavior possible, or will I need to do the adding and removing and DateTime synchronizing manually?
Thanks