vote up 2 vote down star
1

Is it possible to specify a position in terms of Scaled coordinates in one direction and use the ordinary coordinates from my data points in the other direction on the plot? In other words, I want to specify a position, where the x coordinate is an ordinary coordinate and will change position in the plot if the plot range is changed, but the y coordinate is Scaled coordinate and will remain at a fixed height relative to the plot.

flag
Is this for a list plot, or are you using Graphics objects? – Pillsy Sep 29 at 2:08
I'm trying to use the function "Scaled" within a Graphics object. – jxy Sep 29 at 3:38

1 Answer

vote up 3 vote down check

It is a bit late in coming, but is this what you are looking for?

data = {{1, 0.5}, {2, 0.7}, {3, 0.4}, {4, 0.2}};
Graphics[
  Line[data /. {x_, y_} :> Scaled[{0, y}, {x, 0}]],
  Axes -> True,
  PlotRange -> {Automatic, {0, 100}},
  AspectRatio -> Full
]
link|flag
This is indeed what I'm looking for. Fine trick! Thank you. – jxy Nov 15 at 21:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.