How to remove some tabs under Series tab

TeeChart for ActiveX, COM and ASP
Post Reply
Vic
Newbie
Newbie
Posts: 3
Joined: Wed Mar 24, 2004 5:00 am
Location: Australia

How to remove some tabs under Series tab

Post by Vic » Thu Aug 26, 2004 1:59 am

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.

Christopher
Site Admin
Site Admin
Posts: 1349
Joined: Thu Jan 01, 1970 12:00 am
Location: Riudellots de la Selva, Catalonia
Contact:

Post by Christopher » Mon Aug 30, 2004 8:00 am

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?
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.

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/

Post Reply