score:1
Accepted answer
I've edited your fiddle a bit to make it work:
https://jsfiddle.net/2qgygksL/75/
Basicly what i've done:
fix the color scheme
var colors = d3.scale.category10();
instead of
var colors = d3.scale.ordinal(d3.schemeCategory10);
added data to path
radarWrapper.append("path")
.data(scaledData)
change radius to
.radius(function(d, i) {
return d;
})
since You used something like return scaledData(d.value); where your scaledData is an array.
Source: stackoverflow.com
Related Query
- d3 radar chart -- radialLine creates path but without coordinates
- Interactive spider or radar chart using d3
- D3.js get nearest X & Y coordinates for Area Chart
- How can I animate infinite marker movement down an SVG path without very high CPU usage?
- I've defined a path in d3.js, it draws correctly, but .getTotalLength() is undefined
- Draw path to join two nodes without intersect other node + d3.js
- With D3, how can I set attribute ("fill", "none") of axis path and line, but not text (without editing stylesheet)
- dimple.js How can I change the labels of a chart axis without changing the data?
- d3.js extract coordinates of SVG path elements
- d3.js create the pie chart but square shaped
- How to clear stacked chart without render
- svg - get path coordinates of overlapping shape areas
- area chart with d3 is not rendering on jsp page but working fine with html
- D3.js bar chart colors not shown in print out but displayed on browser
- Driving a D3 chart with and without d3.json()
- SVG path goes beyond chart area on d3 brush
- How to add circles onto line chart path d3.js
- dimple.js Show X Axis label, but if "value" is null don't place a circle on chart
- D3.js - DOM reorders after sort but chart does not update
- Append a line to an end of a path in area chart d3
- How to get SVG path data of TopoJSON feature without adding it to the DOM?
- Finding coordinates in d3 svg path
- D3.js Bar Chart won't append, creates a new chart
- Multiple line chart append path directly
- D3 radar chart data update doesn't work
- D3.js chart is visible in Internet Explorer 11 but invisible in Internet Explorer 11
- dc.js apply some, but not all chart selections to numberDisplay, while maintaining the interactions between charts in place
- Adding a path transistion to pie chart
- Trying to render data d3 crossfilter dc.js BarChart. The chart is drawn, but it's empty
- How can I draw a continuous line using d3 without needing to click&drag the mouse, but rather just use the mouseover event?
More Query from same tag
- How to use JSON properties as axis tick values in D3
- D3: What is a Bisector?
- How to set x and y Threshold line in C3 line graph
- Error: <rect> attribute x: Expected length, "NaN"
- polynomial d3-regression loading dataset
- d3js How do I pass arguments to the Force Tick event?
- D3 - Add bars into group
- D3 js multiple line graph toggle dots on/off
- Total value on top of stacked bars in fusion charts
- NVD3.js: Stacked and grouped bar chart with two y-axis
- D3 Force directed Graph: Why don't the links appear and why is the simulation on the left?
- Capturing the mouseover event of a shape blocked by another transparent shape
- Stacked bar-chart reversed
- I unable show the x-axis year and month using d3.js
- Sankey diagram transition
- Collision/overlap detection of circles in a d3 transition
- NVD3 - x axis labels fail
- d3,max from d3.stack() giving wrong maximum value
- how to highlight(change color) of all connected(neighbours) nodes and links in a d3 force directed graph
- Complex d3.nest() manipulation
- Unnecessary gap in line graph paths
- Unable to reset the focus ordinal bar chart
- y scale in scatterplot scales y axis differently than y values D3.js
- d3.js-After translate <g> how to add <circle>
- How to avoid labels overlapping in a D3.js pie chart?
- d3plus: how to flip order of drawn boxplots?
- D3 Dragging on SVG "Path" Element Breaks when d.x is defined, hidden datum?
- Creating Dynamic Fullscreen and Minimize Div Functions
- d3.js csv import... only accessing first column of data (not sure why)
- unable to scale yaxis in d3.js according to the data