Drawing 3 graphs into a single chart

S

Santhosh_Ravi

Hi,

I have been trying to draw 3 graphs. 2 in the form of line
chart and 1 in

the barchart form ,in a single chart.All the three have 'Date' on x-
axis.Is this possible? CAn anybody help me with some sample code or
location on

the net where i can find such an example.By the way i am using OWC10.

Thanks in advance.

Santhosh
 
T

Thao Moua [ms

You cannot have a bar/line combo chart. The only combo
(2d/3d) charts you can have is column/area/line.

Thao Moua
OWC WebChart Support
 
P

Pawel Achtel

Dear Santhosh,

You can try our competitive chart products here:
www.24x7.com.au/products.htm . I hope this is of interest.

Kind Regards,

Pawel
3D Software Development, Australia
www.24x7.com.au


Thao Moua [ms said:
You cannot have a bar/line combo chart. The only combo
(2d/3d) charts you can have is column/area/line.

Thao Moua
OWC WebChart Support
-----Original Message-----

Hi,

I have been trying to draw 3 graphs. 2 in the form of line
chart and 1 in

the barchart form ,in a single chart.All the three have 'Date' on x-
axis.Is this possible? CAn anybody help me with some sample code or
location on

the net where i can find such an example.By the way i am using OWC10.

Thanks in advance.

Santhosh
 
S

Santhosh_Ravi

Thanks for the Reply,

I tried using 2 line graphs and 1 column graph in a single chart but i
am getting only one line graph and a column graph.I am using 3
seriescollections to add the graphs to the chart and setting the TYPE
property as

set c =ChartSpace.Constants

ChartSpace.charts(0).SeriesCollection(0).Type =c.chChartTypeline

ChartSpace.charts(0).SeriesCollection(1).Type=c.chChartTypeline

ChartSpace.charts(0).SeriesCollection(2).Type=c.chChartTypecolum-
nclustered



Please help me out with this

Thanks,

Santhosh





Originally posted by Thao Moua [Ms
You cannot have a bar/line combo chart. The only combo
(2d/3d) charts you can have is column/area/line.

Thao Moua
OWC WebChart Support
have 'Date' on x-
 
T

Thao Moua [ms]

Whenever you change a series's chart type, the series are
rearranged and their index are modified. You can either
1) assign a name to each series for easy tracking. This
will guarantee that you will always modify the correct
series.
Series(0).name = "line1"
Series(1).name = "line2"
Series(2).name = "line1"

Series(0).type = chChartTypeline
Series(1).type = chChartTypeline
Series(2).type = chChartTypecolumnclustered

2) change the entire chart type to a line chart and then
change the 3rd series (Series(2)) to a column chart.

Thao Moua
OWC Webchart Support
-----Original Message-----

Thanks for the Reply,

I tried using 2 line graphs and 1 column graph in a single chart but i
am getting only one line graph and a column graph.I am using 3
seriescollections to add the graphs to the chart and setting the TYPE
property as

set c =ChartSpace.Constants

ChartSpace.charts(0).SeriesCollection(0).Type =c.chChartTypeline
ChartSpace.charts(0).SeriesCollection (1).Type=c.chChartTypeline

ChartSpace.charts(0).SeriesCollection
(2).Type=c.chChartTypecolum-
nclustered



Please help me out with this

Thanks,

Santhosh





Originally posted by Thao Moua [Ms
You cannot have a bar/line combo chart. The only combo
(2d/3d) charts you can have is column/area/line.

Thao Moua
OWC WebChart Support
of
have 'Date' on x-
sample code or
am
using OWC10.

.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top