Chart Editor

For a list of all members of this type, see Editor Members


System.Object
   System.MarshalByRefObject
      System.ComponentModel.Component
         System.Windows.Forms.Control
public class Editor : Control , IComponent, IDisposable, IOleControl
, IOleObject, IOleInPlaceObject, IOleInPlaceActiveObject, IOleWindow
, IViewObject, IViewObject2, IPersist, IPersistStreamInit, IPersistPropertyBag
, IPersistStorage, IQuickActivate, ISupportOleDropSource, IDropTarget
, ISynchronizeInvoke, IWin32Window, IArrangedElement, IBindableComponent
, IKeyboardToolTip

Example

 public void LocalShowEditor() 
{
	Steema.TeeChart.Editor editor = new Steema.TeeChart.Editor(tChart1);

	editor.HelpFileName="myHelpFile.chm"; //leave empty for TeeChart's own help
	editor.Title="My Charting App - Chart Editor";

	Steema.TeeChart.Editors.ChartEditorOptions[] options=new Steema.TeeChart.Editors.ChartEditorOptions[2];

	options[0]=Steema.TeeChart.Editors.ChartEditorOptions.Help;
	options[1]=Steema.TeeChart.Editors.ChartEditorOptions.Add;
	options[1]=Steema.TeeChart.Editors.ChartEditorOptions.Delete;

	editor.Options=options;

	editor.ShowModal();
}

Requirements

Namespace: Steema.TeeChart Namespace

Assembly: TeeChart.dll

See Also

Editor members | Steema.TeeChart Namespace