templates/front/pages/_shared/percent-chart.html.twig line 1

Open in your IDE?
  1. <div class="single-chart">
  2.     <svg viewBox="0 0 36 36" class="circular-chart orange">
  3.         <path class="circle-bg"
  4.               d="M18 2.0845
  5.                                       a 15.9155 15.9155 0 0 1 0 31.831
  6.                                       a 15.9155 15.9155 0 0 1 0 -31.831"
  7.         />
  8.         <path class="circle"
  9.               stroke-dasharray="{{ percent - 2 }}, 100"
  10.               d="M18 2.0845
  11.                                       a 15.9155 15.9155 0 0 1 0 31.831
  12.                                       a 15.9155 15.9155 0 0 1 0 -31.831"
  13.         />
  14.         <text x="18" y="20.35" class="percentage">{{ percent }}%</text>
  15.     </svg>
  16. </div>