Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
172 views
I'm trying to put two rad gauges on top of each other. If I set the labels visible = false for the top gauge, it has a completely different size than the bottom. Why does this happen?
aspx code:
<telerik:RadLinearGauge runat="server" ID="rlgOverHeadActual" Width="590px" Height="70px"
                 Skin="Windows7"
               Style="float: left; " ResolvedRenderMode="Classic" >
 
               <Pointer Shape="BarIndicator" Size="15"  Color="#D8B179"   >
                   <Track Color="#646262" Visible="true" Opacity="0.4" />
               </Pointer>     
               <Scale Vertical="false"    >
                    
                    <MajorTicks Visible="false" Size="20" Color="Black"/>
                    <MinorTicks Visible="false" Size="10" Color="Black" />
                    <Labels Visible="false"  />
 
                    <Ranges   >
                        
                     </Ranges>
               </Scale>
                
          </telerik:RadLinearGauge><telerik:RadLinearGauge runat="server" ID="rlgOverhead" Width="590px" Height="70px"
                 Skin="Windows7"
               Style="float: left;" ResolvedRenderMode="Classic" >
 
               <Pointer Shape="BarIndicator" Size="15"  Color="#566D8F"   >
                   <Track Color="#646262" Visible="true" Opacity="0.4" />
               </Pointer>     
               <Scale Vertical="false"    >
                    
                    <MajorTicks Visible="true" Size="20" Color="Black"/>
                    <MinorTicks Visible="true" Size="10" Color="Black" />
                    <Labels  />
 
                    <Ranges   >
                        
                     </Ranges>
               </Scale>
          </telerik:RadLinearGauge>
          <asp:Label ID="lbltest" runat="server"></asp:Label>
         <asp:SqlDataSource ID="sqlOverHead" runat="server"
            ConnectionString="<%$ ConnectionStrings:IntranetConnectionString %>"
            SelectCommand="USP_Intranet_Select_Overhead" SelectCommandType="StoredProcedure"></asp:SqlDataSource>

VB Code with some formatting options that I'm doing:
Private Sub OverHeadGauge()
       Dim dvOverHeadGauge As DataView
       Dim decOHBudgetAmount As Decimal = 0
       Dim decOHExpenseAmount As Decimal = 0
       Dim dtOverHeadGoodThrough As DateTime = "8/1/2014"
       dvOverHeadGauge = CType(sqlOverHead.Select(DataSourceSelectArguments.Empty), DataView)
       '        intFiscalYear = CType(dv.Table.Rows(0)(0), Integer)
       decOHBudgetAmount = CType(dvOverHeadGauge.Table.Rows(0)(0), Decimal)
       decOHBudgetAmount = Math.Round(decOHBudgetAmount / 1000000, 2)
       decOHExpenseAmount = CType(dvOverHeadGauge.Table.Rows(0)(1), Decimal)
       decOHExpenseAmount = Math.Round(decOHExpenseAmount / 1000000, 2)
       dtOverHeadGoodThrough = CType(dvOverHeadGauge.Table.Rows(0)(2), DateTime)
       Dim decMonthscale As Decimal = decOHBudgetAmount / 12
       Dim mthFY As Integer = 0
       Select Case Month(dtOverHeadGoodThrough)
           Case 1
               mthFY = 7
           Case 2
               mthFY = 8
           Case 3
               mthFY = 9
           Case 4
               mthFY = 10
           Case 5
               mthFY = 11
           Case 6
               mthFY = 12
           Case 7
               mthFY = 1
           Case 8
               mthFY = 2
           Case 9
               mthFY = 3
           Case 10
               mthFY = 4
           Case 11
               mthFY = 5
           Case 12
               mthFY = 6
       End Select
 
       decMonthscale = decMonthscale * mthFY
 
       'Set the top grid
       rlgOverHeadActual.Scale.Min = 0
       rlgOverHeadActual.Scale.Max = Math.Round(decOHBudgetAmount + 0.5, 0)
 
       rlgOverHeadActual.Pointer.Value = decOHExpenseAmount
       'rlgOverHeadActual.Scale.Labels.Visible = False
       rlgOverHeadActual.Scale.MinorTicks.Visible = False
       rlgOverHeadActual.Scale.MajorTicks.Visible = False
       rlgOverHeadActual.Scale.Labels.Format = "${0}m"
       'rlgOverHeadActual.Scale.Labels.Font = "15px 'PT Sans', sans-serif"
 
       If decOHExpenseAmount > decOHBudgetAmount Then
           rlgOverHeadActual.Pointer.Color = Drawing.Color.Red
       End If
 
 
       'decOHExpenseAmount = decOHBudgetAmount * 9
       rlgOverhead.Scale.Min = 0
       rlgOverhead.Scale.Max = Math.Round(decOHBudgetAmount + 0.5, 0)
       rlgOverhead.Scale.MajorUnit = 1
       rlgOverhead.Scale.MinorUnit = 0.1
       rlgOverhead.Pointer.Value = decMonthscale
       rlgOverhead.Scale.Labels.Format = "${0}m"
       'rlgOverhead.Scale.Labels.Font = "15px 'PT Sans', sans-serif"
 
 
       Dim gr1 As New GaugeRange()
       Dim gr2 As New GaugeRange()
 
       gr1.From = decOHBudgetAmount
       gr1.To = rlgOverhead.Scale.Max
       gr1.Color = Drawing.ColorTranslator.FromHtml("#B14747") 'Drawing.Color.Red
 
    
 
       rlgOverhead.Scale.Ranges.Add(gr1)
       'rlgOverhead.Scale.Ranges.Add(gr2)
 
 
 
 
 
   End Sub


