Built with blockbuilder.org
Created
March 17, 2017 11:18
-
-
Save Catherine-Yu/a211565c688ba3b8cc2f7e7ce306c458 to your computer and use it in GitHub Desktop.
radar-char-new
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<meta charset="utf-8"> | |
<link rel="stylesheet" href="radar-chart.css"> | |
<head> | |
<style> | |
body { | |
padding: 20px; | |
} | |
.radar-chart .area { | |
fill-opacity: 0.7; | |
} | |
.radar-chart.focus .area { | |
fill-opacity: 0.3; | |
} | |
.radar-chart.focus .area.focused { | |
fill-opacity: 0.9; | |
} | |
.area.germany, .germany .circle { | |
fill: #FFD700; | |
stroke: none; | |
} | |
.area.argentina, .argentina .circle { | |
fill: #ADD8E6; | |
stroke: none; | |
} | |
</style> | |
<script type="text/javascript" src="http://d3js.org/d3.v3.js"></script> | |
<script type="text/javascript" src="radar-chart.js"></script> | |
</head> | |
<body> | |
<h1>Radar Chart</h1> | |
<script type="text/javascript"> | |
function showRadar(){ | |
var data = []; | |
var chart = RadarChart.chart(); | |
var c = 'Neighborhood,Potentially Life-Threatening,Alarm,Fire,Non Life-threatening,Other\nTI,85,49,5,38,0'; | |
var w = 600; | |
var h = 700; | |
csv = c.split("\n").map(function(i){return i.split(",")}) | |
headers = [] | |
csv.forEach(function(item, i){ | |
if(i==0){ | |
headers = item; | |
}else{ | |
newSeries = {}; | |
item.forEach( function(v, j){ | |
if(j==0){ | |
newSeries.className = v; | |
newSeries.axes = []; | |
}else{ | |
newSeries.axes.push({"axis":[headers[j]], "value": parseFloat(v)}); | |
} | |
}); | |
data.push(newSeries); | |
} | |
}) | |
RadarChart.defaultConfig.radius = 3; | |
RadarChart.defaultConfig.w = w; | |
RadarChart.defaultConfig.h = h; | |
RadarChart.draw("#chart-container0", data,450,500,"San Francisco Regions"); | |
data = []; | |
chart = RadarChart.chart(); | |
c = 'Neighborhood,Potentially Life-Threatening,Alarm,Fire,Non Life-threatening,Other\nNE,5450,2807,207,2533,4'; | |
w = 600; | |
h = 650; | |
csv = c.split("\n").map(function(i){return i.split(",")}) | |
headers = [] | |
csv.forEach(function(item, i){ | |
if(i==0){ | |
headers = item; | |
}else{ | |
newSeries = {}; | |
item.forEach( function(v, j){ | |
if(j==0){ | |
newSeries.className = v; | |
newSeries.axes = []; | |
}else{ | |
newSeries.axes.push({"axis":[headers[j]], "value": parseFloat(v)}); | |
} | |
}); | |
data.push(newSeries); | |
} | |
}) | |
RadarChart.defaultConfig.radius = 3; | |
RadarChart.defaultConfig.w = w; | |
RadarChart.defaultConfig.h = h; | |
RadarChart.defaultConfig.color = '#D55967'; | |
RadarChart.draw("#chart-container", data,450,500,"San Francisco Regions"); | |
data = []; | |
chart = RadarChart.chart(); | |
c = 'Neighborhood,Potentially Life-Threatening,Alarm,Fire,Non Life-threatening,Other\nSE,4608,1982,206,2266,10'; | |
w = 600; | |
h = 650; | |
csv = c.split("\n").map(function(i){return i.split(",")}) | |
headers = [] | |
csv.forEach(function(item, i){ | |
if(i==0){ | |
headers = item; | |
}else{ | |
newSeries = {}; | |
item.forEach( function(v, j){ | |
if(j==0){ | |
newSeries.className = v; | |
newSeries.axes = []; | |
}else{ | |
newSeries.axes.push({"axis":[headers[j]], "value": parseFloat(v)}); | |
} | |
}); | |
data.push(newSeries); | |
} | |
}) | |
RadarChart.defaultConfig.radius = 3; | |
RadarChart.defaultConfig.w = w; | |
RadarChart.defaultConfig.h = h; | |
RadarChart.defaultConfig.color = '#589EC9'; | |
RadarChart.draw("#chart-container1", data,450,500,"San Francisco Regions"); | |
data = []; | |
chart = RadarChart.chart(); | |
c = 'Neighborhood,Potentially Life-Threatening,Alarm,Fire,Non Life-threatening,Other\nNW,1540,833,179,755,4'; | |
w = 600; | |
h = 650; | |
csv = c.split("\n").map(function(i){return i.split(",")}) | |
headers = [] | |
csv.forEach(function(item, i){ | |
if(i==0){ | |
headers = item; | |
}else{ | |
newSeries = {}; | |
item.forEach( function(v, j){ | |
if(j==0){ | |
newSeries.className = v; | |
newSeries.axes = []; | |
}else{ | |
newSeries.axes.push({"axis":[headers[j]], "value": parseFloat(v)}); | |
} | |
}); | |
data.push(newSeries); | |
} | |
}) | |
RadarChart.defaultConfig.radius = 3; | |
RadarChart.defaultConfig.w = w; | |
RadarChart.defaultConfig.h = h; | |
RadarChart.defaultConfig.color = '#F7E08B'; | |
RadarChart.draw("#chart-container2", data,450,500,"San Francisco Regions"); | |
data = []; | |
chart = RadarChart.chart(); | |
c = 'Neighborhood,Potentially Life-Threatening,Alarm,Fire,Non Life-threatening,Other\nSW,1900,1128,160,1021,0'; | |
w = 600; | |
h = 650; | |
csv = c.split("\n").map(function(i){return i.split(",")}) | |
headers = [] | |
csv.forEach(function(item, i){ | |
if(i==0){ | |
headers = item; | |
}else{ | |
newSeries = {}; | |
item.forEach( function(v, j){ | |
if(j==0){ | |
newSeries.className = v; | |
newSeries.axes = []; | |
}else{ | |
newSeries.axes.push({"axis":[headers[j]], "value": parseFloat(v)}); | |
} | |
}); | |
data.push(newSeries); | |
} | |
}) | |
RadarChart.defaultConfig.radius = 3; | |
RadarChart.defaultConfig.w = w; | |
RadarChart.defaultConfig.h = h; | |
RadarChart.defaultConfig.color = '#99DA94'; | |
RadarChart.draw("#chart-container3", data,450,500,"San Francisco Regions"); | |
}; | |
window.onload = showRadar; | |
</script> | |
<div id="chart-container0"></div> | |
<div id="chart-container"></div> | |
<div id="chart-container1"></div> | |
<div id="chart-container2"></div> | |
<div id="chart-container3"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment