scHorizBar + scPoint series displaying
Posted: Tue Feb 08, 2005 5:16 pm
Hello,
Using Version 5.03
Trying to display 2 stacked horizontal bars and scPoint series
What happens after I add scPoint is that it "pushes" the two horizontal bars down instead of being plotted nicely "next" them.
In other words I get something similar to
*
*
*
--------
-------
--------
instead of
-------- *
------ *
---------- *
Is there away around it?
Thanks in advance,
Shurik.
Using Version 5.03
Trying to display 2 stacked horizontal bars and scPoint series
Code: Select all
...
'adding the first horizontal bar
.AddSeries scHorizBar
.Series(0)DataSource=rs
.Series(0).XValues.ValueSource=rs.Fields(1).Name)
....
'here adding another horizontal bar
....
'trying to add scPoint "fails"
.AddSeries scPoint
.Series(2).DataSource=rs
.Series(2).YValues.ValueSource=rs.Fileds(3).Name
...
In other words I get something similar to
*
*
*
--------
-------
--------
instead of
-------- *
------ *
---------- *
Is there away around it?
Thanks in advance,
Shurik.