Completed
Last Updated: 07 Jun 2013 05:34 by Jon
ADMIN
Danail Vasilev
Created on: 19 Mar 2013 09:56
Category: HtmlChart
Type: Feature Request
4
ADD more appearance options to the markers in AreaSeries, LineSeries, ScatterSeries and ScatterLineSeries for RadHtmlChart
Currently there are only three properties exposed by the MarkersAppearance - MarkersType, BackgroundColor and Visible in AreaSeries, LineSeries, ScatterSeries and ScatterLineSeries. Expose more properties like Size, BorderColor and BorderWidth for the markers in the mentioned Series. For the time being the following workaround can be used:

        function pageLoad() {
            var circle = document.getElementsByTagName("circle");
            for (var i = 0; i < circle.length; i++) {
                //Modify the size of the marker
                circle[i].r.baseVal.value = 15;
            }
            //Modify the width of the marker border
            $telerik.$('circle').attr('stroke-width', 13);
        }
1 comment
Jon
Posted on: 11 Apr 2013 14:47
To be competitive this is a must, has my vote!  Markers and tooltip appearance.