Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X
Hello
I would like to create a half progress gauge, using the standard gauge widget by changing the properties and style.
Could someone please tell me how I could create a gauge widget that looks similar to this:
Or this:
This is what I have so far with the standard gauge widget, and I am not sure where to go from there:
Thank you in advance.
Solved! Go to Solution.
Hi @S_Elsayed
Follow the below Steps to achieve it.
1. Import the media entity that I have attached in this chat or save the below image and add to the Thingworx media entity.
2. In Mashup > Custom CSS Paste the below CSS and In the last line modify the media entity name from gaugeface1 to your media entity name which has been created by following step 1.
.custom_GaugeCls:before {
content: '';
position: absolute;
width: calc(100% - 0px);
height: calc(100% - 0px);
background-size: contain;
background-repeat: no-repeat;
left: 50%;
top: 50%;
background-position: center;
transform: translate(-50%, -50%);
background-image: url(/Thingworx/MediaEntities/gaugeface1) !important; }
3. Call the CustomClass name to the Gauge widget as shown below
4. Update the other properties in the Gauge widget as mentioned below.
Adjust the GaugeBorder to fit the tick size according to the height.
5. Change the Style properties as mentioned below.
Hope you find this helpful.
Hi @S_Elsayed ,
You will need to use background media with custom CSS and apply it to the guage and make some changes in guage property.
Hi @BharathB
Actually, what I would like to know is what changes should I make to the gauge to get the gauge that I want. Could you please tell me how to do so in steps?
Thank you in advance.
Hi @S_Elsayed
Follow the below Steps to achieve it.
1. Import the media entity that I have attached in this chat or save the below image and add to the Thingworx media entity.
2. In Mashup > Custom CSS Paste the below CSS and In the last line modify the media entity name from gaugeface1 to your media entity name which has been created by following step 1.
.custom_GaugeCls:before {
content: '';
position: absolute;
width: calc(100% - 0px);
height: calc(100% - 0px);
background-size: contain;
background-repeat: no-repeat;
left: 50%;
top: 50%;
background-position: center;
transform: translate(-50%, -50%);
background-image: url(/Thingworx/MediaEntities/gaugeface1) !important; }
3. Call the CustomClass name to the Gauge widget as shown below
4. Update the other properties in the Gauge widget as mentioned below.
Adjust the GaugeBorder to fit the tick size according to the height.
5. Change the Style properties as mentioned below.
Hope you find this helpful.