Hello again, I have a problem showing information in TooltipsAppearance tags, inside clientTemplate.
On line 18, I have tried the following ways:
Valor: #=dataItem.Porcentaje#
Valor: #:dataItem.Porcentaje#
Valor: #=series.Porcentaje#
Valor: #:series.Porcentaje#
And I just get to show "undefined"
Somebody could help me? Thanks
The HTML code:
01.
<
telerik:RadHtmlChart
ID
=
"rChartSolXTipo"
runat
=
"server"
Transitions
=
"true"
Skin
=
"Silk"
>
02.
<
Appearance
>
03.
<
FillStyle
BackgroundColor
=
"White"
></
FillStyle
>
04.
</
Appearance
>
05.
<
ChartTitle
Text
=
"Solicitudes por tipo"
>
06.
<
Appearance
Align
=
"Center"
Position
=
"Top"
></
Appearance
>
07.
</
ChartTitle
>
08.
<
Legend
>
09.
<
Appearance
Position
=
"Right"
Visible
=
"true"
>
10.
</
Appearance
>
11.
</
Legend
>
12.
<
PlotArea
>
13.
<
Series
>
14.
<
telerik:DonutSeries
StartAngle
=
"90"
HoleSize
=
"65"
DataFieldY
=
"Porcentaje"
NameField
=
"TipoSol"
>
15.
<
LabelsAppearance
Position
=
"Center"
DataFormatString
=
"{0}%"
Visible
=
"True"
></
LabelsAppearance
>
16.
<
TooltipsAppearance
Color
=
"White"
>
17.
<
ClientTemplate
>
18.
Valor: #=dataItem.Porcentaje#
19.
</
ClientTemplate
>
20.
</
TooltipsAppearance
>
21.
</
telerik:DonutSeries
>
22.
</
Series
>
23.
</
PlotArea
>
24.
</
telerik:RadHtmlChart
>