Ungrouping series to use secondary axis

S

Sridhar

Iam using OWC10 chart control in VB.net.
In my graph, I have five series. Series1, Series2, Series3, Series4, Series5.
Series1 - X axis
Other series are y-axis.
I want to two Y - axis with different scalings. Say axis1 and axis2.
I want Series2 to be plotted on axis1.
Series3, Series4, Series5 on axis2.

To achieve this, I did a code
Series3.ungroup(true)
Series4.ungroup(true)
Series5.ungroup(true)

Now all the three series are seperated from axis1. Now the challenge is i
want Series3, Series4, Series5 to be plotted on axis2 instead of seperate
axis for each series.
To achieve this, i did a code
Series3.group(series4)
Series3.group(series5)

I thought this code will make the three series to be plotted on axis2. But
only Series 3 and series 4 were plotted on axis2. Series 5 is getting plotted
in different axis.

Could any of you please help me how to make the three series to be plotted
on the same axis2?
 

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