About TeeEditor

TeeChart for ActiveX, COM and ASP
Post Reply
Ghynna
Newbie
Newbie
Posts: 9
Joined: Mon Jun 06, 2005 4:00 am
Location: Canada

About TeeEditor

Post by Ghynna » Thu Nov 10, 2005 7:05 pm

What is an TeeEditor object? Is it an visible object? How can i use it. I'am trying to use series group in my project. I would like to be able to see the same window for the charEditor as the one shown in the example for series_group example.

Thanxs

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Fri Nov 11, 2005 8:41 am

Hi Ghynna,

TeeEditor is the component to access the chart editor at run-time. Chart editor can also be accessed using a TeeCommander component.

To reproduce what's in the example you mentioned you'll need a TeeEditor for the "Edit" button and for the series list at the left of the chart you'll need a TeeListBox:

Code: Select all

Private Sub Command1_Click()
    TeeEditor1.ShowEditor
End Sub

Private Sub Form_Load()
    TeeEditor1.Chart = TChart1
    TeeListBox1.Chart = TChart1
End Sub
Please notice that this demo source code is available at TeeChart's "Examples" folder so that you can open it with VB6 and see better how it works. Default's english installation path is:

C:\Program Files\Steema Software\TeeChart Pro v7 ActiveX Control\Examples\Visual Basic\TeeChartAXV7Demo
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply