It has .NET frameworks 1.1, 2.0, 3.5 installed. Then I decided to integrate the Silverlight RadChart to my aspx page.
I applied VS2008 SP1, Silverlight SDK, and installed the Silverlight trial download, which prompted me to install Silverlight 4 plugin.
I was able to get the Silverlight Radchart demo to appear in my aspx page, but could not see where the data for the bars came from.
the demo worked but I saw no component with ID=RadChart1 The chart just ran out of ~\Images\RadChart.xap
I wanted to manually bind the chart data to a sqldatasource so I looked for a sample project. So I found a telerik sample that implements: Namespace Telerik.Chart.Examples.DataBinding.Automatic
I added references to Telerik.Web.UI and Telerik.Web.Design dlls to my project (from the Bin35 directory of the Telerik downloads)
I added the following imports to the project.
Imports
Telerik.Charting
Imports
Telerik.Web.UI
Imports
Telerik.Web.Design
But I get this error: Type 'Telerik.Web.UI.RadChart' is not defined.
I used gacutil to look in the GAC and saw that no Telerik dll is registered in the Framework 1.1 GAC.
web.config contains:
<
controls>
<
add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<
add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<
add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI"/>
</
controls>
Any help would be very appreciated.