Sorry if the title is confusing.
When I position a ui inside my frame, the scale works like this
I want the 0 to be at the bottom instead
I have already tried rotating the UI but that messes it up.
Thank you in advance
Sorry if the title is confusing.
When I position a ui inside my frame, the scale works like this
I want the 0 to be at the bottom instead
I have already tried rotating the UI but that messes it up.
Thank you in advance
You can’t. (changing the anchor won’t invert the axis, only the position)
Why would you do that?
Just change the script or ui positions
I am trying to make a line graph and am using scale to position my UI. If the scale works like that everything will be backwards. I have tried using a formula to change the scale but no luck yet.
if your graph position is X = 1 to 0
why not just do 1-X ?
I do not think that would work. Let me give you an example.
Datapoints: 50, 100
but if my datapoints were 25, 100 then it would look like this
My percent formula is correct because it calculates 25 as 0.25 on the scale. The problem is since the axis is the way it is, this happens
I want it to be like this:
I think I would have to somehow change 0.25 to 0.75 so it works with the scale.
Make changes like this
0.3 → 0.7
0.4 → 0.6
Yeah as i said, 1-X
Let’s take the same example 0.25
Value = 1-X
Value = 1-0.25
Value = 0.75
Make changes like this
0.3 → 0.7
0.4 → 0.6
Again, 1-X
1-0.3 = 0.7
1-0.4 = 0.6
Oh I see now, let me try this----------------------