You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

d3pie.css 844B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .d3pie .chart-title {
  2. font-family: Arial, sans-serif;
  3. font-size: 24px;
  4. text-anchor: middle;
  5. }
  6. .d3pie-tooltip {
  7. pointer-events: none;
  8. position: absolute;
  9. padding: 5px;
  10. color: white;
  11. background-color: rgb(0 0 0 /50%);
  12. border-radius: 4px;
  13. opacity: 0;
  14. line-height: normal;
  15. }
  16. .d3pie .total-text {
  17. text-anchor: middle;
  18. dominant-baseline: central;
  19. }
  20. .d3pie .total-value {
  21. font-family: Arial, sans-serif;
  22. }
  23. .d3pie .inner-label {
  24. fill: #eeeeee;
  25. pointer-events: none;
  26. text-anchor: middle;
  27. }
  28. /* pie placeholder */
  29. .d3pie .slice-g:first-of-type .inner-label {
  30. fill: #cccccc;
  31. }
  32. .d3pie defs radialGradient:first-of-type stop {
  33. stop-opacity: 0.1;
  34. }
  35. /* gradient color */
  36. .d3pie .grad-stop-1 {
  37. stop-color: black;
  38. }
  39. .outer-label-g {
  40. opacity: 0;
  41. }
  42. .link {
  43. fill: none;
  44. }