0

I'm using easypie plugin. But, the number isn't showing inside the pie and I don't know why. I already try many things. How to put number inside the pie? I'm using this css:

JSFiddle

.easychart {
 position: relative;
 text-align: center;
 margin:10px;
}
Guillermo GutiƩrrez
  • 17,273
  • 17
  • 89
  • 116
Igor Martins
  • 2,015
  • 7
  • 36
  • 57

2 Answers2

0

Your CSS is fine:

.easychart {
    position: relative;
    text-align: center;
    margin:10px;
}

You actually forgot to bring in the required CSS file. Check the update: JSFiddle.

Please see the documentation.

SeanWM
  • 16,789
  • 7
  • 51
  • 83
0

Your code works fine you just need to add css resources as you're already having bootstrap you need to set jquery.easy-pie-chart.js

.easychart {
 position: relative;
 text-align: center;
 margin:10px;
}

Fiddle

Dhaval Marthak
  • 17,246
  • 6
  • 46
  • 68