Completed
Last Updated: 09 Nov 2015 12:52 by Capital
ADMIN
Danail Vasilev
Created on: 08 Jul 2013 16:29
Category: HtmlChart
Type: Bug Report
0
Axes and Series Items are not preserved after postback for a programmatically created RadHtmlChart
When Series are created programmatically, Axes settings are not preserved after postback. The workaround is to create an empty series in the markup. For example:

        <telerik:RadHtmlChart ID="RadHtmlChart1" runat="server">
...
            <PlotArea>
                <YAxis>...</YAxis>
                <XAxis>...</XAxis>
                <Series>
                    <telerik:ScatterLineSeries Name=" ">
                        <Appearance FillStyle-BackgroundColor="Transparent"></Appearance>
                    </telerik:ScatterLineSeries>
                </Series>
            </PlotArea>
        </telerik:RadHtmlChart>
1 comment
Capital
Posted on: 09 Jul 2013 01:53
Please update this issue because of rebuilding chart after remove LineSeries seem uncomfortable and not performance.I use ajax for update chart so i want to remove only one LineSeries without redraw other LineSeries