Hello,
Iam using BarJoin,
I want to keep the numbers on each bar as in the attached picture.
Also, I want to control the information title as in the red cycle. without effectig the number yellow box on the top of each bar.
Can you help me plz?
Thanks!
How To change or Remove the info box
How To change or Remove the info box
- Attachments
-
- question.jpg (15.57 KiB) Viewed 4012 times
Re: How To change or Remove the info box
Hello Rabbit,
I make a simple example. You can use a similar code in your application for control text in the legend.
I hope that will helps.
Thanks,
I make a simple example. You can use a similar code in your application for control text in the legend.
Code: Select all
Steema.TeeChart.Styles.BarJoin barjoin;
private void InitializeChart()
{
barjoin = new Steema.TeeChart.Styles.BarJoin(tChart1.Chart);
barjoin.Add(100, 25, "value1");
barjoin.Add(125, 35, "value2");
barjoin.Marks.Style = Steema.TeeChart.Styles.MarksStyles.Value;
}
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 |