Questions tagged [gauge]

A measurement component, often using a fixed dial and a rotating hand.

454 questions
1
vote
0 answers

Need a way to set custom axisLabel & axisTick on the apache echarts

Currently the Gauge chart from Echarts only allow to configure splitNumber but I need a way to only show certain axisLabels and axisTicks like the example below, I tried to use formatter in axisLabel but I can only filter the labels not limit the…
Suneet Jain
  • 216
  • 1
  • 3
  • 17
1
vote
1 answer

Multiple Gauge Chart

Is it possible to Draw this type of gauges in the left and right of the circle using Highcharts? Basically left side gauge is representing the shorts' %age at left, the right side gauge is representing the shorts' %age at right, and the center is…
1
vote
0 answers

Is there anyway to know the value of the meter gauge when clicked?

So I am trying to create a meter gauge with real time update. The way I have coded currently is receiving the value of the meter gauge via parameter and had it replot when the user clicks on the meter gauge. Now, I want the meter gauge to replot…
James Cho
  • 11
  • 1
1
vote
1 answer

How to pass command line arguments into gauge tests?

I want pass a command line argument is_triggered=true as part of running Jenkins gauge tests run. How can I pass the argument when I am doing gauge run specs --env TEST?
Boon
  • 401
  • 1
  • 6
  • 17
1
vote
0 answers

Chart.js color is not updating dynamically

I am working with a custom gauge using chart.js doughnut type and it's working fine. Now I am trying to change the color of each elements of gauge when the theme button is triggered. So, I have created a update function to do the task. But the…
1
vote
0 answers

Taiko/Gauge - The Header Basic Authorization is getting mixed with the form Login

In Taiko/Gauge Framework, we try to implement Basic Authorization with Base64 encoding method to launch a website. It works fine. But, when we try to login as a user which is a form on the application flow, it is not getting logged in. When we do it…
1
vote
1 answer

Trouble with verticle Pygame status bar

The following code works, but it looks a bit kludgy to me. I wander if there is a better way to write it than my approach. Also its resolution is far too high. If anyone has any ideas as to a better approach and how to slow down the resolution, I…
1
vote
1 answer

Custom Gauge design in Flutter

I want to achieve following design: For this I have used LinearGauge. But in Gauge there is CellData which doesn't allow me to add Widget or able to change shape of that CellData. Please share how I can design this. Any reference is really helpful.
Code Hunter
  • 10,075
  • 23
  • 72
  • 102
1
vote
1 answer

Appium - Pick Two days after a specific day of month

I am trying to pick two days after the current day of month. In my StepImplementation class, i wrote a function like this but it gives me an error: @Step("pick two days after current day") public void getCurrentDayOfMonth(String day) throws…
Gökhan Uçar
  • 191
  • 15
1
vote
2 answers

How to create semi-circle/ellipse with HTML CSS? Like a gauge/speedometer

I'm trying to do something like this: It's not a full or semi circle, and the edges have a little radius. Also need to contain some point to show the current position in percentage. Can someone give me a light on how to put together something close…
gSalzmann
  • 65
  • 1
  • 10
1
vote
1 answer

Add hover text or text annotation in plotly gauge chart

Can we add hovertext or text annotation in a plotly gauge chart? For example in my plot below I want to add in the green area hover or text or both "Uptake first dose%: 19.8" and in the gray area "Not vaccinated (%):80.2" library(plotly) fig <-…
firmo23
  • 7,490
  • 2
  • 38
  • 114
1
vote
1 answer

When I added a funnel chart to chartjs all the charts are load compressed until resize page

I can't figure out for the life of me why when I add a funnel chart to my chartjs charts all of the charts become compressed distorted upon loading. Whenever I resize the page the charts snap back to how I would expect them to load. Thanks for the…
superman
  • 11
  • 2
1
vote
1 answer

Micrometer gauge not appearing on prometheus endpoint

I have instrumented my code inside a method for micrometer gauge like this: SimpleMeterRegistry registry = new SimpleMeterRegistry(); Gauge .builder("greeting_service_gauge", new AtomicInteger(new Random().nextInt(10)), AtomicInteger::get) …
Mandroid
  • 6,200
  • 12
  • 64
  • 134
1
vote
1 answer

Plotly Gauge - Possible to turn off Value in center?

I have a gauge plot that I have produced using the following code. Is it possible to hide the value 74 shown, but still use it as the driver of the bar on the gauge? I want to actually use a text string to "categorize", like a grade. Thus 74 would…
1
vote
0 answers

Python Virtual Environment Batch File Execution failing on Windows and not giving correct result

I have created the batch file to create python virtual environment and run the Gauge command but its failing. I want to create Virtual Environment then activate it and then i want to run last Gauge command pip install virtualenv cd c:\pyrates mkdir…