How do i specify the vertex titles on the ternary plot?
Thanks,
Specifying Vertex Titles
Re: Specifying Vertex Titles
Hello lilo,
If you want to change string of Vertexes of Ternary series, you need access to Ternary VertexTitles list as do below:
I hope will helps.
Thanks,
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";
Thanks,
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Re: Specifying Vertex Titles
Thank you Sandra