or

Please any one help?
Please find the below and find the attached images too.
If generate the chart first it showing the results in image Chart View Issue Due to number of x-Axis scale points, on x-axis results pulling from -200 to +300
I agree with the below view, because due to thousands of scaling points x-Axis we can’t see them directly, the data going to be overlap with beside scaling points. That’s way x-axis data is not showing in proper order.
Chart View Issue Due to number of x-Axis scale points: IF POSSIBLE, IF WE HAVE ANY OTHER OPTION TO RECTIFY THE ISSUE WITH X-AXIS SCALING POINTS VIEW, and PLEASE SUGGEST.
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="DisplayMessage.ascx.cs" Inherits="Telerik.UserControls.DisplayMessage" %><%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %><telerik:RadScriptBlock ID="RadScriptBlock1" runat="server"> <script type="text/javascript"> //<![CDATA[ $(document).ready(function () { alert("here uc"); }); ]]> </script></telerik:RadScriptBlock>
RadFormDecorator place is top of page after Scriptmanager<telerik:RadFormDecorator ID="_FormDecorator" Runat="server" DecoratedControls="All" Skin="Sunset" EnableRoundedCorners="true" />// Called from Devexpress ASPxGridView1_ParseValue on Insert/Updateprivate static long LongFromString(Object value){ if (value == null || String.IsNullOrEmpty((String)value)) { return 0; } else { TimeSpan span = TimeSpan.Parse((String)value); return span.Ticks; }}Here, one method is for the Grid rows and one is for edit mode.// Called from Devexpress ASPxGridView1_CellEditorInitialize on Select// AND Devexpress ASPxGridView1_CustomColumnDisplayText on Selectprivate static String StringFromBigInt(Object Value){ TimeSpan span = new TimeSpan((long)Value); if (span.Days != 0) return span.ToString("c"); String str = span.ToString(@"hh\:mm\:ss"); return String.Format("{0}", str);}Hi, I need to display a loading panel whenever I click on any button inside a RadToolbar. Thanks.
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" DefaultLoadingPanelID="RadAjaxLoadingPanel1"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="RadToolBar1"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="divDataEntry" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManager> <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Skin="Default" /><div id="divDataEntry" runat="server"> <telerik:RadTextBox ID="rtbTxtBox" runat="server" Width="10em" MaxLength="20" /></div> <telerik:RadToolBar ID="RadToolBar1" runat="server" Skin="Office2010Blue" ForeColor="Black" OnClientButtonClicked="OnClientButtonClicked" OnClientButtonClicking="OnClientButtonClicking" OnButtonClick="RadToolBar1_ButtonClick"> <Items> <telerik:RadToolBarButton runat="server" Owner="RadToolBar1" Text="Add" ForeColor="Black" ImageUrl="~/Telerik/Images/add.gif" CommandName="addcmd" Value="add" /> <telerik:RadToolBarButton IsSeparator="true" /> <telerik:RadToolBarButton runat="server" Owner="RadToolBar1" Text="Reset" ForeColor="Black" ImageUrl="~/Telerik/Images/Refresh.gif" CommandName="resetcmd" Value="reset" /> <telerik:RadToolBarButton IsSeparator="true" /> <telerik:RadToolBarButton runat="server" Owner="RadToolBar1" Text="Clear" ForeColor="Black" ImageUrl="~/Telerik/Images/Undo.gif" CommandName="clearcmd" Value="clear" /> <telerik:RadToolBarButton IsSeparator="true" /> <telerik:RadToolBarButton runat="server" Owner="RadToolBar1" Text="Save" ForeColor="Black" ImageUrl="~/Telerik/Images/Save.gif" CommandName="savecmd" Value="save" ValidationGroup="required" /> </Items> </telerik:RadToolBar>