On this.
The text for the node comes to the left of the Tirangle, I want it to be put on the Right and Above the Triangle ..
Any Idea how i can do it OR what properties to change please, I am very new to this tool have hardly used it ...
i want the #1 on top or on right of that Triangle ...
private void InitialiseGoText(GoText t)
{
if (t == null)
return;
t.Alignment = GoObject.TopRight;
t.Selectable = false;
t.Deletable = false;
t.Editable = false;
t.FontSize = 8;
t.AutoRescales = false;
//19/01/2011
//t.AutoResizes = false;
t.AutoResizes = true;
t.Clipping = true;
t.Width = 5;
t.StringTrimming = StringTrimming.EllipsisCharacter;
t.TextColor = Color.Red;
}
Any idea people Thanks.