Page 1 of 1

Border Editor - Title change

Posted: Fri Aug 13, 2010 6:36 am
by 13051032
Is there a way to change the title of the dialog box for editing series properties? I like to rename this generic "Border Editor" as "Series Properties". How can i do it?

My code looks as follows

Code: Select all

Dim s As Steema.TeeChart.Styles.FastLine = CType(selectorPart.ASeries, Steema.TeeChart.Styles.FastLine)
Steema.TeeChart.Editors.PenEditor.Edit(s.LinePen)
Please help.

Re: Border Editor - Title change

Posted: Fri Aug 13, 2010 4:08 pm
by yeray
Hi asupriya,

In C# you can do as follows:

Code: Select all

            Steema.TeeChart.Styles.FastLine s = new Steema.TeeChart.Styles.FastLine(tChart1.Chart);
            Steema.TeeChart.Editors.PenEditor editor1 = new Steema.TeeChart.Editors.PenEditor(s.LinePen);
            editor1.Text = "Series Editor";
            editor1.Show();

Re: Border Editor - Title change

Posted: Sat Aug 14, 2010 4:27 am
by 13051032
Great Yeray. Thanks for the help.