I am in the process of upgrading a fairly large project from the asp.net suite to the ajax suite, and have hit a rather strange bug.
I am attempting to upgrade the chart control and to test the functioanlity I am attempting to display a very simple graph from the demo's page
The problem is when I try to display this in a ascx file I get the 'Error loading radchart image' message box... The strange thing is that when I copy the above code to an aspx file on the same site it works perfectly - which I guess indicates that the configuration is OK. I have tired switching the DNN 'Supports Partial Rendering?' flag to no avail.
For the moment I will revert to the asp.net control, but if you can help it would be appreciated as I would prefer to only use one suite if possible.
Suite version : Q1 2009
DNN version : 4.6.2
I am attempting to upgrade the chart control and to test the functioanlity I am attempting to display a very simple graph from the demo's page
| <%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %> |
| <%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Charting" tagprefix="telerik" %> |
| <telerik:RadChart runat="server" Width="500px" ID="RadChart2" Skin="LightGreen" > |
| <Series> |
| <telerik:ChartSeries Name="series 1" Type="Bar"> |
| <Items> |
| <telerik:ChartSeriesItem YValue="5" /> |
| <telerik:ChartSeriesItem YValue="50" /> |
| <telerik:ChartSeriesItem YValue="500" /> |
| <telerik:ChartSeriesItem YValue="5000" /> |
| </Items> |
| </telerik:ChartSeries> |
| </Series> |
| <PlotArea> |
| <Appearance> |
| </Appearance> |
| <YAxis IsLogarithmic="true"> |
| </YAxis> |
| </PlotArea> |
| <ChartTitle> |
| <TextBlock Text="Logarithmic Axis"> |
| <Appearance TextProperties-Color="70, 143, 190"> |
| </Appearance> |
| </TextBlock> |
| </ChartTitle> |
| </telerik:RadChart> |
The problem is when I try to display this in a ascx file I get the 'Error loading radchart image' message box... The strange thing is that when I copy the above code to an aspx file on the same site it works perfectly - which I guess indicates that the configuration is OK. I have tired switching the DNN 'Supports Partial Rendering?' flag to no avail.
For the moment I will revert to the asp.net control, but if you can help it would be appreciated as I would prefer to only use one suite if possible.
Suite version : Q1 2009
DNN version : 4.6.2