Hi,
First, thanks for the work fellas, trackio is a very nice lib 🤩.
It seems that it is not possible to choose a logged metric as x-axis since the 0.20.0 rewrite. It is a very nice feature that should be kept around IMO.
I can see that the choices are limited to time and step in the Sidebar.svelte
|
let availableXAxes = $derived.by(() => { |
|
let axes = ["step", "time"]; |
|
return axes; |
|
}); |
Julien
Hi,
First, thanks for the work fellas, trackio is a very nice lib 🤩.
It seems that it is not possible to choose a logged metric as x-axis since the 0.20.0 rewrite. It is a very nice feature that should be kept around IMO.
I can see that the choices are limited to
timeandstepin the Sidebar.sveltetrackio/trackio/frontend/src/components/Sidebar.svelte
Lines 51 to 54 in 7ab39d4
Julien