loselevel.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <!--
  3. To change this license header, choose License Headers in Project Properties.
  4. To change this template file, choose Tools | Templates
  5. and open the template in the editor.
  6. -->
  7. <html>
  8. <head>
  9. <title>流失等级</title>
  10. <meta charset="UTF-8">
  11. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  12. <?php include "includelibs.php"; ?>
  13. <script >
  14. window.myDateTypeStr = 'FirstPayDayLevel';
  15. $(function () { // onload
  16. GetData(3);// 流失等级分析
  17. });
  18. // 图表标题
  19. function getTitleText() {
  20. var titlestr = "玩家到达等级统计";
  21. return titlestr;
  22. }
  23. </script>
  24. </head>
  25. <body style='max-width:1000px;margin:auto;'>
  26. <p>玩家达到等级统计, 按F5刷新</p>
  27. <div id="chartContainer" style="max-width:800px;max-height:500px">
  28. <canvas id="myChart" style="width:100%;height:100%;border: 1px solid red;"></canvas>
  29. </div>
  30. </body>
  31. </html>