When making business web applications, it is really useful with Funnel charts. This type is used a lot when making sales funnels!
Does not visualize data for some of the cases. I attached a project related to this bug. In the code there is an option with data which RadHtmlChart do visualize and there is option for data which RadHtmlChard don't visualize. All the code is located in Default.aspx PS: With tooltip commented data do visualized in both cases. Gregory.
It would be great to have this new chart type.
Stacking of bar and column series should allow grouping. This could be done by making the Stacked property not a boolean, but a string to denote the group name.
Hovering or clicking on the series name in the legend will highlight or toggle the visibility of the series.
Currently the Hay skin sets white color for the title, axes labels and legend in RadHtmlChart. For the time being the color of the mentioned elements can be changed through the TextStyle property - http://www.telerik.com/help/aspnet-ajax/htmlchart-appearance-labels-titles-font-settings.html.
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); }
I would like to be able to supply DateTime values for the x axis of an HTMLChart scatter line series to represent a timeline. Would it be possible to make this easier by having the control plot points plotted based upon the tick count of the value and add support for appropriate label format strings?
In a chart that has stacked bar series and a line series the bar series become column series when the chart is data-bound. The solution is to declare the BarSeries above the LineSeries as follows: <%--BarSeries are declared above the LineSeries--%> <telerik:BarSeries Name="B1"> <Items> <telerik:SeriesItem YValue="10" /> <telerik:SeriesItem YValue="20" /> <telerik:SeriesItem YValue="30" /> </Items> </telerik:BarSeries> <%--LineSeries are declared below the BarSeries--%> <telerik:LineSeries Name="L1"> <Items> <telerik:SeriesItem YValue="15" /> <telerik:SeriesItem YValue="10" /> <telerik:SeriesItem YValue="20" /> </Items> </telerik:LineSeries>