A measurement component, often using a fixed dial and a rotating hand.
Questions tagged [gauge]
454 questions
2
votes
1 answer
Highcharts activity gauge in Shiny
I'm trying to make Activity gauge from Highcharts in Shiny with rCharts. Please, help.
#server.R
library(shiny)
library(rCharts)
shinyServer(function(input, output) {
output$chart <- renderChart({
a <- Highcharts$new()
a$series(data = 50,…

Shen
- 183
- 1
- 10
2
votes
1 answer
Is to possible to delay the needle loading animation in Highcharts angular gauge?
I have created a Highcharts Angular gauge. I need to delay the needle loading animation.
Here is the code:
$(function () {
$('#meter').highcharts({
chart: {
type: 'gauge',
plotBackgroundColor: null,
…

Subin George
- 55
- 6
2
votes
1 answer
Javascript: How to update the max value of a gauge chart?
My current code will only change dynamically the total. I would like to change the Max value dynamically as well, since the max value will change depending on the filter you apply.
The code is the following
resource1=[
…

Antonio Pose
- 21
- 2
2
votes
1 answer
Draw quarter gauge with canvas in android?
How can I create gauge same as this?
any library or maven exist for this gauge type?
I use canvas for circle gauge ,but I can't create this one
RectF oval = getOval(canvas, 1);
RectF oval2 = getOval(canvas, 1.1f);
Paint paint = new…

Saeed Hashemi
- 984
- 4
- 22
- 55
2
votes
2 answers
jqPlot meter gauge label formatting
I'm trying to make a gauge chart with jqPlot and having some trouble formatting the tick labels. Is it possible to override the labels?
I'm wanting the labels to be prepended with a currency symbol and for thousand separating commas to be added and…

ministe
- 543
- 1
- 5
- 17
2
votes
1 answer
Failing to import custom made library - TOP LEVEL EXCEPTION
Im trying to import a custom gauge library made by someone ( Simple gauge view like speedmeter in android? ) into my project in android studio. It imports fine however, when I build the project i get the following error:
I have no idea what to look…

Celly
- 325
- 1
- 14
2
votes
1 answer
Multiple bars in c3 gauge chart
I'm attempting to create a stacked gauge chart using c3.js similar to the image below but cannot find any examples of this in the documentation. Is this even possible?

hereswhatidid
- 738
- 9
- 21
2
votes
1 answer
matplotlib gauge update dynamically
I tried to create a Gauge like this in matplotlib:
http://www.highcharts.com/demo/gauge-solid
It almost works. This is the code so far:
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation
from…

Driedan
- 255
- 1
- 5
- 12
2
votes
3 answers
hide YAxis values in HighChart Solid Gauge
In the below example, is it possible to "hide" the Y Axis values - for example - do not show the 0 and the 200 (in the left).
Looking for cleaner chart..
http://www.highcharts.com/demo/gauge-solid/dark-unica

user1025852
- 2,684
- 11
- 36
- 58
2
votes
0 answers
d3.js - readings in meter gauge like circular axis in d3.js
This time I am stuck in a circular axis for meter readings. I want to make readings and ticks along the circular path for meter gauge (just like speedometer):
However, I am not getting the exact idea or solution for it. Also, to be specific, I want…

sudh_
- 520
- 1
- 8
- 14
2
votes
1 answer
How do I attach a click event handler to the whole HighCharts Gauge control?
I would like my users to be able to click anywhere on my gauge and then respond to the event.
Currently I am using the following plot options but it only makes the gauge needle clickable.
Any ideas on how to configure this to use the whole gauge…

Dirk Kok
- 23
- 1
- 4
2
votes
1 answer
gauge highcharts : Exterior circle color
Is there a way change or get rid of the gray circle in a Gauge chart from HighCharts?
Look this Gauge pls
$(function () {
$('#container').highcharts({
chart: {
type: 'gauge',
backgroundColor:'rgba(255, 255, 255, 0.1)',
…

Carolo
- 67
- 1
- 9
2
votes
1 answer
HighCharts Semi Circle dial that positions correctly
While I have found this post that advises how to change the gauge chart to a semi circle...
How to create a semi circular gauge using high chart?
It's a bit of a faulty design as all we do is shift the chart down ward. This leaves a bunch of white…

Frank Reno
- 243
- 3
- 9
2
votes
2 answers
Highcharts gauge fill to 100% of container
This functionality is available for the Pie Chart via the plotOptions size parameter, however after inspecting the Highcharts API the size isn't available for the Gauge.
size API entry for Pie Chart
Considering the likeness of the two charts…

MandM
- 3,293
- 4
- 34
- 56
1
vote
0 answers
WPF Codeplex Dashboarding BidirectionalDial
BidirectionalDial tempGauge = new Dial360();
if (chp.DialType.Equals("360"))
{
tempGauge = new Dial360();
}
else if (chp.DialType.Equals("180"))
{
tempGauge = new Dial180North();
}
else if (chp.DialType.Equals("90"))
{
tempGauge = new…

user1020800
- 11
- 4