SVG PIE

by Roman

HTML

<svg height="120" width="120" viewBox="0 0 120 120" xmlns="http://www.w3.org/2000/svg">
  <circle r="60" cx="60" cy="60" fill="green" />
  <circle r="60" cx="60" cy="60" fill="red" />
</svg>

<svg height="120" width="120" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
  <circle r="10" cx="10" cy="10" fill="red" />
</svg>


<svg height="120" width="120" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
  <circle r="10" cx="10" cy="10" fill="#dfdfdf" />
</svg>

<svg height="120" width="120" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
  <circle r="10" cx="10" cy="10" fill="green" />
  <circle r="5" cx="10" cy="10" fill="transparent"
          stroke="red"
          stroke-width="10"
          stroke-dasharray="calc(10 * 31.4 / 100) 31.4"
          transform="rotate(-90) translate(-20)" />
</svg>

<svg height="120" width="120" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
  <circle r="10" cx="10" cy="10" fill="green" />
  <circle r="5" cx="10" cy="10" fill="transparent"
          stroke="red"
          stroke-width="10"
          stroke-dasharray="calc(30 * 31.4 / 100) 31.4"
          transform="rotate(-90) translate(-20)" />
</svg>