Page 1 of 1

Specifying Vertex Titles

Posted: Tue Oct 12, 2010 10:43 am
by 15057312
How do i specify the vertex titles on the ternary plot?

Thanks,

Re: Specifying Vertex Titles

Posted: Wed Oct 13, 2010 8:35 am
by 10050769
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,

Re: Specifying Vertex Titles

Posted: Wed Oct 13, 2010 11:31 am
by 15057312
Thank you Sandra