You can create 100% stacked chart since 2014 Q3. This feature is
available in all Series that support the
Stacked Series functionality.
To create a chart with 100% stacked series you should set the StackType property of
the Series to Stack100 and the Stacked property
to true. This can be done only to the first series, the rest will automatically
inherit the setting.
<
telerik:RadHtmlChart
runat
=
"server"
ID
=
"RadBarChart"
Width
=
"300px"
Height
=
"250px"
>
<
PlotArea
>
<
Series
>
<
telerik:BarSeries
DataFieldY
=
"Value1"
StackType
=
"Stack100"
>
</
telerik:BarSeries
>
<
telerik:BarSeries
DataFieldY
=
"Value2"
>
</
telerik:BarSeries
>
</
Series
>
</
PlotArea
>
</
telerik:RadHtmlChart
>