Hello,
We would like to call attention to a particular series that is displayed in the legend.
Is there a way to change an individual series font or highlight it? We are running v2.
I appreciate any suggestions.
Change a Series Font in Legend
Hello kdn2009,
In version 3 of TeeChartFor .Net exist a property that allows change value of individual series text of legend but not series font. See Welcome !\New in Legend\Legend Items of demos, or next example.
Also, exist other solution that I believe that you will be more useful, there is draw custom legend. You can find an examplehere.
I hope that have served my help.
Thanks,
With v2 of teeChartFor .Net is not possible change font an individual series of legend.Is there a way to change an individual series font or highlight it? We are running v2.
In version 3 of TeeChartFor .Net exist a property that allows change value of individual series text of legend but not series font. See Welcome !\New in Legend\Legend Items of demos, or next example.
Code: Select all
tChart1.Legend.Item[5].Text = "Hello";
I hope that have served my help.
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 |
Legend text
Hello,
Is it possible to change the size of the series text in the legend? What about make it bold or in italics?
Thanks,
Kim
Is it possible to change the size of the series text in the legend? What about make it bold or in italics?
Thanks,
Kim
Hello Kim,
If you want change size text in the legend and style (Bold,Italic,Regular, strikeout, Underline) you can use next lines of code in your application:
I hope that will helps.
Thanks,
If you want change size text in the legend and style (Bold,Italic,Regular, strikeout, Underline) you can use next lines of code in your application:
Code: Select all
tChart1.Legend.Font.Italic = true;
tChart1.Legend.Font.Size = 15;
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 |