Tilecard suppress unit

Hello,
is there a possibility to suppress the unit in a TileCard.
e.g. no km/h here
Code

type: tile
entity: sensor.wetterstation_station_wind_speed
name: " "
color: red
vertical: false
features_position: bottom
card_mod:
  style:
    ha-tile-info$: |
      .secondary {  
        font-size: 2.5em !important;
          }

thanks Frank

here my

i.e. “do not show a unit”?
No, you cannot.
You will have to create a unitless template sensor for that.

Hi,

You can use the standard markdown card without icon

type: markdown
content: "{{ states('sensor.wetterstation_station_wind_speed') }}"
text_only: true

or use mushroom template card incl. a template.

Or Entity card.

1 Like

Or mushroom chip :wink:

Hi, markdown I allready did, I know there it works, but there are other problems.
I hoped to get the tilecard now like I want it, as this has now this wonderful primary secondary option.

Try Mushroom. The card does support tab action types

Which of this mushroomcards is the best to show just the value
I tried some but when I increase the font it is cut on top and bottom.

type: custom:mushroom-template-card
primary: "{{states('sensor.wetterstation_station_wind_speed') }}"
features_position: bottom
icon: mdi:weather-windy
color: blue
type: horizontal-stack
cards:
  - type: custom:mushroom-template-card
    primary: "{{states('sensor.wetterstation_station_wind_speed') }}"
    features_position: bottom
    icon: mdi:weather-windy
    color: blue
grid_options:
  columns: 3
  rows: auto

type: vertical-stack
cards:
  - type: custom:mushroom-template-card
    primary: "{{states('sensor.wetterstation_station_wind_speed') }}"
    features_position: bottom
    icon: mdi:weather-windy
    color: blue
grid_options:
  columns: 3
  rows: auto

Thank you woemiej
That looks good bat my main issue is that I need a tile that uses mostly the whole tile for the font. Exactly that I struggle with the mushroom.
This view comes on a tablet, that shall be readable from 3 meter .
Regards Frank
.