How to fit Pie Chart inside DashboardLayoutPanel

Answer:

We can fit Pie Chart inside DashboardLayoutPanel to provide width and height as inherit to achieve the height and width of parent div. Here is the code snippet for your reference,

Code Snippet:

<style>  

.e-chart {  

        width: inherit !important;  

        height: inherit !important;  

    }  

   

  .e-accumulationchart {  

        width: inherit !important;  

        height: inherit !important;  

    }  

</style>  


Loader.
Up arrow icon