Completed
Last Updated: 15 May 2013 09:31 by ADMIN
ADMIN
Niko
Created on: 05 May 2013 17:28
Category: HtmlChart
Type: Bug Report
0
FIX stacked bar series looking as column series in a combination with line series in a data-bound chart
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>
0 comments