Multiple Items

18 Apr 20174 minutes to read

The text in the Digital Gauge is positioned with position object. This object contains two attributes such as x and y. The x variable positions the text in the horizontal axis and y variable positions the text in the vertical axis.

  • HTML
  • <div id="DigitalGauge1"></div>
  • JAVASCRIPT
  • $(function() {
        // For Digital Gauge rendering
        $("#DigitalGauge1").ejDigitalGauge({
            Width: 1350,
            height: 400,
            frame: {
                backgroundImageUrl: "Board1.png"
            },
            items: [
                // For Item 1
                {
                    // For setting text
                    value: "BLUE",
                    segmentSettings: {
                        color: "blue"
                    },
                    position: {
                        x: 90,
                        y: 0
                    }
                },
                // For Item 2
                {
                    // For setting text
                    value: "RED",
                    segmentSettings: {
                        color: "red"
                    },
                    position: {
                        x: 90,
                        y: 15
                    }
                },
                // For Item 3
                {
                    // For setting text
                    value: "PINK",
                    segmentSettings: {
                        color: "pink"
                    },
                    position: {
                        x: 90,
                        y: 30
                    }
                }
            ]
        });
    });

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