Hi Brad,
I haven't found any shape with this functionality.
I guess you need to create your own shape.
Here is some help:
First create two custom propertiesr
Prop.direction
Prop.setText
Then create a user-defined cell
User.txtAngle
Then place formulas in the applicable cells:
in the Prop.setText cell
=IF(AND(ATAN2(EndY-BeginY,EndX-BeginX)<0
deg,ATAN2(EndY-BeginY,EndX-BeginX)>-180
deg),SETF(GetRef(Prop.direction),"""going
up"""),SETF(GetRef(Prop.direction),"""going down"""))
in the User.txtAngle cell
=IF(OR(ATAN2(EndY-BeginY,EndX-BeginX)<=-90
deg,ATAN2(EndY-BeginY,EndX-BeginX)>=90 deg),SETF(GetRef(TxtAngle),180
deg),SETF(GetRef(TxtAngle),0 deg))
Now in the NW and NE quadrant the text will display 'going up' and in the SW
and SE quadrant it will display 'going down'
Also in the NW and SW quadrant the txtangle cell will be 0 deg and vice
versa in the NE and SE quadrant it will 180 deg. This is for a better visual
display.
Hope this helps
René