Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
104 views
In the grid whenever text within the tags is saved it is not visible in the data bound columns.

Ex. If this text <Coffee> is bound to the data column then it does not appear in the column , rather a blank space appears.

(This may be probably as while rendering its considering text as a tag as its b/w tags <>)

What can be the potential fix for this issue?

(I guess similar issue persist in this site in demo of grids. Inline Editing of grid columns. [on saving <Tea> as column value value does not save])
Marin
Telerik team
 answered on 01 Nov 2012
11 answers
290 views
I have followed this sample:


and created a column type to fitler with a radcombobox.  I added a DataSourceID to my column and when I set it the whole thing works correctly.

However I would like to add another option to have fitlering based on the items currently in the list.  I overrode the PrepareCell method and add the unique items as they go by:

   public override void PrepareCell(TableCell cell, GridItem item) 
        { 
             
            base.PrepareCell(cell, item); 
 
            if (UseAvailableValuesForDataSource && item is GridDataItem) 
            { 
                if (rcBox.Items.FindItemByText(cell.Text) == null
                { 
                    rcBox.Items.Add(new RadComboBoxItem(cell.Text)); 
 
                } 
               
            } 
 
        } 
 

This fills the combobox with the unique values, however when I get back into the  SetCurrentFilterValueToControl & GetCurrentFilterValueFromControl the value of the selected item is empty and so the filter doesn't get set.  I tried storing a list in ViewState and restoring from there but that didn't seem to work.  (For some reason my ViewState items wouldn't be restored either?)

Is there anyway to filter based on the currently displayed items instead of getting the full set back from the datasource?

Thanks,
Won
Top achievements
Rank 1
 answered on 01 Nov 2012
3 answers
169 views
I need replace  some token in tooltip by User Name in server side.

I use
var mybuttonToolTip = button.get_tooltip();
mybuttonToolTip   = mybuttonToolTip.replace("{TOKEN}", currentUserName};
button.set_tooltip(mybuttonToolTip );  This event exist?

Leon
Top achievements
Rank 1
 answered on 01 Nov 2012
1 answer
100 views
Hi all,

I have a radgrid in which I need to populate a textbox(boundcolumn) when clicking on the insert button. The first textbox should populate value of 
boundcolumn(name) in the first row.

Thanks in advance.
Shinu
Top achievements
Rank 2
 answered on 01 Nov 2012
5 answers
173 views
Hi

I have created custom template column for filtering . Given below is code of MyCustomFilteringTemplateColumn.cs. I m using Entity datasource 


 //RadGrid will cal this method when the value should be set to the filtering input control(s)
        protected override void SetCurrentFilterValueToControl(TableCell cell)
        {
            base.SetCurrentFilterValueToControl(cell);
            RadComboBox combo = (RadComboBox)cell.Controls[0];
            if ((this.CurrentFilterValue != string.Empty))
            {
                combo.Text = this.CurrentFilterValue;
            }
        }

     

        //RadGrid will cal this method when the filtering value should be extracted from the filtering input control(s)
        protected override string GetCurrentFilterValueFromControl(TableCell cell)
        {
            RadComboBox combo = (RadComboBox)cell.Controls[0];
         
            this.CurrentFilterFunction = (combo.Text.Trim() != "") ? GridKnownFunction.EqualTo : GridKnownFunction.NoFilter;
            return combo.Text;

           
        }

        private void list_ItemsRequested(object o, RadComboBoxItemsRequestedEventArgs e)
        {
            
             
                    Collection<Entities.ProjectUsersAndGroups> collDataSource = (Collection<Entities.ProjectUsersAndGroups>)FilterDataSource;
                    ((RadComboBox)o).DataTextField = this.DataField;
                    ((RadComboBox)o).DataValueField = this.DataField;
                    ((RadComboBox)o).DataSource = collDataSource;
                    ((RadComboBox)o).DataBind();
                    break;

           

        }

        private void list_SelectedIndexChanged(object o, RadComboBoxSelectedIndexChangedEventArgs e)
        {
            GridFilteringItem filterItem = (GridFilteringItem)((RadComboBox)o).NamingContainer;
            if ((this.UniqueName == "Index"))
            {
                //this is filtering for integer column type 
                filterItem.FireCommandEvent("Filter", new Pair("EqualTo", this.DataField));
            }
            //filtering for string column type
            if (this.UniqueName == "ProjectCategoryName")
                this.UniqueName = "ProjectCategoryDetails.ProjectCategoryName";

            filterItem.FireCommandEvent("Filter", new Pair("Contains", this.DataField));


        }



While filtering I am getting error  "Expression expected " on this line   filterItem.FireCommandEvent("Filter", new Pair("Contains", this.DataField));".


Please help me out 
Won
Top achievements
Rank 1
 answered on 01 Nov 2012
2 answers
173 views
Hi,

I have a scenario where i need to do Paging, Sorting and Filtering only at client side and not on server side.
Abhijit Shetty
Top achievements
Rank 2
 answered on 01 Nov 2012
1 answer
80 views
Hi all,

In my Radgrid, I set the property EditMode with value "EditForms". I need to check if grid has new insert row when user try to click on GridEditCommandColumn to edit another row, since I want to prevent the user from adding new record and editing another one at the same time. Please provide some suggestions.


Shinu
Top achievements
Rank 2
 answered on 01 Nov 2012
3 answers
97 views
Is there a way to format the results returned from the TimePicker control? This is what I'm currently getting 2012-10-30-22-00-00 when I reference the control via a jquery call, such as below.


var time = $("#<%=radTimePicker.ClientID%>").val();
Rob Gaudet
Top achievements
Rank 1
 answered on 31 Oct 2012
21 answers
1.2K+ views
Hi!

I am currently moving from RadControls for ASP.NET to Prometheus. I have a problem with the radalert function. It works fine in RadControls for ASP.NET but not in Prometheus.
I want to generate a "message box" with a message generated on server. I do it by registering a startup script in the script manager.
Using standard windows alert from server as well as radalert from client works fine.
But as soon as I use radalert from server then the radalert is 'undefined'. I guess that the RadWindowManager is 'undefined'.

How can I solve this problem?

Small code sample is attached below.

Thanks
/Mats

Default.aspx:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>RadAlert</title>
</head>
<body>
    <form id="form1" runat="server">
        <asp:ScriptManager ID="ScriptManager1" runat="server" />
        <telerik:RadWindowManager ID="RadWindowManager1" runat="server">
        </telerik:RadWindowManager>
        <asp:Button ID="AlertButton" runat="server" OnClick="AlertButton_Click" Text="Alert from server" />
        <asp:Button ID="RadAlertButton" runat="server" OnClick="RadAlertButton_Click" Text="RadAlert from server" />
        <input id="RadAlertButtonClient" type="button" value="RadAlert from client" onclick="radalert('Some data from client!');"/>
    </form>
</body>
</html>

Default.aspx.cs:

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class _Default : System.Web.UI.Page
{
    protected void AlertButton_Click(object sender, EventArgs e)
    {
        ScriptManager.RegisterStartupScript(Page, typeof(Page), "AlertScript", "alert('Some data from server!');", true);
    }

    protected void RadAlertButton_Click(object sender, EventArgs e)
    {
        ScriptManager.RegisterStartupScript(Page, typeof(Page), "RadAlertScript", "radalert('Some data from server!');", true);
    }
}

Gabe Silvarajoo
Top achievements
Rank 2
 answered on 31 Oct 2012
4 answers
176 views
Hello,  I have dynamically created rad docks loading a user control with two rad combo box's and a rad html chart control.  The combo box's do a post back which in turn changes the parameters on the rad html chart but the chart never gets rendered again.  The html chart continues to show the initial data that was present on the first load.  I have attached the user control.  I have tried it without the ajax manager and the below code has the ajax manager included.  Niether approach will cause the html chart to render with the changed data.

Here is the code behind
Imports System.Drawing
Imports Telerik.Web.UI
Imports DevExpress.Web.ASPxGauges
Imports DevExpress.Web.ASPxGauges.Base
Imports DevExpress.XtraGauges.Base
Imports DevExpress.XtraGauges.Core.Drawing
Imports DevExpress.XtraGauges.Core.Model
Imports DevExpress.XtraGauges.Core.Base
Imports DevExpress.Web.ASPxGauges.Gauges.Circular
 
Public Class uChart
    Inherits System.Web.UI.UserControl
    Private _userName As String = ""
 
#Region "Page Init"
    Private Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
        'TODO: Remove when security get's set up
        _userName = "wahiggi"
    End Sub
#End Region
 
    Protected Sub Page_Load(sender As Object, e As EventArgs) Handles Me.Load
        Dim lbl As System.Web.UI.WebControls.Label = CType(Me.Controls(1), System.Web.UI.WebControls.Label)
        Dim pArray() As String = Split(lbl.Text, "|")
        lblServiceKey.Text = Trim(pArray(0))
        lblMetricKey.Text = Trim(pArray(1))
        lblType.Text = Trim(pArray(3))
 
        BuildRadChart()
    End Sub
 
#Region "Building Rad Html Chart"
    Private Sub BuildRadChart()
        RadHtmlChart1.Visible = True
        ASPxGaugeControl1.Visible = False
 
        Dim mm As String = lblMetricKey.Text
        Dim sKey As String = lblServiceKey.Text
        Dim dsh As New DashHelper()
        Dim startDate As String = ""
        Dim endDate As String = ""
 
        Dim dAr As Array = Split(dsh.GetDates(rcbFreq.SelectedValue), "|")
        startDate = dAr(0)
        endDate = dAr(1)
 
        Dim dt As DataTable = dsh.GetGraphValues(sKey, mm, startDate, endDate, rcbFreq.SelectedValue, "False", "Capacity")
 
        If RadHtmlChart1.PlotArea.Series.Count <> 0 Then
            RadHtmlChart1.PlotArea.Series.RemoveAt(0)
        End If
 
        If dt.Rows.Count > 0 Then
            Dim chartTitle As String = ""
            chartTitle = dt.Rows(0).Item(6).ToString()
            chartTitle = chartTitle & " By Geography"
 
            RadHtmlChart1.ID = "rHTMLChart7"
            RadHtmlChart1.Height = Unit.Pixel(250)
            RadHtmlChart1.ChartTitle.Text = chartTitle
            RadHtmlChart1.Legend.Appearance.Position = Telerik.Web.UI.HtmlChart.ChartLegendPosition.Right
 
            Select Case lblType.Text
                Case "bar"
                    Dim chartData As BarSeries = RadBarSeries(dt)
                    RadHtmlChart1.PlotArea.Series.Add(chartData)
                Case "line"
                    Dim chartData As LineSeries = RadLineSeries(dt)
                    RadHtmlChart1.PlotArea.Series.Add(chartData)
            End Select
 
            RadHtmlChart1.PlotArea.XAxis.LabelsAppearance.RotationAngle = -45
            RadHtmlChart1.PlotArea.XAxis.DataLabelsField = "DateKey"
            RadHtmlChart1.DataSource = dt
            RadHtmlChart1.DataBind()
        End If
    End Sub
#End Region
 
#Region "Building Gauge Chart"
    Private Sub BuildDevXChart()
        RadHtmlChart1.Visible = False
        ASPxGaugeControl1.Visible = True
 
        Dim mm As String = lblMetricKey.Text
        Dim sKey As String = lblServiceKey.Text
        Dim dsh As New DashHelper()
        Dim startDate As String = ""
        Dim endDate As String = ""
 
        Dim dAr As Array = Split(dsh.GetDates(rcbFreq.SelectedValue), "|")
        startDate = dAr(0)
        endDate = dAr(1)
 
        Dim dt As DataTable = dsh.GetGraphValues(sKey, mm, startDate, endDate, rcbFreq.SelectedValue, "False", "Capacity")
 
        If dt.Rows.Count > 0 Then
            Dim unit As String = ""
            unit = dt.Rows(0).Item(7).ToString()
            unit = FormatUit(unit)
 
            Dim minVal As Decimal = CDec(dt.Rows(0).Item(2).ToString())
            Dim maxVal As Decimal = CDec(dt.Rows(0).Item(2).ToString())
            Dim tot As Decimal = 0
            Dim valCount As Integer = dt.Rows.Count
 
            For Each row As DataRow In dt.Rows
                Dim val As Decimal = CDec(row.Item(2).ToString())
                If val < minVal Then minVal = val
                If val > maxVal Then maxVal = val
                tot += val
            Next
 
            If maxVal - minVal < 7 Then
                minVal = maxVal - 7
                If minVal < 0 Then
                    minVal = 0
                    maxVal = 7
                End If
            End If
 
            Dim avg As Decimal = tot / valCount
            avg = Math.Round(avg, 2)
 
            avg = Math.Round(avg, 2)
            minVal = Math.Round(minVal, 2)
            maxVal = Math.Round(maxVal, 2)
 
            ASPxGaugeControl1.Gauges.Clear()
 
            Dim circularGauge As CircularGauge = ASPxGaugeControl1.AddGauge(GaugeType.Circular)
            circularGauge.AddDefaultElements()
 
            Dim scale As ArcScaleComponent = circularGauge.Scales(0)
            Dim sCenter As PointF2D
            sCenter.X = 125
            sCenter.Y = 165
            scale.Center = sCenter
            scale.RadiusX = 107
            scale.RadiusY = 107
            scale.StartAngle = -180
            scale.EndAngle = 0
 
            scale.MinValue = minVal
            scale.MaxValue = maxVal
            scale.Value = avg
 
            scale.MajorTickCount = 7
            scale.MajorTickmark.FormatString = "{0:F0}"
            scale.MajorTickmark.ShapeType = TickmarkShapeType.Circular_Style11_4
            scale.MajorTickmark.ShapeOffset = -5
            scale.MajorTickmark.AllowTickOverlap = True
            Dim sMajorScale As FactorF2D
            sMajorScale.XFactor = 0.6
            sMajorScale.YFactor = 0.8
            scale.MajorTickmark.ShapeScale = sMajorScale
            scale.MajorTickmark.TextOffset = -17
            scale.MajorTickmark.TextOrientation = LabelOrientation.LeftToRight
 
            scale.MinorTickCount = 4
            scale.MinorTickmark.ShapeOffset = -2.5
            scale.MinorTickmark.ShapeType = TickmarkShapeType.Circular_Style11_3
            Dim sMinorScale As FactorF2D
            sMinorScale.XFactor = 0.6
            sMinorScale.YFactor = 1
            scale.MinorTickmark.ShapeScale = sMinorScale
            scale.AppearanceTickmarkText.TextBrush = New SolidBrushObject(Color.Black)
 
            Dim sLabel As ScaleLabel = New ScaleLabel
            sLabel.AllowHTMLString = True
            sLabel.Position = New PointF2D(125, 215)
            sLabel.AppearanceText.TextBrush = New SolidBrushObject(Color.White)
            sLabel.Size = New Size(250, 60)
            sLabel.Text = "Source: " & dt.Rows(0).Item(8).ToString() & " Measure: " & unit & vbCrLf & "Min Value: " & _
                minVal.ToString() & " Max Value " & maxVal.ToString() & vbCrLf & "Value: "
            scale.Labels.Add(sLabel)
 
            Dim needle As ArcScaleNeedleComponent = circularGauge.Needles(0)
            needle.ShapeType = NeedleShapeType.CircularFull_Style11
 
            Dim background As ArcScaleBackgroundLayer = circularGauge.BackgroundLayers(0)
            background.ShapeType = BackgroundLayerShapeType.CircularHalf_Style11
            background.ArcScale = scale
            Dim sCenterPos As PointF2D
            sCenterPos.X = 0.5
            sCenterPos.Y = 0.815
            background.ScaleCenterPos = sCenterPos
            Dim sSize As FactorF2D
            sSize.XFactor = 250
            sSize.YFactor = 154
            background.Size = sSize
 
 
            ASPxGaugeControl1.BackColor = Color.Transparent
            ASPxGaugeControl1.AutoLayout = True
        Else
            ASPxGaugeControl1.Gauges.Clear()
            ASPxGaugeControl1.Visible = False
        End If
    End Sub
#End Region
 
#Region "Supporting Functions"
    Private Function FormatUit(ByVal unit As String) As String
        Select Case unit
            Case "sec"
                unit = "Seconds"
            Case "days"
                unit = "Days"
            Case "Gb"
                unit = "GB"
            Case "hours"
                unit = "Hours"
            Case "Kb"
                unit = "KB"
            Case "Mb"
                unit = "MB"
            Case "percent"
                unit = "Percent"
            Case "total"
                unit = "Total"
        End Select
 
        Return unit
    End Function
    Private Function RadBarSeries(ByVal dt As DataTable) As BarSeries
        Dim chartData As New BarSeries()
        Dim unit As String = ""
        Dim cName As String = dt.Rows(0).Item(6).ToString()
        unit = dt.Rows(0).Item(7).ToString()
 
        chartData.Name = cName
        chartData.LabelsAppearance.Visible = False
        chartData.TooltipsAppearance.DataFormatString = "{0} " & unit
        chartData.DataField = "avValue"
        Return chartData
    End Function
    Private Function RadLineSeries(ByVal dt As DataTable) As LineSeries
        Dim chartData As New LineSeries()
        Dim unit As String = ""
        Dim cName As String = dt.Rows(0).Item(6).ToString()
        unit = dt.Rows(0).Item(7).ToString()
 
        chartData.Name = cName
        chartData.LabelsAppearance.Visible = False
        chartData.TooltipsAppearance.DataFormatString = "{0} " & unit
        chartData.DataField = "avValue"
        Return chartData
    End Function
    Private Sub RcbFreq_SelectedIndexChanged(sender As Object, e As Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs) Handles rcbFreq.SelectedIndexChanged
        If lblType.Text = "Bar" Or lblType.Text = "Line" Then
            BuildRadChart()
        Else
            BuildDevXChart()
        End If
    End Sub
    Private Sub RcbType_SelectedIndexChanged(sender As Object, e As Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs) Handles rcbType.SelectedIndexChanged
        lblType.Text = rcbType.SelectedValue
 
        If lblType.Text = "Bar" Or lblType.Text = "Line" Then
            BuildRadChart()
        Else
            BuildDevXChart()
        End If
    End Sub
#End Region
 
End Class

Here is the markup
<%@ Control Language="vb" AutoEventWireup="false" CodeBehind="uChart.ascx.vb" Inherits="USDashboard.uChart" %>
 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Charting" TagPrefix="telerik" %>
<%@ Register Assembly="DevExpress.Web.ASPxGauges.v12.1, Version=12.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" Namespace="DevExpress.Web.ASPxGauges" TagPrefix="dx" %>
<%@ Register Assembly="DevExpress.Web.ASPxGauges.v12.1, Version=12.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" Namespace="DevExpress.Web.ASPxGauges.Gauges" TagPrefix="dx" %>
<%@ Register Assembly="DevExpress.Web.ASPxGauges.v12.1, Version=12.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" Namespace="DevExpress.Web.ASPxGauges.Gauges.Linear" TagPrefix="dx" %>
<%@ Register Assembly="DevExpress.Web.ASPxGauges.v12.1, Version=12.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" Namespace="DevExpress.Web.ASPxGauges.Gauges.Circular" TagPrefix="dx" %>
<%@ Register Assembly="DevExpress.Web.ASPxGauges.v12.1, Version=12.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" Namespace="DevExpress.Web.ASPxGauges.Gauges.State" TagPrefix="dx" %>
<%@ Register Assembly="DevExpress.Web.ASPxGauges.v12.1, Version=12.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" Namespace="DevExpress.Web.ASPxGauges.Gauges.Digital" TagPrefix="dx" %>
 
<link href="../CSS/uchart.css" rel="stylesheet" type="text/css" />
 
<asp:ScriptManagerProxy ID="ScriptManagerProxy1" runat="server">
</asp:ScriptManagerProxy>
<telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server">
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="rcbFreq">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="RadHtmlChart1" />
                <telerik:AjaxUpdatedControl ControlID="ASPxGaugeControl1" />
            </UpdatedControls>
        </telerik:AjaxSetting>
        <telerik:AjaxSetting AjaxControlID="rcbType">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="RadHtmlChart1" />
                <telerik:AjaxUpdatedControl ControlID="ASPxGaugeControl1" />
            </UpdatedControls>
        </telerik:AjaxSetting>
    </AjaxSettings>
</telerik:RadAjaxManagerProxy>
<div>
    <div>
        <table class="style1">
            <tr>
                <td>
                    <asp:Label ID="Label2" runat="server" ForeColor="White"
                        Text="Frequency" Font-Size="Small"></asp:Label>
                    <telerik:RadComboBox ID="rcbFreq" Runat="server" Skin="Office2010Black" AutoPostBack="True" Width="100px">
                        <Items>
                            <telerik:RadComboBoxItem runat="server" Text="Daily" Value="Daily" />
                            <telerik:RadComboBoxItem runat="server" Text="Weekly" Value="Weekly"
                                Selected="True" />
                            <telerik:RadComboBoxItem runat="server" Text="Monthly" Value="Monthly" />
                            <telerik:RadComboBoxItem runat="server" Text="Yearly" Value="Yearly" />
                        </Items>
                    </telerik:RadComboBox>
                </td>
                <td>
                    <asp:Label ID="Label1" runat="server" ForeColor="White"
                        Text="Chart Type" Font-Size="Small"></asp:Label>
                    <telerik:RadComboBox ID="rcbType" runat="server" Skin="Office2010Black" AutoPostBack="True" Width="100px">
                        <Items>
                            <telerik:RadComboBoxItem runat="server" Text="Bar Chart" Value="Bar" />
                            <telerik:RadComboBoxItem runat="server" Text="Line Chart" Value="Line" />
                            <telerik:RadComboBoxItem runat="server" Text="Gauge Chart" Value="Gauge" />
                        </Items>
                    </telerik:RadComboBox>
                </td>
            </tr>
        </table>
    </div>
    <telerik:radhtmlchart runat="server" ID="RadHtmlChart1" Height="280px"></telerik:radhtmlchart>
    <dx:ASPxGaugeControl ID="ASPxGaugeControl1" runat="server" Height="260px"
        Width="260px" BackColor="White" Value="20" Visible="False">
        <gauges>
            <dx:CircularGauge Bounds="0, 0, 260, 260" Name="cGauge1">
                <scales>
                    <dx:ArcScaleComponent AppearanceTickmarkText-Font="Tahoma, 12pt"
                        AppearanceTickmarkText-TextBrush="<BrushObject Type="Solid" Data="Color:Black"/>"
                        Center="125, 165" EndAngle="0" MajorTickCount="7"
                        MajorTickmark-FormatString="{0:F0}" MajorTickmark-ShapeOffset="-5"
                        MajorTickmark-ShapeScale="0.6, 0.8"
                        MajorTickmark-ShapeType="Circular_Style11_4" MajorTickmark-TextOffset="-17"
                        MajorTickmark-TextOrientation="LeftToRight" MaxValue="80" MinorTickCount="4"
                        MinorTickmark-ShapeOffset="-2.5" MinorTickmark-ShapeScale="0.6, 1"
                        MinorTickmark-ShapeType="Circular_Style11_3" MinValue="20" Name="scale1"
                        RadiusX="107" RadiusY="107" StartAngle="-180" Value="20">
                    </dx:ArcScaleComponent>
                    <dx:ArcScaleComponent AppearanceTickmarkText-Font="Microsoft Sans Serif, 8pt, style=Bold"
                        AppearanceTickmarkText-TextBrush="<BrushObject Type="Solid" Data="Color:Black"/>"
                        Center="125, 165" EndAngle="-30" MajorTickCount="6"
                        MajorTickmark-FormatString="{0:F0}"
                        MajorTickmark-ShapeType="Circular_Style11_2" MajorTickmark-TextOffset="-15"
                        MajorTickmark-TextOrientation="LeftToRight" MaxValue="700" MinorTickCount="4"
                        MinorTickmark-ShapeType="Circular_Style11_1" MinValue="200" Name="scale2"
                        RadiusX="70" RadiusY="70" StartAngle="-180" Value="200" ZOrder="-1">
                    </dx:ArcScaleComponent>
                </scales>
                <backgroundlayers>
                    <dx:ArcScaleBackgroundLayerComponent Name="bg1" ScaleCenterPos="0.5, 0.815"
                        ScaleID="scale1" ShapeType="CircularHalf_Style11" Size="250, 154"
                        ZOrder="1000" />
                </backgroundlayers>
                <needles>
                    <dx:ArcScaleNeedleComponent EndOffset="5" Name="needle1" ScaleID="scale1"
                        ShapeType="CircularFull_Style11" StartOffset="-9.5" ZOrder="-50" />
                </needles>
            </dx:CircularGauge>
        </gauges>
        <LayoutPadding All="0" Left="0" Top="0" Right="0" Bottom="0"></LayoutPadding>
    </dx:ASPxGaugeControl>
</div>
<div style="visibility: hidden">
    <asp:Label ID="lblMan" runat="server" Text=""></asp:Label>
    <asp:Label ID="lblType" runat="server" Text=""></asp:Label>
    <asp:Label ID="lblDesc" runat="server" Text=""></asp:Label>
    <asp:Label ID="lblServiceKey" runat="server" Text=""></asp:Label>
    <asp:Label ID="lblMetricKey" runat="server" Text=""></asp:Label>
</div>
William Higgins
Top achievements
Rank 2
 answered on 31 Oct 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?