or
RadChart1.Clear(); // SETTING AXISES //SetXAxis(0); RadChart1.PlotArea.XAxis.LayoutMode = ChartAxisLayoutMode.Between; RadChart1.PlotArea.YAxis.AutoScale = true; RadChart1.PlotArea.YAxis.Step = 6; RadChart1.PlotArea.XAxis.AutoScale = true; RadChart1.PlotArea.XAxis.Step = 10; RadChart1.IntelligentLabelsEnabled = false; //SetYAxis(500); // SETTING SERIES ChartSeries Series1 = new ChartSeries(); RadChart1.Series.Add(Series1); Series1.Name = "Electric"; Series1.Type = ChartSeriesType.Line; Series1.Appearance.LabelAppearance.Visible = false; ChartSeries Series2 = new ChartSeries(); RadChart1.Series.Add(Series2); Series2.Name = "Gas"; Series2.Type = ChartSeriesType.Line; Series2.YAxisType = ChartYAxisType.Secondary; Series2.Appearance.LabelAppearance.Visible = false; //Load Series Data int xSeries=0; foreach (ChartSeries ChartSeries in RadChart1.Series) { for (int i = 0; i < ProcessData.Length - 2000; i++) { String[] Channels = ProcessData[i].Split(','); ChartSeries.AddItem(Convert.ToDouble(Channels[xSeries + 1])); } xSeries++; }<telerik:RadListBox ID="DepartmentsListBox" runat="server" CheckBoxes="true" SelectionMode="Multiple" Width="95%" DataSourceID="DepartmentsDataSource" DataTextField="Name" DataValueField="DepartmentID" OnDataBound="DepartmentsListBox_DataBound"></telerik:RadListBox><asp:ObjectDataSource ID="DepartmentsDataSource" runat="server" SelectMethod="GetDepartments" TypeName="Datamex.Projects.Nebulus.BusinessLogics.Departments"></asp:ObjectDataSource>protected void DepartmentsListBox_DataBound(object sender, EventArgs e){ foreach (RadListBoxItem item in DepartmentsListBox.Items) { item.Checked = hc.DepartmentHourCategoryLinks.Any(l => l.DepartmentID == Guid.Parse(item.Value)); }}<asp:RequiredFieldValidator ID="DepartmentsValidator" runat="server" ControlToValidate="DepartmentsListBox" ValidationGroup="Save" CssClass="Validator" Text="*" ErrorMessage="<%$ Resources:Resources, DepartmentsRequiredMessage %>" />Hi Telerik Team,
i hav attached my application template design.In Master Page i will be having
RadAjaxLoadingPanel
but my requirement is that whatever i do in virtual scrolling grid in content page,that grid portion alone should get postback rather getting the whole page postback.In Content Page there may be some other controls that should be controlled by master page loading panel.