VueUiXy - Time tag custom format
A custom format can now be passed through a callback.
const config = ref({
chart: {
timeTag: {
show: true,
// The callback works exactly as the one available for the tooltip
customFormat: ({ absoluteIndex }) => {
return String(absoluteIndex);
}
}
}
})
If you just realized this is version 3 now, here are all the details.