Giraffe graphs origin alignment

Hello !
Is there a way to get all graphs to align vertically ? (see screenshot)
It’s essential to the data viz I’m working on, as all timelines are based on the same time range,
but depending on the Yvalue length, the graphs offset to the right… such a shame !!
Many thanks in advance

Hello @GitHubAgneska,
I’m not too familiar with Giraffe. Let me ask around and see.
Thank you for your patience.
I don’t know if this tutorial will help at all

But honestly your best bet is to post a question on gh.

I feel like getting multiple graphs vertically aligned has more to do with your CSS than it does Giraffe.

Dear Anais, unfortunately it is not something I can fix with CSS,
Thing is, the way the canvas gets generated, the end user does not have access to the “inside mechanics” of this container and its alignment behavior.

The only workaround that seems to make it better (the absolute accuracy is difficult to make sure of), is to not display Yaxis values and Xaxis time values, as well as adding these lines to each graph query:

 ` |> aggregateWindow(every: 1s,  fn: mean, createEmpty: true)
   |> truncateTimeColumn(unit: 1s)

Far for ideal obviously :slight_smile: