or

| private void OnChildGridLoaded(object sender, RoutedEventArgs e) |
| { |
| // Pull data from the detail table based on the relation. |
| var dataRowView = (DataRowView)((RadGridView)sender).ParentRow.DataContext; |
| var ds = dataRowView.DataView.Table.DataSet; |
| var childData = dataRowView.CreateChildView(ds.Relations["BudgetRelation"]); |
| if (((ComboBoxValues.ComboValues)cmbActivityType.SelectedValue).Id != 0) |
| { |
| dv = new DataView(childData.ToTable(), "ActivityTypeID=" + ((ComboBoxValues.ComboValues)cmbActivityType.SelectedValue).Id, "", DataViewRowState.CurrentRows); |
| ((RadGridView)sender).DataContext = dv; |
| } |
| else |
| ((RadGridView)sender).DataContext = childData; |
| ((GridViewComboBoxColumn)((RadGridView)sender).Columns["ActivityTypeName"]).ItemsSource = ComboBoxValues.GetComboValues(dtActivityType); |
| } |

I have a table that looks like this:
Date_time, sensor_port_number, value
There is more than 1 “sensor_port_number”
How would you display this data in your chart so that all “sensor_port_number” values are displayed in the same chart
So each “sensor_port_number” is series data
Can your product do this? and if yes can you tell me how please.
thanks,
martin