Adding Single columns (flat?)

Hi All, 


Im not certain how to explain this, so Ill do my best with some examples. 

Currently, we have managed to get most things setup and working as expected. However, There is some sort of configuration option that I can't manage to figure out yet. 


So in our previous/legacy Pivot component, we have a pivot table that looks like this for example: 

Grand Total
InvoiceNbr Invoice Date Company Total VAT incl. Paid Open Amount
1030553 08/08/2023 Jussi new invoice 7,99 0 7,99
1030554 08/08/2023 Best Inv 18494,52 0 18494,52
1030555 24/08/2023 Jussi new invoice 7,99 0 7,99


So as you can see, our rows have 3 columns of information, and 1 row of results. This is the desired outcome. 


However, when I try to mimic this in the syncfusion Blazor pivot table, the closest I can get to is this: 

Open Amount Paid TotalWithVATInCurrency
30001 8,74 0 8,74
6/7/2018 12:00:00 AM 8,74 0 8,74
CustomerMiami 8,74 0 8,74
30088 200 0 200
4/17/2018 12:00:00 AM 200 0 200
Crystal Campanula Ltd 200 0 200
30089 150 0 150
4/17/2018 12:00:00 AM 150 0 150
Bee 150 0 150


As you can see, this isnt very useful, as we need a single row of values, not 3 for the same thing. 


So the question is, how do I configure it to make the separate columns withing the row information?

Thanks very much for your time, its much appreciated :)


3 Replies

AP AngelinFaithSheeba PaulvannanRajadurai Syncfusion Team November 6, 2024 09:46 AM UTC

Hi Jussi,


We understand that your requirement is to display the pivot table in a "Classic layout" (also known as Excel's "Tabular" form), where each child row is displayed as a separate column. However, we regret to inform you that our Syncfusion Blazor Pivot Table currently does not support displaying data in Excel's "Tabular" form. At present, our Syncfusion Blazor Pivot Table can only display data in an Excel-like layout, which is essentially Excel's "Compact" form. Consequently, we currently do not have support for exporting our Syncfusion Pivot Table in Excel's "Tabular" form.

Furthermore, we have already logged your requirement as a feature request and this feature will be available in any of our upcoming release. However, once it is scheduled, we will notify you through the feedback link below.

Feedback: https://www.syncfusion.com/feedback/60080/classic-layout-support-for-blazor-pivotgrid


We appreciate your patience until then.


Regards,

Angelin Faith Sheeba.



JS Jussi Schultink November 6, 2024 10:29 AM UTC

thanks for the reply (even though chat GPT seems to think otherwise). 

Is there a way to make the output only one line? 

So that we dont get results in triplicate: 


Open Amount

Paid

TotalWithVATInCurrency
30001


6/7/2018 12:00:00 AM


CustomerMiami8,7408,74
30088


4/17/2018 12:00:00 AM


Crystal Campanula Ltd2000200
30089


4/17/2018 12:00:00 AM


Bee1500150


Or perhaps configure that the 3 fields become one? 


Open Amount
Paid
TotalWithVATInCurrency
30001 -  6/7/2018 12:00:00 AM -  CustomerMiami 8,7408,74
30088 -  4/17/2018 12:00:00 AM -  Crystal Campanula Ltd 2000200
30089 -  4/17/2018 12:00:00 AM - Bee1500150


SK Sridhar Karunakaran Syncfusion Team November 7, 2024 02:29 PM UTC

Hi Jussi,

We understand that you need to combine the parent and child rows and display them as a single row in a pivot table. If this is the case, we would like to inform you that, currently, we do not have a built-in option for this requirement. However, you can accomplish it through customization. To do so, you need to remove the parent rows from the pivot table using JavaScript Interop and customize the header names of the last level child rows using the CellTemplate property. Please refer to the code example below.

Code example:

[Index.razor]

<SfPivotView TValue="ProductDetails" ID="@ID">

    <PivotViewDataSourceSettings>

        <PivotViewValueSortSettings HeaderDelimiter="-"></PivotViewValueSortSettings>

    </PivotViewDataSourceSettings>

    <PivotViewEvents TValue="ProductDetails" DataBound="onDataBound"></PivotViewEvents>

    <PivotViewTemplates>

        <CellTemplate>

            @{

                var data = (context as AxisSet);

                if (data != null)

                {

                    if (data.Axis == "row" && !data.HasChild)

                    {

                        data.FormattedText = data.ValueSort["levelName"].ToString(); // Here we customize the child row headers

                        @data.FormattedText

                    }

                    else if (data.Axis == "row" && data.HasChild)

                    {

                        parentIndexs.Add(data.RowIndex); // Here we store the index of the parent row so we can remove it later.

                        @data.FormattedText

 

                    }

                    else

                    {

                        @data.FormattedText

                    }

 

                }

            }

        </CellTemplate>

    </PivotViewTemplates>

</SfPivotView>

@code {

    public List<int> parentIndexs = new List<int>();

    private string ID = "Pivot";

    public async void onDataBound()

    {

        await JSRuntime.InvokeVoidAsync("removeRows", parentIndexs, ID); // Here we invoke the Javascript function

    }

}


[Host.cshtml]

<body>

    // Here we refered the clipboard script file

    <script src="scripts/removeRows.js"></script>

</body>

</html>


[removeRows.js]

async function removeRows(parentIndexs, ID) {

    //To get the pivot table element by using it's ID

    var indicesToRemove = parentIndexs;

    var Element = document.getElementById(ID);

    const thead = document.querySelector('thead[role="rowgroup"]');

    const columnCount = thead ? thead.querySelectorAll('tr[role="row"]').length : 0; // Obtain the count of rows that correspond to the column headers.

    const pivotTable = document.querySelector('#Pivot_grid_content_table tbody');

    let visibleRowCount = 0;

 

    indicesToRemove.forEach(index => {

        const row = pivotTable.querySelector(`tr[data-rowindex="${index - columnCount}"]`);

        if (row) {

            // We are hiding the parent rows from the pivot table here.

            row.style.display = 'none';

        }

    });

 

    // Count the visible rows

    Array.from(pivotTable.rows).forEach(row => {

        if (row.style.display !== 'none') {

            visibleRowCount++;

        }

    });

 

    // Adjust the height based on visible rows

    const rowHeight = 30; // Height of each row in pixels

    const newHeight = visibleRowCount * rowHeight;

 

    const contentDiv = document.querySelector('.e-gridcontent .e-yscroll');

    if (contentDiv) {

        contentDiv.style.height = newHeight + 'px';

    }

}

 


Output screenshot:


(Note: The customization mentioned above does not update the pivot values (cell information) and only modify the UI elements of the pivot table. As a result, dynamic UI operations on the pivot table, such as sorting, filtering, adding, or removing fields, may lead to incorrect results in certain scenarios)


Meanwhile, we have prepared a sample for your reference. Please find it from the below attachment


Furthermore, you can refer to the user guide documentation for more information about the cell template property.

Document: https://blazor.syncfusion.com/documentation/pivot-table/row-and-column#cell-template


Please let us know if you have any concerns.


Regards,

Sridhar Karunakaran.



Attachment: Sample_a4e1fd4d.zip

Loader.
Up arrow icon