I'm trying to render some charts in tabs. But the datamanger request XHR was not sent to backend until I hard fresh the page.
<div class="row">
<div class="container">
<EjsTab CssClass="e-background">
<TabItems>
<TabItem>
<ChildContent>
<TabHeader Text="Energy"></TabHeader>
</ChildContent>
<ContentTemplate>
<EjsChart Title="Total Delivered Energy Calendar Year" UseGroupingSeparator="true" Palettes="@palettes1" EnableAnimation="false">
<EjsDataManager Url="http://localhost:3000/portfolioSummaryChart1Energy" Adaptor="Adaptors.WebApiAdaptor"></EjsDataManager>
</div>
And I notice that if I wrap the EjsTab with a DashboardLayoutPanel it will load the data correctly.
Another thing is after the refresh, the chart is not taking up 100% of its parents width, have to manually resize it.
Any configuration I can set to get the feature I wanted?