Thank you very much!
Try adding the option ScalingFunctions. Let's say list holds your data, then
ScalingFunctions
list
ListPlot[list, ScalingFunctions -> {"Reverse", None}]
Thank you very much! But now the y-axis is on the right side and not on left. How can i fix this?
You can use the AxesOrigin option.
AxesOrigin
I guess you are asking for ScalingFunctions (let data be your data), try:
data
ListLinePlot[data, ScalingFunctions -> {"Reverse", None}]