How make one bar behind other and switch them when it need
How make one bar behind other and switch them when it need
By now one value shown at the other when using two or more series. How i can make one behind the other and switch them when user wany it?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Nuzur,
Yes, you can set MultiBar property to none:
Then you can set them back to the default value:
For the definition of the rest of the constants available please see TeeChartDefines.h which you'll fine at C:\Program Files\Steema Software\TeeChart Pro v7 ActiveX Control\Examples\Visual C++
Yes, you can set MultiBar property to none:
Code: Select all
m_Chart1.Series(series1).GetAsBar().SetMultiBar(0);
m_Chart1.Series(series2).GetAsBar().SetMultiBar(0);
Code: Select all
m_Chart1.Series(series1).GetAsBar().SetMultiBar(1);
m_Chart1.Series(series2).GetAsBar().SetMultiBar(1);
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |