Is it possible to revert the yAxis values to have the lowest numbers start from the top?
Revert yAxis values to start at the top with lowest values
A trick (but that's only a workaround waiting for a better solution):
- instead of a range of [+40 +100], set it as [-100 -40]
- inverse all y values of data
- plot
Then you should get what you want, but all labels on y-axis will be marked as - x
If you don't mind, that will do the job.
Thanks for the idea Claude31, it kind of works to negate the number. The lowest numbers are now top to bottom, but I also have a gradient that now appears on the wrong side of the linke marks.