市长热线演示版

charts1.htm 3.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <script type="text/javascript" src="../ThirdParty/js/jquery-1.8.3.min.js"></script>
  5. <script type="text/javascript" src="../ThirdParty/js/highcharts.js"></script>
  6. <script type="text/javascript" src="../ThirdParty/js/modules/exporting.js"></script>
  7. <script>
  8. $(function() {
  9. $('#container').highcharts({
  10. chart: {
  11. },
  12. title: {
  13. text: '洛阳市12369服务热线通话时长统计'
  14. },
  15. xAxis: {
  16. categories: ['刘一', '陈二', '张三', '李四', '王五']
  17. },
  18. yAxis: [{
  19. title: {
  20. text: '通话时长(s)'
  21. },
  22. },
  23. {
  24. title: {
  25. text: '通话次数(通)',
  26. style: {
  27. color: '#4572A7'
  28. }
  29. }, opposite: true }
  30. ],
  31. tooltip: {
  32. shared: true
  33. },
  34. series: [{
  35. type: 'column',
  36. name: '呼入次数',
  37. yAxis: 1,
  38. tooltip: {
  39. valueSuffix: '通'
  40. },
  41. data: [3, 2, 1, 3, 4],
  42. color:Highcharts.getOptions().colors[6],
  43. }, {
  44. type: 'column',
  45. name: '呼出次数',
  46. yAxis: 1,
  47. tooltip: {
  48. valueSuffix: '通'
  49. },
  50. data: [2, 3, 5, 7, 6],
  51. color:Highcharts.getOptions().colors[7],
  52. },{
  53. type: 'spline',
  54. name: '通话总时长',
  55. data: [5, 3, 2, 4, 2],
  56. tooltip: {
  57. valueSuffix: 's'
  58. },
  59. marker: {
  60. lineWidth: 2,
  61. lineColor: Highcharts.getOptions().colors[5],
  62. fillColor: 'white'
  63. }
  64. }, {
  65. type: 'spline',
  66. name: '平均通话时长',
  67. tooltip: {
  68. valueSuffix: 's'
  69. },
  70. data: [3, 2.67, 3, 6.33, 3.33],
  71. marker: {
  72. lineWidth: 2,
  73. lineColor: Highcharts.getOptions().colors[5],
  74. fillColor: 'white'
  75. }
  76. }]
  77. });
  78. });
  79. </script>
  80. </head>
  81. <body>
  82. <div id="container" style="min-width: 700px; height: 400px">
  83. </div>
  84. </body>
  85. </html>