Vertical Slider

Hi. im looking for vertical slider, at the moment i found 3 but none of them work for i what want.
3 that i found.

works best for shutters.

this one works, but i cant put the numeric state and also i cant name it

this one i can manage to work, i tried HACS install, and manual install, and doesnt work with a input_number value.

im making a DMX control throw MQTT, its working but i want vertical slider that i can name, and show numeric state fo the slider.

if anyone have any hidden vertical slider ahhahah

thanks!

What kind of vertical slider are you looking for?
If you go to Settings > Helpers and create/select your input_number.your_entity. Here you can change the display to a slider or field.

Then you can use this in an entities card. See: Entities card - Home Assistant

If you are using yaml in stead of the UI you could add this to your dashboard:

- type: entities
  entities:
  - entity: input_number.your_entity
    name: "Sliding al them ways" 
    icon: mdi:slide
    tap_action:
      action: none

i currently have slider, but from left to right
image

i want them to be from up and down.
i put the code you send me, but it doesnt work, maybe im missing something.

im trying to do a mixer card, something like this but with name and values.

this is a horizontal stack with this code in it.

type: custom:my-slider-v2
entity: input_number.dmx_dimmer
vertical: true
show_name: true
showMin: true
showMax: true
sliderMin: 0
styles:
card:
- height: 200px
- width: 70px
track:
- background: |
[[[
if (entity.state == “off”) return “red”;
else return “purple”;
]]]