score:0

just add a text element to your svg, like this. i added this to your fiddle, and it added the text right in the middle:

  var text = svg.append('text')
   .text('test system 1')
   .attr('text-anchor', 'middle')

Related Query

More Query from same tag