Pivot Chart Issue

Hello

Could you tell me where I am going wrong with the attached example.  To recreate the problem:

1. Goto Pivot Table Expando
2. Select the chart drop-down 

...the chart does not display and the page tried to reconnect.

Thank you



Attachment: SyncfusionTroubleshoot_36c52553.zip

2 Replies 1 reply marked as answer

SS Saranya Sivan Syncfusion Team March 10, 2021 06:54 PM UTC

Hi Richard,  
   
We are checking on the reported issue at our end. We will update the further details within two business days.  
   
Regards,  
Saranya S.  
 



SS Saranya Sivan Syncfusion Team March 11, 2021 08:34 AM UTC

Hi Richard, 
  
Kindly increase the buffer size by adding the following code in the Startup.cs file to avoid the reported issue. Please find its UG and sample in the following links, 
  
   
  
Code Example: 
using Syncfusion.Blazor; 
  
namespace BlazorApplication 
{ 
    public class Startup 
    { 
        .... 
        .... 
        public void ConfigureServices(IServiceCollection services) 
        { 
            .... 
            services.AddSignalR(e => { 
                  e.MaximumReceiveMessageSize = 102400000; 
            });  
            services.AddSyncfusionBlazor(); 
        } 
    } 
}   
  
  
Please let us know if you have concerns. 
  
Regards,   
Saranya S. 



Marked as answer
Loader.
Up arrow icon