Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. <script>
  2. $(function () {
  3. $('#container').highcharts({
  4. chart: {
  5. plotBackgroundColor: null,
  6. plotBorderWidth: null,
  7. plotShadow: false,
  8. type:'pie'
  9. },
  10.  
  11. title: {
  12. text: 'Browsers'
  13. },
  14.  
  15. subtitle: {
  16. text:false,
  17. },
  18.  
  19. tooltip: {
  20. pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
  21. },
  22.  
  23. plotOptions: {
  24. pie: {
  25. allowPointSelect: true,
  26. cursor: 'pointer',
  27. dataLabels: {
  28. enabled: true,
  29. format: '<b>{point.name}</b>: {point.percentage:.1f} %',
  30. style: {
  31. color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black'
  32. }
  33. }
  34. }
  35. },
  36.  
  37. series: [{
  38. name: "Total",
  39. colorByPoint: true,
  40. data: [{
  41. name: "Firefox",
  42. y: 10,
  43. }, {
  44. name: "Chrome",
  45. y: 12,
  46. }, {
  47. name: "Explorer",
  48. y: 65,
  49. }, {
  50. name: "Opera",
  51. y: 13,
  52. }]
  53. }],
  54.  
  55. });
  56. });
  57. </script>
  58.  
  59. data: [{
  60. name: "Firefox",
  61. y: 10,
  62. custom:"5% "
  63. }, {
  64. name: "Chrome",
  65. y: 12,
  66. custom:"10% "
  67. }, {
  68. name: "Explorer",
  69. y: 65,
  70. custom:"15%"
  71. }, {
  72. name: "Opera",
  73. y: 13,
  74. custom:"25% "
  75. }]
  76.  
  77. tooltip: {
  78. pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b> <br>of which woman users {point.custom}'
  79. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement