I want to programmatically hide Series -> Styles tab on the chart editor. Please help.
Also is there a way i can look at only my postings on this newsgroup? Becuase i had posted this question, i think, sometime back and did not know a quick way to find the message apart from going through many search results.
Thanks.
How to hide Series -> Style tab on chart editor?
Hi
Also, to hide some Editor tabs via code you must use similar code to the following :
Please see all the Tabs (and Tabs name) you can hide in the Help file.
I cannot see this Tab ("Styles" under Series, I can see "General" or "Format",...), which one do you refer ?I want to programmatically hide Series -> Styles tab on the chart editor. Please help.
Also, to hide some Editor tabs via code you must use similar code to the following :
Code: Select all
procedure TChartEditorForm.CheckBox1Click(Sender: TObject);
Var NewTabs:TChartEditorHiddenTabs;
begin
NewTabs:=[cetTools,cetExport,cetPrintPreview,cetSeriesData];
if CheckBox1.Checked then
ChartEditor1.HideTabs:=ChartEditor1.HideTabs-NewTabs
else
ChartEditor1.HideTabs:=ChartEditor1.HideTabs+NewTabs
end;
Pep Jorge
http://support.steema.com
http://support.steema.com
I think the better way for the moment is using the Search by words.Also is there a way i can look at only my postings on this newsgroup? Becuase i had posted this question, i think, sometime back and did not know a quick way to find the message apart from going through many search results.
Pep Jorge
http://support.steema.com
http://support.steema.com
The only tabs that i can hide are the following according to help:
cetMain, cetGeneral, cetAxis, cetTitles, cetLegend, cetPanel, cetPaging, cetWalls,
cet3D, cetSeriesGeneral, cetSeriesMarks, cetAllSeries, cetSeriesData, cetExport, cetTools, cetPrintPreview
so on Series tab, only ( General, Marks, Data ) sub tabs could be hid or else have to hide the whole series tab.
Is there a way to just hide Series -> Stack tab?
Thanks in advance for the reply.
- Suma.
cetMain, cetGeneral, cetAxis, cetTitles, cetLegend, cetPanel, cetPaging, cetWalls,
cet3D, cetSeriesGeneral, cetSeriesMarks, cetAllSeries, cetSeriesData, cetExport, cetTools, cetPrintPreview
so on Series tab, only ( General, Marks, Data ) sub tabs could be hid or else have to hide the whole series tab.
Is there a way to just hide Series -> Stack tab?
Thanks in advance for the reply.
- Suma.
Hi Suma,
Yes, it's a way, but it seems that does not work fine. I'm investigating it. I'll back with results as soon as possible.Is there a way to just hide Series -> Stack tab?
Pep Jorge
http://support.steema.com
http://support.steema.com