TimelineCollection.Add
Contents
[
Hide
]Add(PivotTable, int, int, string)
Add a new Timeline using PivotTable as data source
public int Add(PivotTable pivot, int row, int column, string baseFieldName)
Parameter | Type | Description |
---|---|---|
pivot | PivotTable | PivotTable object |
row | Int32 | Row index of the cell in the upper-left corner of the Timeline range. |
column | Int32 | Column index of the cell in the upper-left corner of the Timeline range. |
baseFieldName | String | The name of PivotField in PivotTable.BaseFields |
Return Value
The new add Timeline index
Examples
[C#]
//Add a new Timeline using PivotTable as data source
sheet.Timelines.Add(pivot, 10, 5, "date");
See Also
- class PivotTable
- class TimelineCollection
- namespace Aspose.Cells.Timelines
- assembly Aspose.Cells
Add(PivotTable, string, string)
Add a new Timeline using PivotTable as data source
public int Add(PivotTable pivot, string destCellName, string baseFieldName)
Parameter | Type | Description |
---|---|---|
pivot | PivotTable | PivotTable object |
destCellName | String | The cell name in the upper-left corner of the Timeline range. |
baseFieldName | String | The name of PivotField in PivotTable.BaseFields |
Return Value
The new add Timeline index
Examples
[C#]
//Add a new Timeline using PivotTable as data source
sheet.Timelines.Add(pivot, "i15", "date");
See Also
- class PivotTable
- class TimelineCollection
- namespace Aspose.Cells.Timelines
- assembly Aspose.Cells
Add(PivotTable, int, int, int)
Add a new Timeline using PivotTable as data source
public int Add(PivotTable pivot, int row, int column, int baseFieldIndex)
Parameter | Type | Description |
---|---|---|
pivot | PivotTable | PivotTable object |
row | Int32 | Row index of the cell in the upper-left corner of the Timeline range. |
column | Int32 | Column index of the cell in the upper-left corner of the Timeline range. |
baseFieldIndex | Int32 | The index of PivotField in PivotTable.BaseFields |
Return Value
The new add Timeline index
Examples
[C#]
//Add a new Timeline using PivotTable as data source
sheet.Timelines.Add(pivot, 15, 5, 1);
See Also
- class PivotTable
- class TimelineCollection
- namespace Aspose.Cells.Timelines
- assembly Aspose.Cells
Add(PivotTable, string, int)
Add a new Timeline using PivotTable as data source
public int Add(PivotTable pivot, string destCellName, int baseFieldIndex)
Parameter | Type | Description |
---|---|---|
pivot | PivotTable | PivotTable object |
destCellName | String | The cell name in the upper-left corner of the Timeline range. |
baseFieldIndex | Int32 | The index of PivotField in PivotTable.BaseFields |
Return Value
The new add Timeline index
Examples
[C#]
//Add a new Timeline using PivotTable as data source
sheet.Timelines.Add(pivot, "i5", 1);
See Also
- class PivotTable
- class TimelineCollection
- namespace Aspose.Cells.Timelines
- assembly Aspose.Cells
Add(PivotTable, int, int, PivotField)
Add a new Timeline using PivotTable as data source
public int Add(PivotTable pivot, int row, int column, PivotField baseField)
Parameter | Type | Description |
---|---|---|
pivot | PivotTable | PivotTable object |
row | Int32 | Row index of the cell in the upper-left corner of the Timeline range. |
column | Int32 | Column index of the cell in the upper-left corner of the Timeline range. |
baseField | PivotField | The PivotField in PivotTable.BaseFields |
Return Value
The new add Timeline index
Examples
[C#]
//Add a new Timeline using PivotTable as data source
sheet.Timelines.Add(pivot, 20, 5, pivot.BaseFields[1]);
See Also
- class PivotTable
- class PivotField
- class TimelineCollection
- namespace Aspose.Cells.Timelines
- assembly Aspose.Cells
Add(PivotTable, string, PivotField)
Add a new Timeline using PivotTable as data source
public int Add(PivotTable pivot, string destCellName, PivotField baseField)
Parameter | Type | Description |
---|---|---|
pivot | PivotTable | PivotTable object |
destCellName | String | The cell name in the upper-left corner of the Timeline range. |
baseField | PivotField | The PivotField in PivotTable.BaseFields |
Return Value
The new add Timeline index
Examples
[C#]
//Add a new Timeline using PivotTable as data source
sheet.Timelines.Add(pivot, "i10", pivot.BaseFields[1]);
See Also
- class PivotTable
- class PivotField
- class TimelineCollection
- namespace Aspose.Cells.Timelines
- assembly Aspose.Cells