Hello
I have a published app (Azure). The app is running 19.1.0.66.
I am trying to upgrade to 19.2 (latest version) and I am hitting a very strange bug. This only seems to occur when I publish this app to Azure. It does not occur on the dev machine. Currently I am therefore unable to provide you with a sample. I am hoping that if I provide sufficient detail then you might be able to assist:
In 19.1.0.66 if I go to the Pivot table > Pivot Chart, then I see this (note the functioning hover tooltip)
In 19.2 I get the following. Note that the bars are formatted differently and the chart becomes unresponsive (no console errors at this stage). When I hover the mouse over a column then the console error below occurs:
I am hoping you might be able to offer some insight into what the problem might be.
Thanks
Hello
I have managed to create a sample that demonstrates the problem. You will need to publish to azure to see the problem. To reproduce:
public async void PivotViewEnginePopulating(EnginePopulatingEventArgs args)
{
await FieldList.UpdateAsync(PivotView);
}
public async void FieldListEnginePopulated(EnginePopulatedEventArgs args)
{
await FieldList.UpdateViewAsync(PivotView);
} |
Hey Manikandan
Great, that works...thanks
Hello
Unfortunately this is still an intermittent problem for me. If I include your fix (as in your sample above) and then publish this to Azure then if I run the test say 10 times then at least one in 10 times I get the black thin columns and the subsequent error on hover.
Make sure you start a new circuit/connection (F5) before starting each of the 10 tests.
Can you please have another look for me?
Many thanks
public async void PivotViewEnginePopulated(EnginePopulatedEventArgs args)
{
await FieldList.UpdateAsync(PivotView);
ShowSpinner = false;
StateHasChanged();
}
public async void FieldListEnginePopulated(EnginePopulatedEventArgs args)
{
await FieldList.UpdateViewAsync(PivotView);
ShowSpinner = false;
StateHasChanged();
} |