Specifying Vertex Titles

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
lilo
Newbie
Newbie
Posts: 61
Joined: Thu Sep 23, 2010 12:00 am

Specifying Vertex Titles

Post by lilo » Tue Oct 12, 2010 10:43 am

How do i specify the vertex titles on the ternary plot?

Thanks,

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: Specifying Vertex Titles

Post by Sandra » Wed Oct 13, 2010 8:35 am

Hello lilo,

If you want to change string of Vertexes of Ternary series, you need access to Ternary VertexTitles list as do below:

Code: Select all

            
            series1.VertexTitles[0][0] = "Vertex A";
            series1.VertexTitles[1][0] = "Vertex B";
            series1.VertexTitles[2][0] = "Vertex C";
I hope will helps.

Thanks,
Best Regards,
Sandra Pazos / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

lilo
Newbie
Newbie
Posts: 61
Joined: Thu Sep 23, 2010 12:00 am

Re: Specifying Vertex Titles

Post by lilo » Wed Oct 13, 2010 11:31 am

Thank you Sandra

Post Reply