|
public void ConfigureServices(IServiceCollection services)
{
//..
services.AddServerSideBlazor().AddHubOptions(o =>
{
o.MaximumReceiveMessageSize = 1024 * 1024; // 1MB
});
} |
The posted sample still displays only a spinner for me.
|
<SfGantt DataSource="@TaskCollection" Height="450px" Width="100%"
DateFormat="MM/dd/yyyy"
ProjectStartDate="03/25/2019" ProjectEndDate="07/28/2019">
……./////
</SfGantt> |