BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
Hi,
I'm able to switch from table view to chart view without issue. When I switch back, the table structure appears, but no data is displayed. This is using version 23.2.4.
Is there a way to refresh the SfPivotView to get it to display the data when I switch views back?
Thanks!
Hi Dallas,
We believe you are experiencing an issue where an empty pivot table is displayed when switching from chart view to table dynamically. If this is the case, we have checked the reported issue with the specified version(23.2.4) but were unable to replicate it on our end. In the meantime, we have attached a sample that we tested for your reference.
Output GIF:
However, if the problem persists, please replicate it using the provided sample or share the code example that reproduces the issue. This will allow us to investigate the reported problem on our end and provide a solution as soon as possible.
Additionally, to experience the latest features of the pivot table, we recommend upgrading your NuGet package to the latest version (28.1.41). For more information on how to update the Syncfusion Blazor PivotTable and Themes NuGet in your application, please refer to the user guide linked below.
Regards,
Sridhar Karunakaran
Well, that's brilliant, thanks!
I wasn't aware of the built-in toolbar to make the switch - very nice! I was changing the view property manually, which wasn't working.
Hi Dallas,
We are glad to hear that you are satisfied with the update provided earlier. Furthermore, we believe you encountered this issue when switching from chart view to table view dynamically through external UI elements (for example, a button) with pivot table version 23.2.4.
We would like to inform you that this is a known issue in older versions, as we can only render one view in the pivot table at a time when using external UI to switch the display option. This issue has been resolved in later versions.
Therefore, if you wish to change the view using external UI elements, we recommend upgrading your NuGet package to the latest version (28.1.41). In the following code example, we switch the display option using external buttons. You can adapt this code according to your specific needs.
Code example:
<SfButton OnClick="OnChartView" Content="ChartView"></SfButton> <SfButton OnClick="OnTableView" Content="TableView"></SfButton> <SfPivotView TValue="ProductDetails" @ref="pivot"> <PivotViewDisplayOption View=@ChartView></PivotViewDisplayOption> </SfPivotView> @code { SfPivotView<ProductDetails> pivot; private View ChartView = View.Chart; private void OnChartView(Microsoft.AspNetCore.Components.Web.MouseEventArgs args) { ChartView = View.Chart; } private void OnTableView(Microsoft.AspNetCore.Components.Web.MouseEventArgs args) { ChartView = View.Table; } } |
Output GIF:
In the meantime, we have attached a sample of the latest version (28.1.41) for your reference.
For more information on how to update the Syncfusion Blazor PivotTable and Themes NuGet in your application, please refer to the user guide linked below.
Please let us know if you have any concerns.
Regards,
Sridhar Karunakaran