Hi.. Marin
1) I not modified the sample..i have install the last official release and execute the sample
at the end of the installation.
2) You demo online work OK..
I create a new project and i see the problem: this is the code of the page:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication4.WebForm1" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<
head
runat
=
"server"
>
<
title
></
title
>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
>
<
telerik:RadScriptManager
ID
=
"RadScriptManager1"
runat
=
"server"
>
<
Scripts
>
<
asp:ScriptReference
Assembly
=
"Telerik.Web.UI"
Name
=
"Telerik.Web.UI.Common.Core.js"
>
</
asp:ScriptReference
>
<
asp:ScriptReference
Assembly
=
"Telerik.Web.UI"
Name
=
"Telerik.Web.UI.Common.jQuery.js"
>
</
asp:ScriptReference
>
<
asp:ScriptReference
Assembly
=
"Telerik.Web.UI"
Name
=
"Telerik.Web.UI.Common.jQueryInclude.js"
>
</
asp:ScriptReference
>
</
Scripts
>
</
telerik:RadScriptManager
>
<
telerik:RadAjaxManager
ID
=
"RadAjaxManager1"
runat
=
"server"
>
</
telerik:RadAjaxManager
>
<
div
>
<
telerik:RadHtmlChart
runat
=
"server"
ID
=
"PieChart1"
EnableEmbeddedBaseStylesheet
=
"False"
EnableEmbeddedSkins
=
"False"
Width
=
"800"
Height
=
"500"
Transitions
=
"true"
>
<
Appearance
>
<
FillStyle
BackgroundColor
=
"White"
/>
</
Appearance
>
<
ChartTitle
Text
=
"Browser Usage for April 2012"
>
<
Appearance
Align
=
"Center"
BackgroundColor
=
"White"
Position
=
"Top"
/>
</
ChartTitle
>
<
Legend
>
<
Appearance
BackgroundColor
=
"White"
Position
=
"Right"
Visible
=
"true"
/>
</
Legend
>
<
PlotArea
>
<
Appearance
>
<
FillStyle
BackgroundColor
=
"White"
/>
</
Appearance
>
<
Series
>
<
telerik:PieSeries
StartAngle
=
"90"
>
<
LabelsAppearance
Position
=
"Circle"
DataFormatString
=
"{0} %"
/>
<
TooltipsAppearance
DataFormatString
=
"{0} %"
/>
<
Items
>
<
telerik:SeriesItem
BackgroundColor
=
"#ff9900"
Exploded
=
"true"
Name
=
"Internet Explorer"
YValue
=
"18"
/>
<
telerik:SeriesItem
BackgroundColor
=
"#cccccc"
Exploded
=
"false"
Name
=
"Firefox"
YValue
=
"35"
/>
<
telerik:SeriesItem
BackgroundColor
=
"#999999"
Exploded
=
"false"
Name
=
"Chrome"
YValue
=
"38"
/>
<
telerik:SeriesItem
BackgroundColor
=
"#666666"
Exploded
=
"false"
Name
=
"Safari"
YValue
=
"4"
/>
<
telerik:SeriesItem
BackgroundColor
=
"#333333"
Exploded
=
"false"
Name
=
"Opera"
YValue
=
"2"
/>
</
Items
>
</
telerik:PieSeries
>
</
Series
>
</
PlotArea
>
</
telerik:RadHtmlChart
>
</
div
>
</
form
>
</
body
>
</
html
>
This sample work OK, but if the value of the SeriesItem it's not an integer, in this case in you example the first value is: 18.3,
i retrive an error javascritp in Image1: the number 18.3 is transform in 18,3 and generate and error.
3) I have test in other browers an to another server, but the result in the same.
4) I test on markup insert the value in the markup and not from the sqlserver.
Thanks
Aurelio