I have HtmlChart control which works from Visual Studio 2015, but not when deployed on a Web Server. When View Source, the Web Server page source does not have the svg tag. The source is below. The Telerik dll version is 2016.2.504.45, size 26,416 KB, dated 5/23/2016 11:25 AM. How can I correct the behavior on the web server please?
<
svg
xmlns
=
"http://www.w3.org/2000/svg"
style
=
"left: 0px; top: -0.36px; width: 100%; height: 100%; overflow: hidden;"
version
=
"1.1"
>
<
telerik:RadHtmlChart
ID
=
"rhcSummary"
runat
=
"server"
Height
=
"200"
Width
=
"700"
>
<
PlotArea
>
<
Series
>
<
telerik:ColumnSeries
Name
=
"OpenClaims"
DataFieldY
=
"Value"
>
<
Appearance
FillStyle-BackgroundColor
=
"Green"
/>
<
TooltipsAppearance
BackgroundColor
=
"LightGray"
>
<
ClientTemplate
>
#= dataItem.Tooltip #
</
ClientTemplate
>
</
TooltipsAppearance
>
</
telerik:ColumnSeries
>
</
Series
>
<
XAxis
Name
=
"Statuses"
DataLabelsField
=
"Meaning"
MajorTickSize
=
"1"
MinorTickSize
=
"1"
Step
=
"1"
/>
<
YAxis
Name
=
"Counts"
MajorTickSize
=
"5"
MinorTickSize
=
"5"
Step
=
"10"
/>
</
PlotArea
>
<
Legend
>
<
Appearance
Visible
=
"false"
/>
</
Legend
>
</
telerik:RadHtmlChart
>