Completed
Last Updated: 13 Oct 2014 07:15 by ADMIN
ADMIN
Marin Bratanov
Created on: 13 Nov 2012 09:16
Category: HtmlChart
Type: Feature Request
13
ADD Stacked 100% area, line column and bar charts to RadHtmlChart
For the time being you can stack 100% series through the chartObject. For example:
ASPX:
		<telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager>
		<script>
			function pageLoad() {
				var chart = $find("<%=ColumnChart1.ClientID%>");
				chart._chartObject.options.series[0].stack = { type: "100%" };
				chart.repaint();
			}
		</script>
		<telerik:RadHtmlChart runat="server" ID="ColumnChart1" Width="600px" Height="400px">
			<PlotArea>
				<Series>
					<telerik:ColumnSeries Name="Product 1">
						<SeriesItems>
							<telerik:CategorySeriesItem Y="15000" />
							<telerik:CategorySeriesItem Y="23000" />
							<telerik:CategorySeriesItem Y="10000" />
						</SeriesItems>
					</telerik:ColumnSeries>
					<telerik:ColumnSeries Name="Product 2">
						<SeriesItems>
							<telerik:CategorySeriesItem Y="35000" />
							<telerik:CategorySeriesItem Y="13000" />
							<telerik:CategorySeriesItem Y="20000" />
						</SeriesItems>
					</telerik:ColumnSeries>
				</Series>
				<XAxis>
					<Items>
						<telerik:AxisItem LabelText="1" />
						<telerik:AxisItem LabelText="2" />
						<telerik:AxisItem LabelText="3" />
					</Items>
				</XAxis>
			</PlotArea>
			<ChartTitle Text="Product sales for 2011">
			</ChartTitle>
			<Legend>
				<Appearance Position="Bottom" />
			</Legend>
		</telerik:RadHtmlChart>
2 comments
ADMIN
Misho
Posted on: 13 Oct 2014 07:15
The feature is implemented and will be available in Q3 2014.
Jay Z
Posted on: 03 Jun 2014 20:21
Yes please.