简体   繁体   中英

Align p- chart centrally inside p-panel

I am trying to centrally align p-chart inside a p-panel. However I'm unable to figure out the right css to do so. Please help.

This is my template code:

   <p-panel header="Charts">
       <p-chart type="bar" height="150px" width="50vw" [data]="barChartData" style="display:block;margin-right:auto;margin-left:auto;">
      </p-chart>
   </p-panel>

I found the solution.Posting the answer.Adding the below css aligns the chart centrally-

.center {
    margin: auto;
    width: 60%;
    padding: 10px;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM