Print ticklabels inside the plot

Hi,
currently i’m trying to optimize some plots for mobile devices. I’m using plotly.js 1.47.4 and react-plotly.js 2.3.0.

On small devices i want to print the ticklabels of the y-axis inside the plot. This makes it possible to have a bigger plot - easier to read.
In d3 it is possible to change the orientation of the scale with

yAxis.scale(y).orient('right');

Is there a way to achieve the same result with plotly?

Not at the moment unfortunately. You can try using annotations for this purpose.

Thanks for the answer. I’ll try your suggestion.