Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

d3pie.css 703B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 .inner-label {
  17. fill: #eeeeee;
  18. pointer-events: none;
  19. text-anchor: middle;
  20. }
  21. /* pie placeholder */
  22. .d3pie .slice-g:first-of-type .inner-label {
  23. fill: #cccccc;
  24. }
  25. .d3pie defs radialGradient:first-of-type stop {
  26. stop-opacity: 0.1;
  27. }
  28. /* gradient color */
  29. .d3pie .grad-stop-1 {
  30. stop-color: black;
  31. }
  32. .outer-label-g {
  33. opacity: 0;
  34. }
  35. .link {
  36. fill: none;
  37. }