Hello, I'm trying to evaluate some feature on the Chart controls, but they don't show up in my Window at all. I started by doing something complex, then moved down to a really simple binding, then no binding (just some hard coded data in XAML itself) and that's when I realized that the problem was not the binding, but the chart itself. This is the code I have:
And I'm referencing two assemblies only:
- Telerik.Windows.Controls
- Telerik.Windows.ChartControls
The version of those assemblies is 2013.2.724.45. And I installed the demo version on 8/19/2013, so I'm still under valid trial time.
Is there anything I'm missing?
<Window x:Class="ChartControlEvaluationProject.SimpleWindow" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" Title="Simple Window"> <Grid> <telerik:RadCartesianChart x:Name="chart"> <telerik:RadCartesianChart.HorizontalAxis> <telerik:CategoricalAxis /> </telerik:RadCartesianChart.HorizontalAxis> <telerik:RadCartesianChart.VerticalAxis> <telerik:LinearAxis /> </telerik:RadCartesianChart.VerticalAxis> <telerik:RadCartesianChart.Series> <telerik:LineSeries Stroke="Orange" StrokeThickness="2"> <telerik:LineSeries.DataPoints> <telerik:CategoricalDataPoint Value="20" /> <telerik:CategoricalDataPoint Value="40" /> <telerik:CategoricalDataPoint Value="35" /> <telerik:CategoricalDataPoint Value="40" /> <telerik:CategoricalDataPoint Value="30" /> <telerik:CategoricalDataPoint Value="50" /> </telerik:LineSeries.DataPoints> </telerik:LineSeries> </telerik:RadCartesianChart.Series> </telerik:RadCartesianChart> </Grid></Window>And I'm referencing two assemblies only:
- Telerik.Windows.Controls
- Telerik.Windows.ChartControls
The version of those assemblies is 2013.2.724.45. And I installed the demo version on 8/19/2013, so I'm still under valid trial time.
Is there anything I'm missing?
