Questions tagged [gauge]

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

454 questions
3
votes
4 answers

iPad development: Circular and Linear Gauges

I have created a desktop (winforms) and web based (asp.net) dashboard application that uses the Dundas circular and linear gauges. e.g. I need to recreate these gauges using the xcode ui and objective c (or something that can be imported into a…
Thomas
  • 342
  • 11
  • 29
3
votes
2 answers

How to make a grid of Plotly Indicator gauges?

I'm trying to use plotly to arrange gauges in a grid layout (to give us a Streamlit dashboard showing SLO gauges for a group of teams). I can't use subplots because they're not compatible with Indicators: ValueError: Trace type 'indicator' is not…
quantoid
  • 530
  • 5
  • 16
3
votes
1 answer

How can I format Google Chart Gauge with decimal % on min, max?

I know there is an option like min, max (number type) to configure the values but i would like to know if there is possible to set them like... 0.00% to 100.00% I know there is possible to do on GoogleSheets graph, but im not sure how to do it on…
gaccerboni
  • 57
  • 7
3
votes
0 answers

What is Gauge.startTimer for and how to properly use it?

As I understand, the Gauge counter is a value that changes over time without saving somewhere when every change of the counter (dec(x) or inc(y)) was and the labels of every call to dec or inc. Please correct me if I'm wrong. Questions What exactly…
Stav Alfi
  • 13,139
  • 23
  • 99
  • 171
3
votes
0 answers

Update plotly gauge chart value dynamically (Python)

I need to update a value of plotly gauge chart in python. Here is my source code: import plotly.graph_objects as go fig = go.Figure(go.Indicator( domain={'x': [0, 1], 'y': [0, 1]}, value=450, mode="gauge+number+delta", …
Niko
  • 69
  • 7
3
votes
1 answer

Shiny Flexdashboard Reactive Gauge not Updating

I've added a reactive gauge to my shinyapp. The gauge is to show the most recent Jump Height score compared to the athlete's previous minimum and max value all time. The selectInput is set for Athlete and the most recent date (max(jumpdata$Date)).…
vb66
  • 353
  • 3
  • 14
3
votes
2 answers

prometheus: is it possible to use event number of gauge as a counter?

I use prometheus to monitor a api service. Currently, I use a Counter to count number of requests received and a Gauge for the response time in milliseconds. I've tried to use something like count_over_time(response_time_ms[1m]) to count requests…
zxdvd
  • 428
  • 4
  • 15
3
votes
2 answers

How to define colorAxis dataClasses for solid gauge chart?

I am trying to set solid gauge chart to use defined colors for ranges using colorAxis dataClasses, but it isn't working. Not sure what I am doing wrong. How should I define the colorAxis and dataClasses? Please see http://jsfiddle.net/edob/27oc38L1…
Edo
  • 78
  • 6
3
votes
3 answers

How do I use an Highcharts Solid Gauge in angular 6 with typescript?

In my current project I'm using Angular 6 and typescript. My plan is to use an Solidgauge on one of my Components. During the production of my compentent I run into the following problems: When i try to display the Gauge on my display nothing shows…
Henderikus Harms
  • 119
  • 2
  • 10
3
votes
1 answer

Data Driven OpenSource Thermometer for website

I am looking for an open source Thermometer that i can connect to a JSON or XML datasource and display this on my website. The site is an asp.net site so javascript controls are not a problem. My Googling didn't reveal very much at all. Any…
SetiSeeker
  • 6,482
  • 9
  • 42
  • 64
3
votes
1 answer

How to customise Gauge needle pointer using D3.js or C3.js?

I need to plot a Gauge in my project. I am using d3.js to plot a gauge. I Followed this link It works good but i need to customise the needle point. I searched quite a lot but i could not fond any solution to customise the needle pointer. This is…
3
votes
2 answers

Monitoring threadpool with gauge from dropWizard metric

I want to use Guage metric from DropWizard to monitor my thread pool size. ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor( 2, 2, 1, TimeUnit.MINUTES, new…
Xitrum
  • 7,765
  • 26
  • 90
  • 126
3
votes
1 answer

What should be the right borderWidth in a solidgauge Highcharts chart?

I'm following this example in order to understand how the solidgauge chart works: http://jsfiddle.net/gh/get/jquery/1.9.1/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/gauge-activity/ plotOptions: { solidgauge: { …
3
votes
1 answer

java.lang.NullPointerException at org.primefaces.component.chart.renderer.MeterGaugeRenderer.encodeData

I am trying to manage to work the following example MeterGauge Since the xhtml code is not complete that you can use it to make an entire xhtml page, I have taken the missing tags from PrimeFaces official doc at page 12. Then created the JavaBean…
Germano Massullo
  • 2,572
  • 11
  • 40
  • 55
3
votes
1 answer

gvisGauge not displaying in R Shiny (empty space) - googleVis - Gauge

I am trying to display a simple Gauge using the googleVis library in R Shiny. However - the only thing that I can get to display is a blank space that matches with the width and height of the INVISIBLE gauge. (I am having a similar image where I…
cnblevins
  • 155
  • 1
  • 7
1 2
3
30 31