Questions tagged [gauge]

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

454 questions
3
votes
3 answers

Light weight graph and gauge library in javascript

I am looking for a light weight chart and gauge library in java script to design web pages of an embedded product. I searched in Google but many were heavy and some libraries were needed be downloaded at run time. Since mine is an embedded device I…
Rohit Pai
  • 67
  • 1
  • 6
3
votes
1 answer

SSRS auto-fit gauges in panel

Indicator automatically extends when the row in the table will be more than one line of text. Here is an example how it looks like: What to do to not change its size? There is an option such "Auto-fit all gauges in panel" in Indicator properties.…
Monic
  • 726
  • 10
  • 31
3
votes
1 answer

Circular Gauge Gradient - TeeChart - MonoAndroid

I am using TreeChart to make an indicator as shown in the picture. But I have a problem I can not make the three-color gradient to that gauge. This is my code Steema.TeeChart.TChart tChart = new Steema.TeeChart.TChart(this); …
dev_xinito
  • 43
  • 1
  • 6
3
votes
1 answer

Google Chart Gauge with multiple color zones

I'm using Google Charts API to create a gauge chart. It is a very simple and effective API to create charts on-the-fly. Here is the documentation for that chart https://google-developers.appspot.com/chart/interactive/docs/gallery/gauge Now, I need…
Flea777
  • 1,012
  • 9
  • 21
2
votes
1 answer

Custom gauge in J2ME

I require some direction to incorporate gauge in J2ME which allows me to configure its minimum and maximum value, labels etc. Currently, this is my gauge code: levelGauge = new Gauge("Level", true, 12, valX - 16); I am setting the maximum value as…
Viraj
  • 1,880
  • 22
  • 31
2
votes
0 answers

Google gauges in python (reportlab)

I am currently writing a program that will automatically generate PDF files using reportlab (a python module). I would like to know if it would be possible to put google gauges in but not as an image, instead as a request sent to google which…
Sam Creamer
  • 5,187
  • 13
  • 34
  • 49
2
votes
0 answers

Gauge python in VScode : Unable to debug external code

Gauge VS code extension : 0.1.0 getgauge : 0.3.17 Issue: Trying to debug external code (Framework library) from Gauge test, but keep getting warning and the debug happens only on my current file Frame skipped from debugging during step-in. Note: may…
Naga
  • 77
  • 1
  • 6
2
votes
0 answers

Get maximum of latest values of multiple time series in Grafana dashboard

I have a Grafana dashboard with a Prometheus data source with multiple queries, based on different metrics, each giving some resource usage of a server. The time series of those queries might be like this (simplified): time ---> server 1: 10 11 …
Marco
  • 21
  • 2
2
votes
1 answer

Custom gauge chart not working when resize

I need customize gauge highchart as I customized it as jsfiddle code. var gaugeOptions = { chart: { type: 'solidgauge' }, title: null, pane: { center: ['50%', '85%'], size: '140%', startAngle: -90, …
Hien Nguyen
  • 24,551
  • 7
  • 52
  • 62
2
votes
0 answers

Android Studio importing project problem, Gradle update, and Gauge Intellij plugin

Could anyone help me to solve this problem? I am learning Android using Udacity. Once I import the project and press run, I need to update some plugin, Gradle... etc.. According to the prompt message. However, I still have the following error in…
Alan
  • 21
  • 1
2
votes
2 answers

Gauge animation on iphone

I'm trying to implement a gauge animation using (+ and - buttons) on iphone, but i have no idea where to start? Any help is really welcome. See the image below (this is what I'm trying to do). Thanks for your help.
funnyCoder
  • 787
  • 2
  • 10
  • 30
2
votes
1 answer

Create a dial plot in R using plotly or ggplot2

I'd like to create a function that takes some inputs based on which it returns a plot object similar to the one shown below: The two halves are mirror images in terms of dial position and colors but the text in the center and the labels are…
Gautam
  • 2,597
  • 1
  • 28
  • 51
2
votes
1 answer

icCube gauge with multiple band colors

I'm trying to make a gauge and want to have two band colors (wrong/red, good/green). I've an example of the amchart in their online Chart maker https://live.amcharts.com/new/edit/. But I'm not able to get this working in icCube. current we have…
Niels
  • 131
  • 5
2
votes
1 answer

How to push a gauge with multiple metrics to Prometheus? Problem with gateway

Exposing a prometheus gauge with multiple metrics via a Pushgateway throws an error of "Gauge" object has no attribute '_value'. Once the line throwing an error is commented, push_to_gateway() throws urlopen error [WinError 10061] No connection…
wounky
  • 97
  • 1
  • 12
2
votes
1 answer

How to use a gauge chart in Google Sheets programmatically

I would like to add a "Gauge chart" in Google sheets programmatically. This is an example that I found on the internet but it is coded to display the chart on a webpage. I will, however, try to work off of that example code. But, any help is…