turbulence 0.0.9 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/turbulence.html DELETED
@@ -1,81 +0,0 @@
1
- <html>
2
- <head>
3
- <script src="jquery.min.js"></script>
4
- <script src="highcharts.js"></script>
5
- <script src="cc.js"></script>
6
- <script>
7
- $(document).ready(function() {
8
- var chart = new Highcharts.Chart({
9
- chart: {
10
- renderTo: 'container',
11
- defaultSeriesType: 'scatter',
12
- zoomType: 'xy'
13
- },
14
- title: {
15
- text: 'Churn vs Complexity'
16
- },
17
- xAxis: {
18
- title: {
19
- enabled: true,
20
- text: 'Churn'
21
- },
22
- startOnTick: false,
23
- endOnTick: false,
24
- labels: {enabled:false},
25
- lineWidth: 0,
26
- tickWidth: 0
27
- },
28
- yAxis: {
29
- title: {
30
- text: 'Complexity'
31
- },
32
- startOnTick: false,
33
- endOnTick: false,
34
- labels: {enabled:false}
35
- },
36
- tooltip: {
37
- formatter: function() {
38
- var item = this.point;
39
- return item.filename + "<br/>" + "churn: " + item.x + "<br/>" + "complexity: " + item.y;
40
- }
41
- },
42
-
43
- plotOptions: {
44
- scatter: {
45
- marker: {
46
- radius: 5,
47
- states: {
48
- hover: {
49
- enabled: true,
50
- lineColor: 'rgb(100,100,100)'
51
- }
52
- }
53
- },
54
- states: {
55
- hover: {
56
- marker: {
57
- enabled: false
58
- }
59
- }
60
- }
61
- }
62
- }
63
- });
64
-
65
- $.each(directorySeries, function(directory) {
66
- chart.addSeries({
67
- name: directory,
68
- type: 'scatter',
69
- visible: true,
70
- data: directorySeries[directory]
71
- });
72
- });
73
- });
74
-
75
- </script>
76
- </head>
77
- <body>
78
- <div id='container'>
79
- </div>
80
- </body>
81
- </html>