Index

From: Narcís Calvet  Steema Software
Subject: Re: how can I make a chart - bars - grouped by year
Date: Wed, 26 Jan 2005 10:17:44 +0100
Newsgroup: public.teechart5.activex  

Hello Ellyn,

You can create one bar series for each product, and in every series,
populating a bar for each year. To get the first image aproach you can do:

For i = 0 To TChart1.SeriesCount - 1
TChart1.Series(i).asBar.MultiBar = mbSide
Next


For the second image stacking use:

For i = 0 To TChart1.SeriesCount - 1
TChart1.Series(i).asBar.MultiBar = mbSide
Next

--
Best Regards,

Narcís Calvet
http://support.steema.com

"Important note: If you are a TeeChart registered customer, please post your
support questions at Steema's Support monitored Forums for customers:
http://support.steema.com for a prompter reply."



"Ellyn" wrote in message
news:nKaYrb0AFHA.1800@TEEPC.Steema.local...
> I'm starting to use the TeeChart Pro ActiveX V5.0.3 and have some doubts.
> I need to build a graph in bars grouped by year, as shown in the images
> below.
> How can I show many products for each year? Could you send an example ?
>
> I´m using ASP.Net/Vb.
>
> Thanks a lot!
>
>
>