Page 1 of 1

How To change or Remove the info box

Posted: Wed Jul 01, 2009 5:38 am
by 13052823
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!

Re: How To change or Remove the info box

Posted: Wed Jul 01, 2009 8:43 am
by 10050769
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,

Re: How To change or Remove the info box

Posted: Thu Jul 02, 2009 3:30 pm
by 13052823
Thanks!