How to disable or read only ion-range

I want to only display selected values on range

You can add the disabled property, but it changes the visual appearance.

<ion-item>
  <ion-range min="-200" max="200" disabled value="100">
    <ion-label range-left>-200</ion-label>
    <ion-label range-right>200</ion-label>
  </ion-range>
</ion-item>
1 Like

Thnx @Nexi its works and nothing changes in the visual appearance