Hi
When I'm in Chart Editor and click on 'Add' or 'Change' buttons to add a new series or to change the existing series, I get the 'TeeChart Gallery' dialog. In this dialog under the 'Series' tab, I get the:
Standard, 3D, Other, Extended, Financial and Stats tabs.
I want to be able to remove 3D, Extended, Financial and Stats tabs from this 'TeeChart Gallery' dialog. Is is possible to do this?
Furthermore, in the 'Standard' tab, I want to remove Gant, Shape and Bubble series option. Is it possible to do this?
I'm using Visual C++.
Thank you.
How to remove some tabs under Series tab
-
- Site Admin
- Posts: 1349
- Joined: Thu Jan 01, 1970 12:00 am
- Location: Riudellots de la Selva, Catalonia
- Contact:
Hi --
No, I don't think this is possible; the nearest TeeChart comes to this is by the use of the ITeeEditor (see Help for details), e.g.When I'm in Chart Editor and click on 'Add' or 'Change' buttons to add a new series or to change the existing series, I get the 'TeeChart Gallery' dialog. In this dialog under the 'Series' tab, I get the:
Standard, 3D, Other, Extended, Financial and Stats tabs.
I want to be able to remove 3D, Extended, Financial and Stats tabs from this 'TeeChart Gallery' dialog. Is is possible to do this?
Code: Select all
void CVCplus60TESTAXv7Dlg::OnShowWindow(BOOL bShow, UINT nStatus)
{
CDialog::OnShowWindow(bShow, nStatus);
m_Editor1.SetChartLink(m_Chart1.GetChartLink());
m_Chart1.AddSeries(scLine);
m_Chart1.Series(0).FillSampleValues(10);
m_Editor1.GetOptions().SetAdd(false);
m_Editor1.GetOptions().SetChange(false);
}
void CVCplus60TESTAXv7Dlg::OnButton1()
{
m_Editor1.ShowEditor();
}
Thank you!
Christopher Ireland (Steema crew)
Please be aware of the newsgroup archives:
http://www.teechart.net/support/search.php
http://groups.google.com
http://codenewsfast.com/
Christopher Ireland (Steema crew)
Please be aware of the newsgroup archives:
http://www.teechart.net/support/search.php
http://groups.google.com
http://codenewsfast.com/