Completed
Last Updated: 16 Sep 2020 16:51 by ADMIN
Release R3 2020
ADMIN
Danail Vasilev
Created on: 10 Jun 2013 07:04
Category: HtmlChart
Type: Feature Request
12
ADD appearance options for the Series border in RadHtmlChart
Currenlty Series like Bubble, Bar, Column, Donut, Pie and Candlestick do not expose any appearance properties for the Series border. Expose appearance border properties like width, dashtype, color and opacity.

Temporary workaround for managing the border appearance:
Javascript:
	<script language="javascript">
		function pageLoad() {
			var chart = $find("RadHtmlChart1");
			chart._chartObject.options.series[0].border = {
				width: 2,
				color: "black",
				dashType: "dash",
				opacity: 0.2
			}
			chart.repaint();
		}
	</script>

ASPX:
	<telerik:RadHtmlChart ID="RadHtmlChart1" runat="server" Width="600" Height="400">
		<PlotArea>
			<Series>
				<telerik:ColumnSeries>
					<SeriesItems>
						<telerik:CategorySeriesItem Y="30" />
						<telerik:CategorySeriesItem Y="10" />
						<telerik:CategorySeriesItem Y="20" />
					</SeriesItems>
				</telerik:ColumnSeries>
			</Series>
		</PlotArea>
	</telerik:RadHtmlChart>

4 comments
ADMIN
Vessy
Posted on: 16 Sep 2020 16:51

Hi guys,

I am glad to inform you that the requested feature is now implemented in RadHtmlChart and is available as of R3 2020.

Regards,
Vessy
Progress Telerik

Five days of Blazor, Angular, React, and Xamarin experts live-coding on twitch.tv/CodeItLive , special prizes and more, for FREE?! Register now for DevReach 2.0(20).

adarsh
Posted on: 20 Oct 2017 09:22
not able to get the object for chart._chartObject
Naveed
Posted on: 19 May 2016 12:07
Need this
Roberto
Posted on: 21 Nov 2014 20:23
how can i add only the border-bottom dash ??