Specificare la posizione assoluta dell'elemento pivot
Contents
[
Hide
]
A volte, l’utente deve specificare la posizione assoluta degli elementi pivot, Aspose.Cells API ha esposto alcune nuove proprietà e un metodo per soddisfare i requisiti dell’utente.
- AggiuntoPivotItem.Position proprietà che può essere utilizzata per specificare l’indice di posizione in tutti i PivotItem indipendentemente dal nodo padre. AggiuntoPivotItem.PositionInSameParentNode proprietà che può essere utilizzata per specificare l’indice di posizione nei PivotItems sotto lo stesso nodo padre.
- AggiuntoPivotItem.Move(int count, bool isSameParent)metodo per spostare l’elemento in alto o in basso in base al valore di conteggio, dove conteggio è il numero di posizioni per spostare l’oggetto PivotItem in alto o in basso. Se il valore del conteggio è minore di zero, l’elemento verrà spostato verso l’alto dove, come se il valore del conteggio fosse maggiore di zero, il PivotItem si sposterà verso il basso, il parametro di tipo booleano isSameParent specifica se l’operazione di spostamento deve essere eseguita nello stesso nodo padre o no.
- Obsoleto ilPivotItem.Move(int count) metodo pertanto si suggerisce di utilizzare il metodo appena aggiuntoPivotItem.Move(int count, bool isSameParent) invece.
Il seguente codice di esempio crea una tabella pivot e quindi specifica le posizioni degli elementi pivot nello stesso nodo padre. Puoi scaricare ilfonte Excel euscita Excel file per il vostro riferimento. Se apri il file Excel di output, vedrai che l’elemento pivot “4H12” è in posizione 0 nel genitore “K11” e “DIF400” è in posizione 3. Allo stesso modo, CA32 è in posizione 1 e AAA3 è in posizione 2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
Workbook wb = new Workbook(dataDir + "source.xlsx"); | |
Worksheet wsPivot = wb.Worksheets.Add("pvtNew Hardware"); | |
Worksheet wsData = wb.Worksheets["New Hardware - Yearly"]; | |
// Get the pivottables collection for the pivot sheet | |
PivotTableCollection pivotTables = wsPivot.PivotTables; | |
// Add PivotTable to the worksheet | |
int index = pivotTables.Add("='New Hardware - Yearly'!A1:D621", "A3", "HWCounts_PivotTable"); | |
// Get the PivotTable object | |
PivotTable pvtTable = pivotTables[index]; | |
// Add vendor row field | |
pvtTable.AddFieldToArea(PivotFieldType.Row, "Vendor"); | |
// Add item row field | |
pvtTable.AddFieldToArea(PivotFieldType.Row, "Item"); | |
// Add data field | |
pvtTable.AddFieldToArea(PivotFieldType.Data, "2014"); | |
// Turn off the subtotals for the vendor row field | |
PivotField pivotField = pvtTable.RowFields["Vendor"]; | |
pivotField.SetSubtotals(PivotFieldSubtotalType.None, true); | |
// Turn off grand total | |
pvtTable.ColumnGrand = false; | |
/* | |
* Please call the PivotTable.RefreshData() and PivotTable.CalculateData() | |
* before using PivotItem.Position, | |
* PivotItem.PositionInSameParentNode and PivotItem.Move(int count, bool isSameParent). | |
*/ | |
pvtTable.RefreshData(); | |
pvtTable.CalculateData(); | |
pvtTable.RowFields["Item"].PivotItems["4H12"].PositionInSameParentNode = 0; | |
pvtTable.RowFields["Item"].PivotItems["DIF400"].PositionInSameParentNode = 3; | |
/* | |
* As a result of using PivotItem.PositionInSameParentNode, | |
* it will change the original sort sequence. | |
* So when you use PivotItem.PositionInSameParentNode in another parent node. | |
* You need call the method named "CalculateData" again. | |
*/ | |
pvtTable.CalculateData(); | |
pvtTable.RowFields["Item"].PivotItems["CA32"].PositionInSameParentNode = 1; | |
pvtTable.RowFields["Item"].PivotItems["AAA3"].PositionInSameParentNode = 2; | |
// Save file | |
wb.Save(dataDir + "output_out.xlsx"); |
Si noti che è necessario chiamare i metodi PivotTable.RefreshData e PivotTable.CalculateData prima di utilizzarePivotItem.Position, PivotItem.PositionInSameParentNode proprietà ePivotItem.Move(int count, bool isSameParent) metodo.