diff options
| author | 2019-11-08 17:36:33 -0500 | |
|---|---|---|
| committer | 2019-11-08 22:36:33 +0000 | |
| commit | 0e67256a2a66b2d0a0c6b3491ab2db63884bd55f (patch) | |
| tree | 1d489fca6212d0df928cc0c8036099ab450baea5 /src/main/resources/stats.html | |
| parent | Fix inner class renaming (#176) (diff) | |
| download | enigma-fork-0e67256a2a66b2d0a0c6b3491ab2db63884bd55f.tar.gz enigma-fork-0e67256a2a66b2d0a0c6b3491ab2db63884bd55f.tar.xz enigma-fork-0e67256a2a66b2d0a0c6b3491ab2db63884bd55f.zip | |
Add stats generation (#177)
* Add stats generation
* Parameters and inner classes too
* Fixes
Diffstat (limited to 'src/main/resources/stats.html')
| -rw-r--r-- | src/main/resources/stats.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/main/resources/stats.html b/src/main/resources/stats.html new file mode 100644 index 0000000..fcff7c0 --- /dev/null +++ b/src/main/resources/stats.html | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | <!DOCTYPE html> | ||
| 2 | <html lang="en"> | ||
| 3 | <head> | ||
| 4 | <meta charset="UTF-8"> | ||
| 5 | <meta content="width=device-width, initial-scale=1" name="viewport"> | ||
| 6 | <title>Stats</title> | ||
| 7 | <link href="https://cdn.anychart.com/releases/v8/css/anychart-ui.min.css" rel="stylesheet" type="text/css"> | ||
| 8 | <style> | ||
| 9 | html, body, #container { | ||
| 10 | width: 100%; | ||
| 11 | height: 100%; | ||
| 12 | margin: 0; | ||
| 13 | padding: 0; | ||
| 14 | } | ||
| 15 | </style> | ||
| 16 | </head> | ||
| 17 | |||
| 18 | <body> | ||
| 19 | <div id="container"></div> | ||
| 20 | <script src="https://cdn.anychart.com/releases/v8/js/anychart-base.min.js"></script> | ||
| 21 | <script src="https://cdn.anychart.com/releases/v8/js/anychart-sunburst.min.js"></script> | ||
| 22 | <script src="https://cdn.anychart.com/releases/v8/js/anychart-exports.min.js"></script> | ||
| 23 | <script src="https://cdn.anychart.com/releases/v8/js/anychart-ui.min.js"></script> | ||
| 24 | <script> | ||
| 25 | anychart.onDocumentReady(function () { | ||
| 26 | var chart = anychart.sunburst([/*data*/], "as-tree"); | ||
| 27 | chart.sort("desc"); | ||
| 28 | chart.calculationMode("parent-independent"); | ||
| 29 | chart.container("container"); | ||
| 30 | chart.draw(); | ||
| 31 | }); | ||
| 32 | </script> | ||
| 33 | </body> | ||
| 34 | </html> | ||