How To change or Remove the info box

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Rabbit
Newbie
Newbie
Posts: 9
Joined: Tue Mar 17, 2009 12:00 am

How To change or Remove the info box

Post by Rabbit » Wed Jul 01, 2009 5:38 am

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!
Attachments
question.jpg
question.jpg (15.57 KiB) Viewed 4011 times

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

Re: How To change or Remove the info box

Post by Sandra » Wed Jul 01, 2009 8:43 am

Hello Rabbit,

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;
            
        }
I hope that 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

Rabbit
Newbie
Newbie
Posts: 9
Joined: Tue Mar 17, 2009 12:00 am

Re: How To change or Remove the info box

Post by Rabbit » Thu Jul 02, 2009 3:30 pm

Thanks!

Post Reply