How to set text color for my d3 chart title?

jhyap picture jhyap · Mar 20, 2014 · Viewed 47.4k times · Source

I have my d3 chart title, text append on the svg as per below:

svg.append("text")
    .attr("x", (width / 2))             
    .attr("y", 0)
    .attr("text-anchor", "middle")  
    .style("font-size", "14px")
    .text(text);

reference here

But I would like to set the text color to some other color. Is that possible?

Answer

jhyap picture jhyap · Mar 20, 2014

All the while I was doing .style("fill", "darkOrange")

Then I found out the correct answer is

.style('fill', 'darkOrange')