Miura
December 17, 2025, 4:35pm
181
I’ve published a pre-release for v1.9.0 which implements labels for the min/max indicator and the setpoint for the main-gauge.
I primarily released it to test this on my own (production) system, but any feedback is welcome
In HACS, download by using ‘Redownload’ on my repository or enable the Pre-release switch of the HACS entity
mzijderhand
(M. Zijderhand)
December 18, 2025, 8:56am
182
Hi Miura,
How can i set the min/max or setpoint indicator? I’ve tryd min_indicator: 1
Miura
December 18, 2025, 9:11am
183
Build beautiful Gauge cards using 🌈 gradients and 🛠️ templates
Or use the visual editor. Be aware that the documentation does not yet include the added parameters for the labels.
I also just released v1.9.0-b2 which adds precision
For the min/max indicator the following parameters are currently added:
label (boolean)
label_color (string)
precision (number)
For setpoint the following are added:
label (boolean)
precision (number)
mariorpc
(Mário Cardoso)
January 16, 2026, 3:23pm
184
Hello there!
@Miura
I’m using v2 and it’s awesome! I love it!
I’m just asking, if possible, that when clicking on the secondary entity, it opens the record of that entity.
For example, if I have a gauge with the temperature in the main entity and the humidity in the secondary entity, it would be good if, when clicking there (marked in the image), it opened the humidity record instead of the temperature record!
Other than that, it’s perfect for me!
Miura
January 16, 2026, 3:43pm
185
That’s already supported. Checkout the interactions menu within the Visual Editor (or in the manual). You want to configure the ‘secondary value text’. You can set it to ‘more-info’ which will use ‘entity2’ automatically or configure an custom entity
1 Like
CyrusMzRG
(Alex)
January 18, 2026, 2:28pm
186
Hello guys, I need your help because I am trying to add the circled item. I would like that, when an entity is OFF, it is showed(as the example) saying HEATING like in the example; and when that entity is ON, the title dissapears
The entity name is light.colector_hall_cocina
This is my actual yaml code for the card:
type: custom:gauge-card-pro
entity: sensor.termostato_cocina_temperatura
segments:
- pos: 15
color: blue
- pos: 30
color: red
- pos: 22
color: "#4afa4a"
needle: true
gradient: true
titles:
primary: "{{ state_attr(entity, 'friendly_name') }}"
min: 15
max: 30
setpoint:
type: entity
value: input_number.temperatura_cocina
label: true
precision: 0
hide_background: true
gradient_resolution: auto
Thanks a lot for your help,
Pjarbit
(Philip Arbit)
January 21, 2026, 11:07pm
187
Im wondering if its possible to make the graph smaller. Im trying to use custom mod settings. The card is simply too big and changing the height will make the card smaller but not the graph. Other cards have a radius setting or simply a size
This is what happens when I have the height to 80px.
These cards are way to big compared to the rest of my cards on the dashboard.
Thanks for your help on an amazing project
type: custom:gauge-card-pro
entity: sensor.tv_ble_2_black_temperature
theme: clear-dark-vibrant
name: TV TEMP BLE
needle: true
min: 0
max: 130
animation: true
gradient: true
gradient_resolution: medium
value_texts:
primary: "{{ states(entity) | float | round(1) }}°"
segments:
- from: 0
color: "#00adb5"
- from: 40
color: "#00adb5"
- from: 130
color: rgba(0,0,0,0.8)
card_mod:
style: |
ha-card {
height: 80px !important;
border-radius: 16px !important;
box-shadow:
12px 12px 24px rgba(0, 0, 0, 0.5),
-4px -4px 8px rgba(255, 255, 255, 0.1),
inset -4px -4px 8px rgba(0, 0, 0, 0.2),
inset 4px 4px 8px rgba(255, 255, 255, 0.2) !important;
overflow: hidden !important;
padding: 8px !important;
background-color: rgba(67, 73, 82, 1) !important;
color: white !important;
}
Miura
February 4, 2026, 7:29pm
188
Something like this:
titles:
primary: Living room
secondary: |-
{% if is_state('light.colector_hall_cocina', 'off') %}
Heating 🔥
{% endif %}
Miura
February 4, 2026, 7:30pm
189
This issue has been reported at my Github @ Styling issue with resizing · Issue #193 · benjamin-dcs/gauge-card-pro · GitHub
The problem is is that I’m not really sure how to solve this yet
Reflex
(Björn H)
March 2, 2026, 2:55pm
190
A very well‑designed card, I’m a big fan. I would really appreciate having the option to choose the background color for the setpoint label, as it would help the value stand out more clearly… Would this be possible?
Miura
March 2, 2026, 3:48pm
191
I’ll add some css variables for that:
opened 03:48PM - 02 Mar 26 UTC
https://community.home-assistant.io/t/gauge-card-pro/881211/189
1 Like
Custom shapes seem to be broken. I just created an issue in github.
ElMonty
(M.A.)
March 16, 2026, 6:58pm
193
Hi
I have just found your card. It is amazing, thank you so much! But I’m struggling with a template in the max indicator of the inner gauge. It seems broken, here is the full code of my card:
type: custom:gauge-card-pro
entity: sensor.pws_wind_speed
segments:
- from: 0
color: green
- from: 15
color: yellow
- from: 25
color: red
needle: true
gradient: true
titles:
primary: "{{ state_attr(entity, 'friendly_name') }}"
entity2: sensor.pws_wind_gust
icons: {}
max: 40
min: 0
round: small
severity_centered: false
gradient_background: false
max_indicator:
type: template
value: |-
{% if is_state('automation.toldos_registrar_viento_maximo', 'on') %}
{{ states('input_number.toldos_viento_maximo_registrado') | float }}
{% else %}
{{ 100 }}
{% endif %}
opacity: 0.5
color: black
label: true
min_indicator:
type: template
value: |
{% if is_state('automation.toldos_registrar_viento_minimo', 'on') %}
{{ states('input_number.toldos_viento_minimo_registrado') | float }}
{% else %}
{{ 0 }}
{% endif %}
color: black
opacity: 0.5
inner:
mode: needle
min: 0
max: 40
segments:
- from: 0
color: green
- from: 15
color: yellow
- from: 25
color: red
round: small
gradient: true
gradient_resolution: auto
max_indicator:
type: template
color: black
opacity: 0.5
value: |-
{% if is_state('automation.toldos_registrar_rafagas_maximas', 'on') %}
{{ states('input_number.toldos_rafagas_maximas_registradas') | float }}
{% else %}
{{ 100 }}
{% endif %}
gradient_resolution: auto
The max_indicator of the inner is not showing. I have even tried this:
max_indicator:
type: template
color: black
opacity: 0.5
value: |-
{{ 10 }}
But nothing shows. However with entity type, it works fine:
max_indicator:
type: entity
color: black
opacity: 0.5
value: input_number.toldos_rafagas_maximas_registradas
I need the template, because the input_number is not refreshing until I enable the automation. Any comments will be appreciated!
Miura
March 16, 2026, 7:36pm
194
It’s broken. Will fix it in an upcoming release
ElMonty
(M.A.)
March 17, 2026, 8:14am
195
Good to know, thank you!
Also, I have a suggestion, how about making the segments depending on an entity or even a template?
From this:
segments:
- from: 0
color: green
- from: 5
color: yellow
- from: 15
color: red
To this:
segments:
- from: input_number.first_segment_threshold
color: input_select.first_segment_color
- from: input_number.second_segment_threshold
color: input_select.second_segment_color
- from: input_number.third_segment_threshold
color: input_select.third_segment_color
Anyway, it’s a great card!
Miura
March 17, 2026, 8:26am
196
No problem, segments are templatable as well:
Build beautiful Gauge cards using 🌈 gradients and 🛠️ templates
ElMonty
(M.A.)
March 17, 2026, 8:55am
197
Missed that!! That’s great, I have the card just as i want, only waiting for the fix of the inner indicator.
Thanks again!
Miura
March 18, 2026, 1:02pm
198
Just as a thought, which might solve your issue as well: segments can be defined using percentages as well
higgy_de
(Jens)
April 2, 2026, 3:23pm
199
Thanks a lot, after the update yesterday, the standart gauges are not nice…
One question … where / how to change the Name / word ( like here PV Power )