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
About TeeEditor
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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:
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
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
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 |
Instructions - How to post in this forum |