Thumbstick strength/intensity?

How can I get the strength of a thumbstick in blueprint? Like how far it is pushed off center, I tried getting the vector length of X axis and Y axis but that gives me not the right values (diagonal are then too how high values)

Thumbstick only measure push per axis, they can’t messure how far thumbstick is, so you need to correct diagnal potion values to be more oval

You need to correct it manually by math like this:

X=X*(1-(0.293*abs(Y)))
Y=Y*(1-(0.293*abs(X)))

Maybe there simple node for that but i can;'t find it

With taking the vector length of that XY vector it is right diagonal and straight but everything inbetween is then still wrong. With fully pushed away from the center and the direction not straight or perfect diagonal it less then 1.