CTitle hd = m_Chart1.GetHeader();
hd.GetFrame().ShowEditor();
Editor shows up and changes can be made.
However none of the changes ever take effect.
Chart Header Frame Editor
-
- Site Admin
- Posts: 1349
- Joined: Thu Jan 01, 1970 12:00 am
- Location: Riudellots de la Selva, Catalonia
- Contact:
Hi --
Try:CTitle hd = m_Chart1.GetHeader();
hd.GetFrame().ShowEditor();
Editor shows up and changes can be made.
However none of the changes ever take effect.
Code: Select all
CTitle hd = m_Chart1.GetHeader();
hd.GetFrame().SetTransparent(false);
hd.GetFrame().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/
Does not work
The compiler error states:
SetTransparent' : is not a member of 'CPen1'
Looks like you are trying to make it visible... so I tried
hd.GetFrame().SetVisible(true);
Did nothing except set teh Visible checkbox in the editor.
Frame or border is still not visible.
SetTransparent' : is not a member of 'CPen1'
Looks like you are trying to make it visible... so I tried
hd.GetFrame().SetVisible(true);
Did nothing except set teh Visible checkbox in the editor.
Frame or border is still not visible.
-
- Site Admin
- Posts: 1349
- Joined: Thu Jan 01, 1970 12:00 am
- Location: Riudellots de la Selva, Catalonia
- Contact:
Hi --
Sorry, my mistake. Try:The compiler error states:
SetTransparent' : is not a member of 'CPen1'
Code: Select all
void CVCplus6AXv6Dlg::OnButton1()
{
CTitles hd = m_Chart1.GetHeader();
hd.SetTransparent(false);
hd.GetFrame().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/