how can i change through the code

TeeChart for ActiveX, COM and ASP
Post Reply
Aravind
Newbie
Newbie
Posts: 75
Joined: Fri Nov 15, 2002 12:00 am

how can i change through the code

Post by Aravind » Tue May 23, 2006 8:53 am

i want to change/set stacked property of the bar chart to either of the following

1.stacked
2.none
3. side stacked
....

i want to this through vb code
arav

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Tue May 23, 2006 9:02 am

Hi arav,
1.stacked

Code: Select all

    TChart1.Series(0).asBar.MultiBar = mbStacked
2.none

Code: Select all

    TChart1.Series(0).asBar.MultiBar = mbNone
3. side stacked

Code: Select all

    TChart1.Series(0).asBar.MultiBar = mbSide
Best Regards,
Narcís Calvet / 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

Aravind
Newbie
Newbie
Posts: 75
Joined: Fri Nov 15, 2002 12:00 am

how can i bring all labels/values front (bring to front) on

Post by Aravind » Tue May 23, 2006 9:58 am

how can i bring all labels/values front (bring to front) on the chart

i am drawing various graphs such as line,bar,stackedbar, horizbar, in the bar chart the values hide behind the bar and not able to see...

how can i bring them forward and how can i set this property in through the code for the entire series or collection of series ..

aravind

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Tue May 23, 2006 10:03 am

Hi Aravind,

I'm not able to reproduce the issue here. Could you please send us an example we can run "as-is" to reproduce the problem here?

You can post your files at news://www.steema.net/steema.public.attachments newsgroup.

Thanks in advance.
Best Regards,
Narcís Calvet / 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

Aravind
Newbie
Newbie
Posts: 75
Joined: Fri Nov 15, 2002 12:00 am

sorry this is not issue

Post by Aravind » Tue May 23, 2006 10:11 am

hi

when i draw the bar chart , some values hide behind the bar , i want to bring them front , so that i can see all values plotted ..

aravind

Aravind
Newbie
Newbie
Posts: 75
Joined: Fri Nov 15, 2002 12:00 am

i posted the tee file

Post by Aravind » Tue May 23, 2006 10:17 am

i posted the tee file newsgroup pls check it and advise me
aravind

Aravind
Newbie
Newbie
Posts: 75
Joined: Fri Nov 15, 2002 12:00 am

any info on my previous post

Post by Aravind » Wed May 24, 2006 9:05 am

any info on my previous post

need help asap

aravind

Pep
Site Admin
Site Admin
Posts: 3295
Joined: Fri Nov 14, 2003 5:00 am
Contact:

Post by Pep » Wed May 24, 2006 9:10 am

Hi Aravind,
am drawing various graphs such as line,bar,stackedbar, horizbar, in the bar chart the values hide behind the bar and not able to see...
Yes, this is by default for Stacked 2D Bar Series, we've on our wish list to be considered for further releases.
As a way arounds :
1) Use the DragMarks tool
2) Set a different arrow length for the Marks of each Series. (setting the ArrowLength to negative value).
3) Placing custom markers, for example using Annotation tools.

Post Reply