Lahori-Jawan / veeno

noUiSlider based Component for Vue 2
http://veeno.surge.sh/
29 stars 7 forks source link

Format tooltip #4

Open quevlu opened 4 years ago

quevlu commented 4 years ago

Hello, is there a possibility to add a format function in the tooltip message?

pixelart7 commented 4 years ago

Stumbled with this for a while, I found a solution using the tooltips props.

For example:

Veeno(
  connect
  :tooltips="[{ to: (n) => n.toFixed(0) }, { to: (n) => n.toFixed(0) }]"
  :step="1"
  :options="{ start: yearRangeRaw, range: { min: 2400, max: (new Date()).getUTCFullYear() + 543 } }"
  :range="{ min: 2400, max: (new Date()).getUTCFullYear() + 543 }"
  @change="onYearRangeUpdate"
)