One way: Use an X-Y graph. You probably want autoscaling OFF in both axes. Manually set the min and max values for bothe axes.
Call X0,Y0 the center point for your display. Probably 0 and 0, but you can use other values, if needed.
Given magnitude M and phase angle A, compute the endpoint of the line:
R = A * pi / 180 (compute angle in radians)
S = sin (R) (compute the sine of the angle)
C = cos (R) (compute the cosine of the angle)
X1 = X0 + C * M (compute the X endpoint)
Y1 = Y0 + S * M (compute the Y endpoint)
Assemble {X0,Y0} and {X1,Y1} into an array of X-Y clusters, and feed it to the graph.
You have a line of magnitude M, at angle A