Hi Fabrizio Carboni,
Greetings from Syncfusion support.
Based on the shared details, we understand that you are facing an issue where the Chart components are not rendered properly on the initial render in the Dashboard Layout component at your end. Based on the shared code snippets, we have prepared a sample and were able to replicate the reported issue on our end.
However, to overcome this issue, you can
refresh the Chart components in the
Created event of the Dashboard Layout component.
Refer to the below code snippets.
[Index.cshtml]
...
<script type="text/javascript"> function onCreated(args) { ... var chart1 = document.getElementById("ctn_CodNeg").ej2_instances[0]; var chart2 = document.getElementById("ctn_QtaZero").ej2_instances[0]; var chart3 = document.getElementById("ctn_MovMag").ej2_instances[0]; setTimeout(() => { chart1.refresh(); chart2.refresh(); chart3.refresh(); }, 100) } ... |
For your reference, we have attached the sample and screenshot.
Sample: Attached as a zip file.
Screenshot:
Check out the attached sample and let us know if you need any further assistance.
Regards,
Prasanth Madhaiyan.
Attachment:
CoreDashboardLayoutSample_641c86c9.zip