Guest User

Untitled

a guest
Jan 17th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. series: [{
  2. type: 'column',
  3. data: [8394, 9203, 6177, 9658, 8031],
  4. tooltip: {
  5. pointFormatter() {
  6. return '<span style="color: red;">Tooltip for column series</span>'
  7. }
  8. }
  9. }, {
  10. data: [24916, 24064, 29742, 29851, 32490],
  11. tooltip: {
  12. pointFormatter() {
  13. return 'Tooltip for the first line series'
  14. }
  15. }
  16. }, {
  17. data: [49126, 42064, 39742, 58251, 42490],
  18. tooltip: {
  19. pointFormatter() {
  20. return 'Tooltip for the second line series'
  21. }
  22. }
  23. }]
  24.  
  25. plotOptions: {
  26. column: {
  27. tooltip: {
  28. pointFormatter() {
  29. return '<span style="color: red;">Red tooltip for column series</span>'
  30. }
  31. }
  32. },
  33. line: {
  34. tooltip: {
  35. pointFormatter() {
  36. return '<span style="color: blue;">Blue tooltip for all line series</span>'
  37. }
  38. }
  39. }
  40. },
  41.  
  42. series: [{
  43. type: 'column',
  44. data: [8394, 9203, 6177, 9658, 8031]
  45. }, {
  46. data: [24916, 24064, 29742, 29851, 32490]
  47. }, {
  48. data: [49126, 42064, 39742, 58251, 42490]
  49. }]
Add Comment
Please, Sign In to add comment