Change width of obsidian tracker

Things I have tried

scale, that just scales up the svg
x axis properties. That just added more points in the same space, so it was a blurred mess.

What I’m trying to do

Make the graph wider but not scaled up. I want to show more on the x axis.

1 Like

Have you tried using

fitPanelWidth: true

option, which (like searchType and searchTarget) goes above the options for the specific type of graph?
I think you can also explicitly set xMin and xMax in some graphs: e.g.

```tracker
searchType: dvField
searchTarget: myFieldName
fitPanelWidth: true
line:
    title: "My Chart"
    xMin: 10
```

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.