Danail Vasilev
Telerik team
 answered on 06 Oct 2014
1 answer
123 views
I am trying to get the HTMLCharts working on my Final Project for school. The working fine in Visual Studio's IIS Express, but when I move them to the school's webserver I get the following error;

Server Error in '/' Application.Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.

Parser Error Message: Could not load file or assembly 'Telerik.Web.UI' or one of its dependencies. The system cannot find the file specified.

Source Error:

[No relevant source lines]
Source File: none    Line: 0

Assembly Load Trace: The following information can be helpful to determine why the assembly 'Telerik.Web.UI' could not be loaded.

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.1025
Danail Vasilev
Telerik team
 answered on 06 Oct 2014
1 answer
139 views
Hi everyone,
I have a problem with formatting negative values. 
    I have number :   1234567,892 and I need format it:   12,334,567.892  
    I have number : - 1234567,892 and I need format it: - 12,334,567.892 
But my result when I use DataFormatString "###,###,###.###":
     1234567,892    => 12,334,567.892  : Correct
   - 123,892            => - ,123,892            : Not correct   (I need -123,892)
     123,892            =>    ,123,892            : Not correct   (I need  123,892)
Have you any ideas ?
Thanks you very much !

P/s: My code
 <telerik:RadHtmlChart runat="server" ID="rcProfile" Height="380px" PlotArea-Appearance-Visible="false">                                                
                                                <PlotArea>
                                                    <Appearance>
                                                        <FillStyle BackgroundColor="White" />                                                        
                                                    </Appearance>
                                                    <Series>
                                                        <telerik:ColumnSeries DataFieldY="VAL_P" Name="Công suất" Stacked="false" ColorField="Blue"
                                                            Spacing="0" Gap="0">
                                                            <Appearance>
                                                                <FillStyle BackgroundColor="#F0AD4E" />                                                                
                                                            </Appearance>
                                                            <LabelsAppearance Visible="false">
                                                                <TextStyle Color="Red" />
                                                            </LabelsAppearance>
                                                            <LabelsAppearance DataFormatString="###,###,###,###.###"></LabelsAppearance>
                                                            <TooltipsAppearance BackgroundColor="White" DataFormatString="###,###,###,###.###" />
                                                        </telerik:ColumnSeries>
                                                    </Series>
                                                    <XAxis DataLabelsField="GIO_HTHI" >
                                                        <MajorGridLines Visible="false" Color="Blue" />
                                                        <MinorGridLines Visible="false" Color="Blue" />
                                                        <LabelsAppearance RotationAngle="75">
                                                        </LabelsAppearance>
                                                        <TitleAppearance Text="Thời gian">
                                                            <TextStyle FontFamily="Time new roman"  />
                                                        </TitleAppearance>
                                                    </XAxis>
                                                    <YAxis>
                                                        <MinorGridLines Visible="false" />
                                                        <MajorGridLines Color="WhiteSmoke" />
                                                        <TitleAppearance Text="kWh">
                                                            <TextStyle FontFamily="Time new roman" />
                                                        </TitleAppearance>
                                                    </YAxis>
                                                </PlotArea>
                                                <Legend>
                                                    <Appearance Visible="false">
                                                    </Appearance>
                                                </Legend>
                                                <ChartTitle Text="BIỂU ĐỒ PHỤ TẢI">
                                                    <Appearance>
                                                        <TextStyle Bold="true" FontFamily="Time new roman" Color="Blue" />
                                                    </Appearance>
                                                </ChartTitle>
                                            </telerik:RadHtmlChart>
Danail Vasilev
Telerik team
 answered on 06 Oct 2014
1 answer
81 views
Hi,

I am working on telerik rad grid and relatively new using it in asp.net platform.

I have a command button called 'delete' in my grid, which allows users to delete rows from the grid which internally sets a flag indicating that those rows are the deleted ones.

There is a checkbox outside the grid which allows the users to include both deleted and active rows. So when the check box is clicked, I want the "delete" command column to display as "undelete" for the deleted rows and "delete" for the active rows.

Clicking on "undelete" will set the flag as active in the database and the command text should change back to "delete".

How can I achieve this?

Appreciate your replies.
Thanks
Amy
Radoslav
Telerik team
 answered on 06 Oct 2014
3 answers
161 views
I'm new to the radchart databinding process and after spending an excessive amount of time trying to figure out why I'm not showing any return when I bind to the database I thought I'd ask the sea of experts. I'm sure this has been discussed but when I searched on databinding I only got three posts so please excuse if I am repeating something previously shown.

Attached is a screen shot of what I see currently. The XAxis labels (2008 2009 2010...) are pulled from the database and are displaying as I expected. What isn't showing are the values reflected in the rest of the table. This is pretty straightforward and I'm positive it is something exceptionally simple I'm overlooking but can anyone shed some light on what that might be? I've gotten lost in the mixed examples that came with this add-on so I'm not sure where I'm crossing signals.

Below is the code for my chart.aspx page and it's code behind. The binding taking place in the code behind file is simply binding to a data object that I've created but isn't really relevant to this issue since all it does is open,get, close the database.

Thanks in advance.

Tony


Chart.aspx:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="chart.aspx.cs" Inherits="myworkcalpassplus.chart" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
    <telerik:RadSkinManager ID="QsfSkinManager" runat="server" ShowChooser="true"  Visible="false"/>
    <telerik:RadFormDecorator ID="QsfFromDecorator" runat="server" DecoratedControls="All" EnableRoundedCorners="false" />

     <div style="width: 800px; height: 500px;">
          <telerik:RadHtmlChart runat="server" Width="800px" Height="500px" ID="RadHtmlChart1" >
               <PlotArea>
                    
                         <YAxis MaxValue="100" MinValue="0" Step="10" >
                              <TitleAppearance Text="Units"></TitleAppearance>
                         </YAxis>
                         <XAxis DataLabelsField="AcademicYear"></XAxis>
                         <Series>
                              <telerik:ColumnSeries Name="Average" DataFieldY="Average" >
                                   <TooltipsAppearance Color="White" BackgroundColor="Orange" DataFormatString="P"/>
                                  
                              </telerik:ColumnSeries>
                              <telerik:ColumnSeries Name="Top 10 Region" DataFieldY="Top10Region">
                                   <TooltipsAppearance Color="White" BackgroundColor="Orange" DataFormatString="P"/>
                              </telerik:ColumnSeries>
                              <telerik:ColumnSeries Name="Statewide" DataFieldY="Statewide">
                                   <TooltipsAppearance Color="White" BackgroundColor="Orange" DataFormatString="P"/>
                              </telerik:ColumnSeries>
                         </Series>
               </PlotArea>
               <Legend>
                    <Appearance Visible="false">
                    </Appearance>
               </Legend>
               <ChartTitle Text="STEM Dashboard">
               </ChartTitle>
          </telerik:RadHtmlChart>
     </div>
    </form>
</body>
</html>


Codebehind: 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using DataAccess;

namespace myworkcalpassplus
{
    public partial class chart : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                Data chartData = new Data();
                RadHtmlChart1.DataSource = chartData.GetChartData();
                RadHtmlChart1.DataBind();
            }
        }
    }
}


Mind you I was following along with several examples and that's what I ended up with expecting just to see a simple chart display.

Thanks again!










Danail Vasilev
Telerik team
 answered on 06 Oct 2014
3 answers
144 views
Hello,

I need an argent help with the following requirement:

on each Treeview node click I need to load Grid
with different columns, headers and data .



I create a grid on Click event of the TreeView,
but the generated Grid disappears on PostBack 

 

protected void CreateGrid()

        {

           
RadGrid DataGrid = new RadGrid();

           
DataGrid.ID = "DataGrid";           

           
DataGrid.ViewStateMode = System.Web.UI.ViewStateMode.Enabled;

           
DataGrid.enablea

            DataGrid.AutoGenerateColumns
= true;

           
DataGrid.MasterTableView.AutoGenerateColumns = false;

           
DataGrid.MasterTableView.ShowHeadersWhenNoRecords = true;



           
GetGridHeader(table_name, DataGrid);

           
DataGrid.DataSource = GetData(table_name);

           
DataGrid.DataBind();

           
PlaceHolder1.Controls.Add(DataGrid);



}


Please advise what is the best way to do it, and
what is the problem with my approach.

Thank you,
Vadim


















































Viktor Tachev
Telerik team
 answered on 06 Oct 2014
2 answers
162 views
Hello everyone!

I has a problem with input data for radtextbox - What happens when i input text as "</script>" on radtextbox?
Current i have a error when input data as "</script>". Control Telerik default encode for tags html as: <br/>, <html>, <h1>....???

Please help me explain when input a data not validate as "</script>".

Thanks a lot for all help!


chammua
Top achievements
Rank 1
 answered on 06 Oct 2014
6 answers
213 views
When i use a RadNumericTextBox inside an InsertItemTemplate of a TreeListTemplateColumn the spin buttons are not rendered completely, just a half of the buttons. Moreover, the width of the textbox is adjusted to 100% independently of the width i specify.


Sonia
Top achievements
Rank 1
 answered on 06 Oct 2014
1 answer
158 views
Has anyone figured out a way to change the orientation of a rad tabstrip from vertical to horizontal from javascript?  I'm trying to change the orientation if the width of the window is less than 800px and would like for it to be responsive to the size of the window changing.
Magdalena
Telerik team
 answered on 06 Oct 2014
1 answer
228 views
Hi ,

Q1. Is it possible to change the arrow images of RadlistBox buttons(please find enclosed snapshot)?

Q2. In IE 10, arrow images are not visible for RadListBox buttons, and its an intermediate issue. Please suggest ?

Thanks
P
Magdalena
Telerik team
 answered on 06 Oct 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?