Hey guys,
Trying to add multiple lines to a Cartesian.LineSeries. I have 2 lists, that I need displayed. 1 is for a current customers data, the 2nd is for comparison to another customers data. All the data is in both lists. I can get the first list to show easily. But when trying to add a 2nd line to it it's not so easy.
Here is what I have so far.
<Grid>
<telerik:RadCartesianChart x:Name="MetricLineGraph" HorizontalAlignment="Left" VerticalAlignment="Top" Height="Auto" Width="Auto" MinHeight="300" MinWidth="300" Margin="10,10,10,10" >
<telerik:RadCartesianChart.HorizontalAxis>
<telerik:DateTimeContinuousAxis LabelFitMode="MultiLine"
LabelFormat="hh:mm:ss"/>
</telerik:RadCartesianChart.HorizontalAxis>
<telerik:RadCartesianChart.VerticalAxis>
<telerik:LinearAxis />
</telerik:RadCartesianChart.VerticalAxis>
<telerik:RadCartesianChart.Series>
<telerik:LineSeries ItemsSource="{Binding GraphItems}"
ValueBinding="MetricValue"
CategoryBinding="MetricTimeStamp"
Foreground="WhiteSmoke"
TextBlock.Foreground="White">
</telerik:LineSeries>
<telerik:LineSeries ItemsSource="{Binding LineGraphGroupCompareItems}"
ValueBinding="MetricValue"
Foreground="WhiteSmoke"
TextBlock.Foreground="White">
</telerik:LineSeries>
</telerik:RadCartesianChart.Series>
</telerik:RadCartesianChart>
</Grid>