This question is locked. New answers and comments are not allowed.
Hi!
I am new to using Telerik. I am getting frustrated because I am trying to use BarChart in my code but I am always encountering the error "Error HRESULT E_FAIL has been returned from a call to a COM component." in the InitializeComponent()
If it helps, sometimes it asks me to browse to a file named "ThemePallete.cs" or "PresenterBase.cs" but I am not sure where to find this.
Here is my code (just got from the QuickStart guide):
Hope you can help me! Thank you very much!
I am new to using Telerik. I am getting frustrated because I am trying to use BarChart in my code but I am always encountering the error "Error HRESULT E_FAIL has been returned from a call to a COM component." in the InitializeComponent()
If it helps, sometimes it asks me to browse to a file named "ThemePallete.cs" or "PresenterBase.cs" but I am not sure where to find this.
Here is my code (just got from the QuickStart guide):
<telerik:RadCartesianChart x:Name="sampleChart" PaletteName="None"> <telerik:RadCartesianChart.HorizontalAxis> <telerik:CategoricalAxis/> </telerik:RadCartesianChart.HorizontalAxis> <telerik:RadCartesianChart.VerticalAxis> <telerik:LinearAxis/> </telerik:RadCartesianChart.VerticalAxis> <telerik:LineSeries ItemsSource="{Binding}"> </telerik:LineSeries> </telerik:RadCartesianChart>public void InitializeData() { this.sampleChart.DataContext = new double[] { 20, 30, 50, 10, 60, 40, 20, 80 };}Hope you can help me! Thank you very much!