Welcome to the ASP.NET Core feedback portal. We’re happy you’re here! If you have feedback on how to improve the ASP.NET Core, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Whenever I wanted to fill a PivotView's datasource with data whose Value property could be null, the grid would not display them correctly, but instead would change every cell's value to '1's.
I found what caused my problem:
I just changed that row to:
vMat[len][tkln] = data[len][key];
After that it worked perfectly for me, since I cant really think of a situation where I would want the cells of the grid to all become '1's, rather I want them to keep their value even if they are null.
I guess the feature I would want is to be able to specify somewhere to NOT change the cells values to '1's.