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