How can display chart editor without having to display every tab in it. I mean, i simply want the user to control few aspects of it, such as 2D or 3D chart type, etc. and do not want to show everything.
Also, is there anyway i can change the charteditor title to something more suitable to my application instead of "TChart Editor"?
Chart Editor
Hi asupriya,
Property Editor1.HideTabs lets not show all tabs. So just add to the new ChartEditorTabs list of tabs that do not want the users to modify, as is do in the previous code.
I also advise that you have a look at the tutorial and demo examples included with TeeChart .Net installer. Specially you can see a simple example for Editor in All Features\Welcome !\Components\ChartController\ChartController Editor or All Features\Welcome !\Components\Gallery
For that chart editor restrict to display every tabs you could do a similar code for next example:How can display chart editor without having to display every tab in it. I mean, i simply want the user to control few aspects of it, such as 2D or 3D chart type, etc. and do not want to show everything
Code: Select all
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
Editor1.HideTabs = New Steema.TeeChart.Editors.ChartEditorTabs() { _
Steema.TeeChart.Editors.ChartEditorTabs.Data, _
Steema.TeeChart.Editors.ChartEditorTabs.Series, _
Steema.TeeChart.Editors.ChartEditorTabs.Legend, _
Steema.TeeChart.Editors.ChartEditorTabs.Walls}
Editor1.ShowModal()
End Sub
I also advise that you have a look at the tutorial and demo examples included with TeeChart .Net installer. Specially you can see a simple example for Editor in All Features\Welcome !\Components\ChartController\ChartController Editor or All Features\Welcome !\Components\Gallery
There's not a property for that at the moment. The only option would be modifying it yourself in TeeChart sources if you are a sourcecode customerAlso, is there anyway i can change the charteditor title to something more suitable to my application instead of "TChart Editor"?
Best Regards,
Sandra Pazos / 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 |