[]
Creates a chart at the specified location on the active sheet.
IShape AddChart(ChartType chartType, double left, double top, double width, double height)
| Type | Name | Description |
|---|---|---|
| ChartType | chartType | The chart type. |
| double | left | The distance, in points, from the left edge of the object to the left edge of column A (on a worksheet) or the left edge of the chart area (on a chart). |
| double | top | The distance, in points, from the top edge of the top most shape in the shape range to the top edge of the worksheet. |
| double | width | The width, in points, of the object. |
| double | height | The height, in points, of the object. |
| Type | Description |
|---|---|
| IShape | The IShapeThe object. |
Creates a chart at the specified range on the current sheet.
The sheet of targetRange and the sheet of the shape being added must be the same sheet.
IShape AddChart(ChartType chartType, IRange targetRange)
| Type | Name | Description |
|---|---|---|
| ChartType | chartType | The chart type. |
| IRange | targetRange | The target range of the current sheet. |
| Type | Description |
|---|---|
| IShape | The IShapeThe object. |
Creates a chart at the specified location on the active sheet.
IShape AddChart(string name, ChartType chartType, double left, double top, double width, double height)
| Type | Name | Description |
|---|---|---|
| string | name | The chart name. |
| ChartType | chartType | The chart type. |
| double | left | The distance, in points, from the left edge of the object to the left edge of column A (on a worksheet) or the left edge of the chart area (on a chart). |
| double | top | The distance, in points, from the top edge of the top most shape in the shape range to the top edge of the worksheet. |
| double | width | The width, in points, of the object. |
| double | height | The height, in points, of the object. |
| Type | Description |
|---|---|
| IShape | The IShapeThe object. |
Creates a chart at the specified range on the current sheet.
The sheet of targetRange and the sheet of the shape being added must be the same sheet.
IShape AddChart(string name, ChartType chartType, IRange targetRange)
| Type | Name | Description |
|---|---|---|
| string | name | The chart name. |
| ChartType | chartType | The chart type. |
| IRange | targetRange | The target range of the current sheet. |
| Type | Description |
|---|---|
| IShape | The IShapeThe object. |