Hello community,
I want to anchor a text to the bottom left of the page.
I use an export to html.
When I use a negative value for y, the text is shifted below the digram, but when I change the size of the browser window it is not sticking to the bottom of the page.
I tried to add a scrrenshot but upload doesnβt work.
Instead a simple example you could try to run.
As far as I know, if you use annotation text and sticking them to the bottom left of the page , it will not work because the y position of text is respected to the paper of the plot , not page.
So, even if you succeed placing them in to bottom left, it will change when you change the size of browser.
The preferred approach that I can give to you are, by combining these 3 steps:
get html string using to_html function
insert text in the bottom of page using Jinja template
the save the file as html.
You can refer from page here:
Here my suggestion change from your previous code.