Digital Elements

1 Oct 20151 minute to read

Text Customization

  • The attribute value refers the text displayed in the Digital Gauge. This text is applicable only for that item instead of all items. Text color is changed by using the property textColor.
  • It is possible to align the text inside the Digital Gauge control by using the property textAlign. Two possible values for text align are as follows

    a. left

    b. right

  • HTML
  • <ej:DigitalGauge runat="server" ID="DigitalGauge1">
    
    
    
                <Items>
    
                <%-- Adding Text properties --%>
    
                <ej:DigitalGaugeItems TextAlign="Right" Value="STOP">
    
    
    
                </ej:DigitalGaugeItems>
    
    
    
                </Items>
    
                </ej:DigitalGauge>

    Execute the above code examples to render the DigitalGauge as follows.

    Digital Gauge control with text customization