Represents a form which can be used to create and modify chart objects within a worksheet.
Namespace: MindFusion.Spreadsheet.WinForms
Assembly: MindFusion.Spreadsheet.WinForms.StandardForms
SyntaxC#
Copy Code
|
|---|
public class ChartForm : Form |
Visual Basic
Copy Code
|
|---|
Public Class ChartForm |
RemarksThis form can be used to insert new or edit existing Chart objects in a Worksheet. To use the form, create an instance of the ChartForm class, by providing the related worksheet or the chart to edit, and call the ShowDialog method. The changes made through the form are automatically applied to the target chart. The following image displays the chart form:

ExampleThe code below demonstrates how to display the chart form for an existing Chart object.
C#
Copy Code
|
|---|
var form = new ChartForm(worksheet, chart); |
Visual Basic
Copy Code
|
|---|
Dim form As New ChartForm(worksheet, chart) |
Inheritance HierarchySystem.Object![]()
System.MarshalByRefObject![]()
System.ComponentModel.Component![]()
System.Windows.Forms.Control![]()
System.Windows.Forms.ScrollableControl![]()
System.Windows.Forms.ContainerControl![]()
System.Windows.Forms.Form![]()
MindFusion.Spreadsheet.WinForms.ChartForm
See Also