Declined
Last Updated: 26 Feb 2015 18:40 by ADMIN
ADMIN
Danail Vasilev
Created on: 05 Sep 2014 07:03
Category: HtmlChart
Type: Feature Request
0
ADD distance property for labels in Pie and Donut chart
For the time being the property can be set through the kendoWdiget:

        <script>
            function pageLoad() {
                var kendoWidget = $find("<%=RadHtmlChart1.ClientID%>")._chartObject;
                kendoWidget.options.series[0].labels.distance = 20;
                kendoWidget.redraw();
            }
        </script>
        <telerik:RadHtmlChart ID="RadHtmlChart1" runat="server" Width="400px" Height="400px">
            <PlotArea>
                <Series>
                    <telerik:PieSeries>
                        <SeriesItems>
                            <telerik:PieSeriesItem Y="30" />
                            <telerik:PieSeriesItem Y="10" />
                            <telerik:PieSeriesItem Y="20" />
                        </SeriesItems>
                    </telerik:PieSeries>
                </Series>
            </PlotArea>
        </telerik:RadHtmlChart>
1 comment
ADMIN
Danail Vasilev
Posted on: 26 Feb 2015 18:39
Declined - Item is a duplicate of http://feedback.telerik.com/Project/108/Feedback/Details/65341