Segment Settings in JavaScript DigitalGauge

23 Jun 20204 minutes to read

Appearance

  • Digital Gauge consists of several digital segments. Segment is customized with following 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.

  • You can set the length of the text segments with length property.

  • The width for the text segments are adjusted with width property.

  • HTML
  • <div id="DigitalGauge1"></div>
  • JAVASCRIPT
  • $(function () {
            // For Digital Gauge rendering
            $("#DigitalGauge1").ejDigitalGauge({
                width: 800,
                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,
                    }
                }]
            })
        });

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

    Appearance using DigitalGauge in JavaScript

    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
  • $(function () {
            // For Digital Gauge rendering
            $("#DigitalGauge1").ejDigitalGauge({
                width: 800,
                items: [{
                    // For setting text
                    value: "WELCOME",
                    segmentSettings: {
                        // For setting segment length
                        length: 3,
                        // For setting segment width
                        width: 3
                    }
                }]
            })
        });

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

    Dimension Modification using DigitalGauge in JavaScript