Gauge type: current
vrish88 opened this issue · 2 comments
vrish88 commented
Is there a way to display the latest data point on a gauge label or gadget? Something like:
var description = {
"Current Speed": {
source: "http://localhost:4567/",
GaugeLabel: {
parent: "#hero-one",
title: "Your speed is",
type: "current"
}
}
}
jondot commented
Looks like you already implemented it yourself, I salute you :)
FredLliao commented
hello,I want to get the sum of the latest day data point on a gauge lable,something like:
var description = {
"The Sum": {
source: "http://localhost:4567/",
GaugeLabel: {
parent: "#hero-one",
title: "The Sum is",
type: "sum"
}
}
}
how to do it?Thank you!