Chart Class |
Namespace: Spire.Xls
The Chart type exposes the following members.
Name | Description | |
---|---|---|
![]() |
AlternativeText |
Returns or sets the descriptive (alternative) text string for a Shape object when the object is saved to a Web page. Read/write String
(Inherited from
XlsShape
.)
|
![]() |
AlternativeTextTitle |
Returns or sets the descriptive (alternative) text title string for a Shape object when the object is saved to a Web page. Read/write String
(Inherited from
XlsShape
.)
|
![]() |
AutoScaling |
True if Microsoft Excel scales a 3-D chart so that it's closer in size to the equivalent 2-D chart.
(Inherited from
XlsChartShape
.)
|
![]() |
AutoSize |
True if the size of the specified object is changed automatically
to fit text within its boundaries.
(Inherited from
XlsShape
.)
|
![]() |
BottomRow |
Bottom row of the chart in the worksheet.
(Inherited from
XlsChartShape
.)
|
![]() |
BottomRowOffset |
Bottom row offset.
(Inherited from
XlsShape
.)
|
![]() |
CategoryAxisTitle |
Title of the category axis.
(Inherited from
XlsChartShape
.)
|
![]() ![]() |
ChartArea |
Returns a ChartArea object that represents the complete chart area for the chart.
![]()
The following code illustrates how to access IChartFrameFormat using ChartArea
property and set foreground color for the ChartArea:
<para>//Create worksheet</para><para>Workbook workbook = new Workbook();</para><para>Worksheet worksheet = workbook.Worksheets[0];</para><para>//Add data</para><para>worksheet.Range["A1"].Text = "Jan"; worksheet.Range["B1"].Text = "Feb"; worksheet.Range["C1"].Text = "Mar"; worksheet.Range["A2"].Text = "10"; worksheet.Range["B2"].Text = "20"; worksheet.Range["C2"].Text = "30";</para><para>//Create chart and range</para><para>Chart chart = worksheet.Charts.Add();</para><para>chart.DataRange = worksheet.Range["A1:C2"];</para><para>//Set chart frame format</para><para>IChartFrameFormat frameFormat = chart.ChartArea;</para><para>//Set color</para><para>frameFormat.Fill.ForeColor = System.Drawing.Color.Red;</para><para>//Save to file</para><para>workbook.SaveToFile("Chart.xlsx");</para> |
![]() |
ChartSubTitle |
Gets the chart's sub-title. Only for ODS format file.
(Inherited from
XlsChartShape
.)
|
![]() |
ChartTitle |
Represents the title of the specified chart.
(Inherited from
XlsChartShape
.)
|
![]() |
ChartTitleArea |
Gets title text area. Read-only.
|
![]() |
ChartType |
Type of the chart.
(Inherited from
XlsChartShape
.)
|
![]() |
CheckBoxes |
Returns collection with all checkboxes inside this worksheet. Read-only.
(Inherited from
XlsChartShape
.)
|
![]() |
CodeName |
Gets code name of the chart.
(Inherited from
XlsChartShape
.)
|
![]() |
ComboBoxes |
Returns collection with all comboboxes inside this worksheet. Read-only.
(Inherited from
XlsChartShape
.)
|
![]() |
DataRange |
DataRange for the chart series.
|
![]() ![]() |
DataTable |
Returns a DataTable object that represents the chart data table.
![]()
The following code illustrates how to set HasDataTable to "true" to enable data table
and set IChartDataTable.HasBorders to "false" to hide the borders of data table:
<para>//Create worksheet</para><para>Workbook workbook = new Workbook();</para><para>Worksheet worksheet = workbook.Worksheets[0];</para><para>//Add data</para><para>worksheet.Range["A1"].Text = "Jan"; worksheet.Range["B1"].Text = "Feb"; worksheet.Range["C1"].Text = "Mar"; worksheet.Range["A2"].Text = "10"; worksheet.Range["B2"].Text = "20"; worksheet.Range["C2"].Text = "30";</para><para>//Create chart and range</para><para>Chart chart = worksheet.Charts.Add();</para><para>chart.DataRange = worksheet.Range["A1:C2"];</para><para>//Set Chart data table</para><para>chart.HasDataTable = true;</para><para>IChartDataTable dataTable = chart.DataTable;</para><para>//Set border</para><para>dataTable.HasBorders = false;</para><para>//Save to file</para><para>workbook.SaveToFile("Chart.xlsx");</para> |
![]() |
DepthPercent |
Returns or sets the depth of a 3-D chart as a percentage of the chart width
(between 20 and 2000 percent).
(Inherited from
XlsChartShape
.)
|
![]() |
DisplayAxisFieldButtons |
Gets or sets a value indicating whether [show axis field buttons].
(Inherited from
XlsChartShape
.)
|
![]() |
DisplayBlanksAs |
Represents the way that blank cells are plotted on a chart.
(Inherited from
XlsChartShape
.)
|
![]() |
DisplayEntireFieldButtons |
Gets or sets a value indicating whether [show all field buttons].
(Inherited from
XlsChartShape
.)
|
![]() |
DisplayLegendFieldButtons |
Gets or sets a value indicating whether [show legend field buttons].
(Inherited from
XlsChartShape
.)
|
![]() |
DisplayValueFieldButtons |
Gets or sets a value indicating whether [show value field buttons].
(Inherited from
XlsChartShape
.)
|
![]() ![]() |
Elevation |
Returns or sets the elevation of the 3-D chart view, in degrees (?0 to +90 degrees).
(Inherited from
XlsChartShape
.)
![]()
The following code illustrates how to set Rotation for 3-D charts:
<para>//Create worksheet</para><para>Workbook workbook = new Workbook();</para><para>Worksheet worksheet = workbook.Worksheets[0];</para><para>//Add data</para><para>worksheet.Range["A1"].Text = "Jan"; worksheet.Range["B1"].Text = "Feb"; worksheet.Range["C1"].Text = "Mar"; worksheet.Range["A2"].Text = "10"; worksheet.Range["B2"].Text = "20"; worksheet.Range["C2"].Text = "30";</para><para>//Create chart and range</para><para>Chart chart = worksheet.Charts.Add();</para><para>chart.DataRange = worksheet.Range["A1:C2"];</para><para>//Set Chart elevation</para><para>chart.ChartType = ExcelChartType.Column3DClustered;</para><para>chart.Elevation = 50;</para><para>//Save to file</para><para>workbook.SaveToFile("Chart.xlsx");</para> |
![]() |
Fill |
Represents fill properties.
(Inherited from
XlsShape
.)
|
![]() ![]() |
Floor |
Returns a Floor object that represents the floor of the 3-D chart.
![]()
The following code illustrates how to access IChartWallOrFloor using Floor
property and set foreground color for the chart's Floor:
<para>//Create worksheet</para><para>Workbook workbook = new Workbook();</para><para>workbook.LoadFromFile("Sample.xlsx");</para><para>Worksheet worksheet = workbook.Worksheets[0];</para><para>//Get chart</para><para>Chart chart = worksheet.Charts[0];</para><para>//Set chart wall</para><para>IChartWallOrFloor floor = chart.Floor;</para><para>//Set color</para><para>floor.Fill.FillType = ShapeFillType.SolidColor;</para><para>floor.Fill.ForeColor = System.Drawing.Color.Red;</para><para>//Save to file</para><para>workbook.SaveToFile("Chart.xlsx");</para>
|
![]() |
GapDepth |
Returns or sets the distance between the data series in a 3-D chart, as a percentage of the marker width.( 0 - 500 )
(Inherited from
XlsChartShape
.)
|
![]() |
Glow |
Gets the glow properties.
(Inherited from
XlsShape
.)
|
![]() |
HasChartArea |
Indicates whether chart has chart area.
(Inherited from
XlsChartShape
.)
|
![]() |
HasChartTitle |
Indicates wheather the chart has title
(Inherited from
XlsChartShape
.)
|
![]() ![]() |
HasDataTable |
True if the chart has a data table.
(Inherited from
XlsChartShape
.)
![]()
The following code illustrates how data table can be set for charts:
<para>//Create worksheet</para><para>Workbook workbook = new Workbook();</para><para>Worksheet worksheet = workbook.Worksheets[0];</para><para>//Add data</para><para>worksheet.Range["A1"].Text = "Jan"; worksheet.Range["B1"].Text = "Feb"; worksheet.Range["C1"].Text = "Mar"; worksheet.Range["A2"].Text = "10"; worksheet.Range["B2"].Text = "20"; worksheet.Range["C2"].Text = "30";</para><para>//Create chart and range</para><para>Chart chart = worksheet.Charts.Add();</para><para>chart.DataRange = worksheet.Range["A1:C2"];</para><para>//Set Chart data table</para><para>chart.HasDataTable = true;</para><para>//Save to file</para><para>workbook.SaveToFile("Chart.xlsx");</para> |
![]() |
HasFill |
Indicates whether XlsFill item was created. Read-only.
(Inherited from
XlsShape
.)
|
![]() |
HasFloor |
Gets value indicating whether floor object was created.
(Inherited from
XlsChartShape
.)
|
![]() ![]() |
HasLegend |
True if the chart has a legend object.
(Inherited from
XlsChartShape
.)
![]()
The following code illustrates how to set HasLegend property:
<para>//Create worksheet</para><para>Workbook workbook = new Workbook();</para><para>Worksheet worksheet = workbook.Worksheets[0];</para><para>//Add data</para><para>worksheet.Range["A1"].Text = "Jan"; worksheet.Range["B1"].Text = "Feb"; worksheet.Range["C1"].Text = "Mar"; worksheet.Range["A2"].Text = "10"; worksheet.Range["B2"].Text = "20"; worksheet.Range["C2"].Text = "30";</para><para>//Create chart and range</para><para>Chart chart = worksheet.Charts.Add();</para><para>chart.DataRange = worksheet.Range["A1:C2"];</para><para>//Set hasLegend</para><para>chart.HasLegend = false;</para><para>//Save to file</para><para>workbook.SaveToFile("Chart.xlsx");</para> |
![]() |
HasLineFormat |
Indicates whether line item was created. Read-only.
(Inherited from
XlsShape
.)
|
![]() |
HasPivotTable |
Indicates whether contains pivot table.
(Inherited from
XlsChartShape
.)
|
![]() |
HasPlotArea |
Indicates whether chart has plot area.
(Inherited from
XlsChartShape
.)
|
![]() |
HasWalls |
Gets value indicating whether floor object was created.
(Inherited from
XlsChartShape
.)
|
![]() |
Height |
Height of object.
(Inherited from
XlsShape
.)
|
![]() |
HeightPercent |
Returns or sets the height of a 3-D chart as a percentage of the chart width
(between 5 and 500 percent).
(Inherited from
XlsChartShape
.)
|
![]() |
HtmlString |
Gets and sets the html string which contains data and some formattings in this shape.
(Inherited from
XlsShape
.)
|
![]() |
ID |
ID of object.
(Inherited from
XlsShape
.)
|
![]() |
Instance |
Obsolete.
Returns instance value. Read-only.
(Inherited from
XlsShape
.)
|
![]() |
IsFlipH |
Returns or sets if the shape flips Horizontal.false is default;
(Inherited from
XlsShape
.)
|
![]() |
IsFlipV |
Returns or sets if the shape flips Vertical.false is default;
(Inherited from
XlsShape
.)
|
![]() |
IsGroup |
This shape is group shape.
(Inherited from
XlsShape
.)
|
![]() |
IsInGroup |
This shape is child shape of group shape.
(Inherited from
XlsShape
.)
|
![]() |
IsLockAspectRatio |
True means that don't allow changes in aspect ratio.
(Inherited from
XlsShape
.)
|
![]() |
IsLocked |
Gets or sets a value indicating whether the shape is locked.
(Inherited from
XlsShape
.)
|
![]() |
IsMoveWithCell |
Determines whether the object moves with the cell it is associated with.
(Inherited from
XlsShape
.)
|
![]() |
IsPrintable |
Gets or sets a value indicating whether the shape is printable.
(Inherited from
XlsShape
.)
|
![]() |
IsRelative |
Gets or sets a value indicating whether the shape is relative.
(Inherited from
XlsShape
.)
|
![]() |
IsRelativeResize |
True means that is relative to original size of picture.
(Inherited from
XlsShape
.)
|
![]() |
IsRightToLeft |
Indicates whether chart is displayed right to left.
(Inherited from
XlsChartShape
.)
|
![]() |
IsShortVersion |
Obsolete.
Indiicates whether it is short version of the shape
(without obj and maybe some other properties).
(Inherited from
XlsShape
.)
|
![]() |
IsSizeWithCell |
Determines whether the size is calculated based on the cell dimensions.
(Inherited from
XlsShape
.)
|
![]() |
IsSmartArt |
Determines whether the shape is a SmartArt graphic based on the presence of a linked drawing.
(Inherited from
XlsShape
.)
|
![]() |
Left |
X of object
(Inherited from
XlsShape
.)
|
![]() |
LeftColumn |
Left column of the chart in the worksheet.
(Inherited from
XlsChartShape
.)
|
![]() |
LeftColumnOffset |
Left column offset. 1024 means whole column offset
(Inherited from
XlsShape
.)
|
![]() ![]() |
Legend |
Represents chart legend.
![]()
The following code illustrates how to access IChartLegend using IChart.Legend
property and set IChartLegend.Position to LegendPositionType.Left:
<para>//Create worksheet</para><para>Workbook workbook = new Workbook();</para><para>Worksheet worksheet = workbook.Worksheets[0];</para><para>//Add data</para><para>worksheet.Range["A1"].Text = "Jan"; worksheet.Range["B1"].Text = "Feb"; worksheet.Range["C1"].Text = "Mar"; worksheet.Range["A2"].Text = "10"; worksheet.Range["B2"].Text = "20"; worksheet.Range["C2"].Text = "30";</para><para>//Create chart and range</para><para>Chart chart = worksheet.Charts.Add();</para><para>chart.DataRange = worksheet.Range["A1:C2"];</para><para>//Set chart legend and legend position</para><para>IChartLegend legend = chart.Legend;</para><para>legend.Position = LegendPositionType.Left;</para><para>//Save to file</para><para>workbook.SaveToFile("Chart.xlsx");</para> |
![]() |
Line |
Represents line format properties. Read only.
(Inherited from
XlsShape
.)
|
![]() |
LinkedCell |
Gets or sets the linked cell for the shape.
(Inherited from
XlsShape
.)
|
![]() |
Name |
Name of object.
(Inherited from
XlsShape
.)
|
![]() |
OnAction |
Gets or sets macro-command that is called when action happens.
(Inherited from
XlsShape
.)
|
![]() |
PageSetup |
Page setup for the chart.
|
![]() |
Parent |
Reference to Parent object. Read-only.
(Inherited from
XlsObject
.)
|
![]() ![]() |
Perspective |
Returns or sets the perspective for the 3-D chart view (0 to 100).
(Inherited from
XlsChartShape
.)
![]()
The following code illustrates how to set Perspective for the charts:
<para>//Create worksheet</para><para>Workbook workbook = new Workbook();</para><para>Worksheet worksheet = workbook.Worksheets[0];</para><para>//Add data</para><para>worksheet.Range["A1"].Text = "Jan"; worksheet.Range["B1"].Text = "Feb"; worksheet.Range["C1"].Text = "Mar"; worksheet.Range["A2"].Text = "10"; worksheet.Range["B2"].Text = "20"; worksheet.Range["C2"].Text = "30";</para><para>//Create chart and range</para><para>Chart chart = worksheet.Charts.Add();</para><para>chart.DataRange = worksheet.Range["A1:C2"];</para><para>//Set Chart perspective</para><para>chart.ChartType = ExcelChartType.Column3DClustered;</para><para>chart.Perspective = 70;</para><para>//Save to file</para><para>workbook.SaveToFile("Chart.xlsx");</para> |
![]() |
PivotChartType |
Gets or sets the type of the pivot chart.
(Inherited from
XlsChartShape
.)
|
![]() |
PivotTable |
Gets or sets the pivot source.
(Inherited from
XlsChartShape
.)
|
![]() ![]() |
PlotArea |
Returns a PlotArea object that represents the plot area of a chart.
![]()
The following code illustrates how to access IChartFrameFormat using PlotArea
property and set foreground color for the chart's PlotArea:
<para>//Create worksheet</para><para>Workbook workbook = new Workbook();</para><para>Worksheet worksheet = workbook.Worksheets[0];</para><para>//Add data</para><para>worksheet.Range["A1"].Text = "Jan"; worksheet.Range["B1"].Text = "Feb"; worksheet.Range["C1"].Text = "Mar"; worksheet.Range["A2"].Text = "10"; worksheet.Range["B2"].Text = "20"; worksheet.Range["C2"].Text = "30";</para><para>//Create chart and range</para><para>Chart chart = worksheet.Charts.Add();</para><para>chart.DataRange = worksheet.Range["A1:C2"];</para><para>//Set chart frame format</para><para>IChartFrameFormat frameFormat = chart.PlotArea;</para><para>//Set color</para><para>frameFormat.Fill.ForeColor = System.Drawing.Color.Red;</para><para>//Save to file</para><para>workbook.SaveToFile("Chart.xlsx");</para> |
![]() |
PlotVisibleOnly |
True if only visible cells are plotted. False if both visible and hidden cells are plotted.
(Inherited from
XlsChartShape
.)
|
![]() |
PrimaryCategoryAxis |
Returns primary category axis.
|
![]() |
PrimaryFormats |
Returns chart format collection in primary axis.
(Inherited from
XlsChartShape
.)
|
![]() |
PrimarySerieAxis |
Returns primary series axis. Read-only.
|
![]() |
PrimaryValueAxis |
Returns primary value axis.
|
![]() |
ReferenceCount |
Get quantity of instance references.
(Inherited from
XlsObject
.)
|
![]() |
Reflection |
Gets the reflection effect applied to the shape.
(Inherited from
XlsShape
.)
|
![]() |
ResizeBehave |
Specifies all possible settings for how drawing object shall be resized when the rows and columns between its start and ending anchor are resized or inserted(ComboBoxShape and CheckBoxShape and RadioButtonShape set MoveAndResize type value is invalid)
(Inherited from
XlsShape
.)
|
![]() |
RichText |
Gets the rich text string associated with the current object. If the rich text string has not been initialized, it creates a new instance of RichTextShape.
(Inherited from
XlsShape
.)
|
![]() |
RightAngleAxes |
True if the chart axes are at right angles, independent of chart rotation or elevation.
(Inherited from
XlsChartShape
.)
|
![]() |
RightColumn |
Right column of the chart in the worksheet.
(Inherited from
XlsChartShape
.)
|
![]() |
RightColumnOffset |
Right column offset.
(Inherited from
XlsShape
.)
|
![]() ![]() |
Rotation |
Returns or sets the rotation of the 3-D chart view
(the rotation of the plot area around the z-axis, in degrees).(0 to 360 degrees).
(Inherited from
XlsChartShape
.)
![]()
The following code illustrates how to set Rotation for 3-D charts:
<para>//Create worksheet</para><para>Workbook workbook = new Workbook();</para><para>Worksheet worksheet = workbook.Worksheets[0];</para><para>//Add data</para><para>worksheet.Range["A1"].Text = "Jan"; worksheet.Range["B1"].Text = "Feb"; worksheet.Range["C1"].Text = "Mar"; worksheet.Range["A2"].Text = "10"; worksheet.Range["B2"].Text = "20"; worksheet.Range["C2"].Text = "30";</para><para>//Create chart and range</para><para>Chart chart = worksheet.Charts.Add();</para><para>chart.DataRange = worksheet.Range["A1:C2"];</para><para>//Set Chart rotation</para><para>chart.ChartType = ExcelChartType.Column3DClustered;</para><para>chart.Rotation = 50;</para><para>//Save to file</para><para>workbook.SaveToFile("Chart.xlsx");</para> |
![]() |
SecondaryCategoryAxis |
Returns secondary category axis.
|
![]() |
SecondaryCategoryAxisTitle |
Title of the secondary category axis.
(Inherited from
XlsChartShape
.)
|
![]() |
SecondaryFormats |
Returns chart format collection in secondary axis.
(Inherited from
XlsChartShape
.)
|
![]() |
SecondaryValueAxis |
Returns secondary value axis. Read-only.
|
![]() |
SecondaryValueAxisTitle |
Title of the secondary value axis.
(Inherited from
XlsChartShape
.)
|
![]() |
Series |
Returns an object that represents either a single series (a Series object) or a collection of all the series (a SeriesCollection collection) in the chart or chart group.
|
![]() |
SeriesAxisTitle |
Title of the series axis.
(Inherited from
XlsChartShape
.)
|
![]() |
SeriesDataFromRange |
True if series are in rows in DataRange;
False otherwise.
(Inherited from
XlsChartShape
.)
|
![]() |
Shadow |
Gets the shadow properties.
(Inherited from
XlsShape
.)
|
![]() |
ShapeCount |
Obsolete.
Returns number of shapes contained by this shape (1 means no sub shapes). Read-only.
(Inherited from
XlsShape
.)
|
![]() |
ShapeId |
Gets / sets shape id.
(Inherited from
XlsShape
.)
|
![]() |
Shapes |
Returns chart shapes.
(Inherited from
XlsChartShape
.)
|
![]() |
ShapeType |
Type of shape , Read Only.
(Inherited from
XlsShape
.)
|
![]() |
ShowReportFilterFieldButtons |
Gets or sets a value indicating whether [show report filter field buttons].
(Inherited from
XlsChartShape
.)
|
![]() |
SizeWithWindow |
True if Microsoft Excel resizes the chart to match the size of the chart sheet window.
False if the chart size isn't attached to the window size. Applies only to chart sheets.
(Inherited from
XlsChartShape
.)
|
![]() |
SupportWallsAndFloor |
Indicates whether this chart supports walls and floor. Read-only.
(Inherited from
XlsChartShape
.)
|
![]() |
TextBoxes |
Returns collection with all textboxes inside this worksheet. Read-only.
(Inherited from
XlsChartShape
.)
|
![]() |
TextFrame |
Gets the text frame associated with the shape.
(Inherited from
XlsShape
.)
|
![]() |
TextVerticalAlignment |
Get or set Text Vertical Alignment in shape.
(Inherited from
XlsShape
.)
|
![]() |
ThreeD |
Gets the chart3 D properties.
(Inherited from
XlsShape
.)
|
![]() |
Top |
Top of object.
(Inherited from
XlsShape
.)
|
![]() |
TopRow |
Top row of the chart in the worksheet.
(Inherited from
XlsChartShape
.)
|
![]() |
TopRowOffset |
Top row offset.256 means whole row offset
(Inherited from
XlsShape
.)
|
![]() |
UpdatePositions |
Indicates whether we have to update absolute positions after setting TopRow,
BottomRow, LeftColumn, RightColumn.
(Inherited from
XlsShape
.)
|
![]() |
ValueAxisTitle |
Title of the value axis.
(Inherited from
XlsChartShape
.)
|
![]() |
Visible |
Gets or sets the visibility of the shape. When set to true, the shape is visible; when set to false, the shape is hidden.
(Inherited from
XlsShape
.)
|
![]() |
VmlShape |
Indicates whether this is vml shape or not.
(Inherited from
XlsShape
.)
|
![]() ![]() |
Walls |
Represents chart walls.
![]()
The following code illustrates how to access IChartWallOrFloor using Walls
property and set foreground color for the chart's Walls:
<para>//Create worksheet</para><para>Workbook workbook = new Workbook();</para><para>workbook.LoadFromFile("Sample.xlsx");</para><para>Worksheet worksheet = workbook.Worksheets[0];</para><para>//Get chart</para><para>Chart chart = worksheet.Charts[0];</para><para>//Set chart wall</para><para>IChartWallOrFloor wall = chart.Walls;</para><para>//Set color</para><para>wall.Fill.FillType = ShapeFillType.SolidColor;</para><para>wall.Fill.ForeColor = System.Drawing.Color.Red;</para><para>//Save to file</para><para>workbook.SaveToFile("Chart.xlsx");</para>
|
![]() |
WallsAndGridlines2D |
True if gridlines are drawn two-dimensionally on a 3-D chart.
(Inherited from
XlsChartShape
.)
|
![]() |
Width |
Width of object.
(Inherited from
XlsShape
.)
|
![]() |
Workbook |
Workbook contains the chart.
|
![]() |
Worksheet |
Worksheet which contains the chart.
|
![]() |
XPos |
X coordinate of the upper-left corner
of the chart in points (1/72 inch).
(Inherited from
XlsChartShape
.)
|
![]() |
YPos |
Y coordinate of the upper-left corner
of the chart in points (1/72 inch).
(Inherited from
XlsChartShape
.)
|
Name | Description | |
---|---|---|
![]() |
AddReference |
Increase the quantity of reference. User must use this method when
new wrapper on object is created or reference on object stored.
(Inherited from
XlsObject
.)
|
![]() |
AddShapeInChart |
Adds a shape to the chart in Excel with the specified type, placement behavior, and dimensions.
(Inherited from
XlsChartShape
.)
|
![]() |
ChangeLayer |
Changes the layer position of a shape within a group based on the specified change type.
(Inherited from
XlsShape
.)
|
![]() |
CheckDisposed |
Checks whether object was disposed and throws exception if it was.
(Inherited from
XlsObject
.)
|
![]() |
Clone(Object) |
Creates a clone of the current shape.
(Inherited from
XlsShape
.)
|
![]() |
Clone(Object, Dictionary String, String , Dictionary Int32, Int32 , Boolean) |
Creates a clone of the current shape.
(Inherited from
XlsChartShape
.)
|
![]() |
Dispose |
Dispose object and free resources.
(Inherited from
XlsObject
.)
|
![]() |
Equals |
Determines whether the specified object is equal to the current object.
(Inherited from
Object
.)
|
![]() |
Finalize |
Destructor. Call dispose method of current object.
(Inherited from
XlsObject
.)
|
![]() |
FindParent(Type) |
This method is used to find parent with specific type.
(Inherited from
XlsObject
.)
|
![]() |
FindParent( Type ) |
Find parent of object.
(Inherited from
XlsObject
.)
|
![]() |
FindParent(Type, Boolean) |
This method is used to find parent with specific type.
(Inherited from
XlsObject
.)
|
![]() |
FindParents |
Finds parent objects.
(Inherited from
XlsObject
.)
|
![]() |
GetCategoryLabels |
Gets category labels array.
(Inherited from
XlsChartShape
.)
|
![]() |
GetHashCode |
Serves as the default hash function.
(Inherited from
Object
.)
|
![]() |
GetType |
Gets the
Type
of the current instance.
(Inherited from
Object
.)
|
![]() |
HideCategoryLabels |
Hide the category labels in chart.
(Inherited from
XlsChartShape
.)
|
![]() |
MemberwiseClone |
Creates a shallow copy of the current
Object
.
(Inherited from
Object
.)
|
![]() |
OnDispose |
Method which can be overriden by users to take any specific actions when
object is disposed.
(Inherited from
XlsObject
.)
|
![]() |
RefreshChart |
Refreshes the chart by updating the pivot data.
(Inherited from
XlsChartShape
.)
|
![]() |
ReleaseReference |
Decrease quantity of Reference. User must call this method
when freeing resources.
(Inherited from
XlsObject
.)
|
![]() |
Remove |
Removes object.
(Inherited from
XlsShape
.)
|
![]() |
SaveToImage |
Save shape to image.
(Inherited from
XlsShape
.)
|
![]() |
SaveToImage(Stream) |
Save shape to image.
(Inherited from
XlsShape
.)
|
![]() |
SaveToImage(String) |
Save shape to image.
(Inherited from
XlsShape
.)
|
![]() |
SaveToImage(Stream, ImageFormat) |
Save shape to image.
(Inherited from
XlsShape
.)
|
![]() |
SaveToImage(String, ImageFormat) |
Save shape to image.
(Inherited from
XlsShape
.)
|
![]() |
Scale |
Scales the shape.
(Inherited from
XlsShape
.)
|
![]() |
SetName |
Sets object name
(Inherited from
XlsShape
.)
|
![]() |
SetParent |
Sets parent of the object.
(Inherited from
XlsObject
.)
|
![]() |
SetParents |
Sets the parent shapes collection for the current object by searching for a parent of type XlsShapesCollection.
Throws an ArgumentNullException if the parent collection is not found.
(Inherited from
XlsShape
.)
|
![]() |
SetTextEffect |
Sets the text effect and updates the text for a shape.
(Inherited from
XlsShape
.)
|
![]() |
ToString |
Returns a string that represents the current object.
(Inherited from
Object
.)
|
Name | Description | |
---|---|---|
![]() |
m_bIsDisposed |
Flag which indicates if the object was disposed or not.
(Inherited from
XlsObject
.)
|