Segment Settings

12 May 20173 minutes to read

Appearance

  • Digital Gauge consists of several digital segments. Segment is customized with some properties. Color of the segment is set by using color property. Color is either given as string or hexadecimal value.

  • You can add gradient effects to the segments with the help of gradient attribute. The opacity of the segment is also adjustable. The space between two segments are adjusted with spacing property.

  • HTML
  • "use strict";
    
    <div id="DigitalGauge1"></div>
  • JAVASCRIPT
  • "use strict";
    
    var items = [{
         // For setting text
        value: "GO AHEAD",
        segmentSettings: {
            // For setting segment color
            color: "Green",
            // For setting segment opacity
            opacity: 0.1,
            // For setting segment spacing
            spacing: 4,
        }
    }]  ;  
    //For Digital Gauge rendering
    ReactDOM.render(
        <EJ.DigitalGauge id="digitalgauge"
    	items={items} width={800}
        >
                        
        </EJ.DigitalGauge>,
    		  document.getElementById('DigitalGauge1')
    );

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

    Dimension Modification

    • Digital Gauge consists of several digital segments. Segment is customized with some properties. Color of the segment is set by using color property. Color is either given as string or hexadecimal value.

    • You can add gradient effects to the segments with the help of gradient attribute. The opacity of the segment is also adjustable. The space between two segments are adjusted with spacing property.

  • HTML
  • <div id="DigitalGauge1"></div>
  • JAVASCRIPT
  • "use strict";
    
    var items = [{
        // For setting text
         value: "WELCOME",
         segmentSettings: {
             // For setting segment length
             length: 3,
             // For setting segment width
             width: 3
         }
    }];  
    //For Digital Gauge rendering
    ReactDOM.render(
        <EJ.DigitalGauge id="digitalgauge"
    	items={items} width={800}
        >
                        
        </EJ.DigitalGauge>,
    		  document.getElementById('DigitalGauge1')
    );

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