Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. {
  2. fullData: data,
  3. chart_height: '400px',
  4. tooltip : {
  5. trigger: 'axis'
  6. },
  7. grid: {
  8. x: 60,
  9. x2: 1,
  10. y: 50,
  11. y2: 50
  12. },
  13. xAxis: [
  14. {
  15. type: 'category',
  16. show: true,
  17. data: data.months
  18. }
  19. ],
  20. legend: {
  21. data:['Actual', 'Budget']
  22. },
  23. yAxis: [
  24. {
  25. type: 'value',
  26. show: true,
  27. name: 'USD'
  28. }
  29. ],
  30. series: [
  31. {
  32. name: 'Actual',
  33. type: 'line',
  34. itemStyle: {
  35. normal: {
  36. color: color.actual,
  37. label: {
  38. show: true
  39. }
  40. }
  41. },
  42. data: data.actual
  43. },
  44. {
  45. name: 'Budget',
  46. type: 'line',
  47. itemStyle: {
  48. normal: {
  49. color: color.budget,
  50. label: {
  51. show: true,
  52. position: 'bottom'
  53. }
  54. }
  55. },
  56. data: data.budget
  57. }
  58. ]
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement