Page 1 of 1
About TeeEditor
Posted: Thu Nov 10, 2005 7:05 pm
by 9527086
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
Posted: Fri Nov 11, 2005 8:41 am
by narcis
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