Questions tagged [gauge]

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

454 questions
1
vote
2 answers

ASP.NET AJAX Gauges with Asynchronous Update and animation

I´m currently working on a dashboard styled project, where i need to have gauges to display current values. can someone point me to some commercial or open source asp.net ajax controls that include gauges with these capabilities? Thanks in advance!
SlickD
  • 45
  • 1
  • 11
1
vote
0 answers

How we can create a custom Vertical Gauge by using image in SwiftUI?

I am new to the SwiftUI, and i am trying to design a speedometer of a vehicle using SwiftUI, for that i have checked in various solutions, but all of them were of either circular or linear horizontal, but i need it fully customized. Please find the…
1
vote
2 answers

swiftUI custom linear gauge

I'm trying to create a custom linear gauge style, but I'm wondering on how is the best way to make the circle move following the value. As you can notice I have tried with offset but it stay in place. struct LightBarGaugeStyle: GaugeStyle { …
1
vote
0 answers

How to plot multiple gauge plots from a dataframe by using e_charts?

I was trying to plot multiple gauge plots from a dataframe at once as below: df<-data.frame("group"=c("A","B","C"), "value"=c(57, 23, 65)) df|> e_charts() |> e_gauge(df$value, df$group ) |> e_facet(rows = 1, cols=3) However, the figure…
Robin
  • 325
  • 2
  • 12
1
vote
1 answer

Uncaught TypeError: X.setValue is not a function... but writing out the value (string) works fine

The line: sseTopicString.setValue(sseValueNumber); is throwing a Type error: Uncaught TypeError: sseTopicString.setValue is not a function. If I write out the value (string) of sseTopicString before the . everything works as expected. What am I not…
1
vote
1 answer

how to make this type gauge in flutter with dynamic section

return SfRadialGauge( title: GaugeTitle( text: 'Speedometer', textStyle: const TextStyle(fontSize: 14.0, fontWeight: FontWeight.bold)), axes: [ RadialAxis( minimum: 0, …
Sachin Suthar
  • 692
  • 10
  • 28
1
vote
0 answers

Is it possible to launch different url based on a specific condition in gauge and taiko using javascript

In the current gauge/taiko project, the application url and login credentials is configured based on different test environments inside user.properties file Now, I have 2 different urls for the same environment. if I have to launch 2nd url and…
Vidhya
  • 11
  • 2
1
vote
1 answer

apex chart semi donut with custom custom indicator

Hello I have the following design That I have to implement. I am using apexcharts as a chart library in my application . I could not find any gauge/indicator related information of apexchart while googling and now quite not sure weather it is…
Sandesh Sapkota
  • 747
  • 1
  • 6
  • 18
1
vote
0 answers

How can I read this analog gauge using Python and OpenCV?

I want to read this analog gauge using Python and OpenCV, here is my starting point image: Actually, with some blur and contour detection I was able to clear it a little and draw some important parts: Here is my actual code: import os import…
Warpxz
  • 11
  • 1
1
vote
1 answer

Gauge gradient echarts4r in R

I'm needing to create a gauge graph in r, but I can't make the "axisLine" function in gradient colors. library(echarts4r) gauge_x <- e_charts() %>% e_gauge(800, "Incerteza TC", startAngle = 180, endAngle = 0, min = 0, …
1
vote
0 answers

how to detect monotonically increasing gauge over period of time?

For a gauge meter scraped by Prometheus, say a temperature, is there a way how to detect it has been monotonically increasing for given period of time, say last couple of minutes or hours. This is so that it can be alerted on in Grafana. This would…
Vlad
  • 156
  • 12
1
vote
1 answer

highcharts solidgauge reverse angle direction

So I have this solidgauge with options: { pane: { startAngle: 0, endAngle: 360, }, } But I want to add an option to have the gauge the other way round, so I went for: { pane: { startAngle: this.inversed ? 360 : 0, endAngle:…
Augustin Riedinger
  • 20,909
  • 29
  • 133
  • 206
1
vote
0 answers

Speedometer Chart

Can imagecharts draw a speedometer chart like the one in the image, where the shape and colors of each segment of the gauge are always the same and the only thing that changes is the position of the needle? See Needle Gauge Chart If the answer is…
1
vote
1 answer

Prometheus, how to convert counter to gauge

I’ve a custom metric that change of type in the metric file (mistake from developper). So I’ve start to scrap metrics as counter, but it is really a gauge. We have change in the metric file, but prometheus continue as it is a counter. I’ve try to…
1
vote
0 answers

use JS Classes (CDN) with react (rewrite code), vanillaJS works

I would like to use JS classes from a cdn within a react component. This is the cdn: https://cdn.jsdelivr.net/gh/Mikhus/canvas-gauges@gh-pages/download/2.1.7/all/gauge.min.js I have already written the vanillaJS Code, that works well, however I have…