Silverlight 4 toolkit, charting and lineSeries is null
- by Snake
Hi,
I create a Silverlight Chart, with the Silverlight 4 toolkit, the April release.
Consider the following chart:
<Grid x:Name="LayoutRoot" Background="White">
<Charting:Chart Title="Chart to test" Name="MySuperChart">
<Charting:LineSeries x:Name="MyLineSeries" Title="Something" />
</Charting:Chart>
</Grid>
So far so good. I can access the Series in the chart by MySuperChart.Series[0] But when I try to reference MyLineSeries, it appears to be null.
Full view