--
You received this message because you are subscribed to the Google Groups "d3-js" group.
To unsubscribe from this group and stop receiving emails from it, send an email to d3-js+un...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
You can do
.each (d,i) ->
if d.comment
d3.select(this).append('circle')...
But you may have an issue appending a circle to a path element. You probably want to put both in a group <g> element.
But you may have an issue appending a circle to a path element. You probably want to put both in a group <g> element.