为 C3.js 个图表图例添加标题

Add a title to C3.js chart legend

我正在使用 c3js,但我对这个图表框架还是个新手。我需要为图表的系列图例设置标题。我怎样才能做到这一点?我需要使用 D3 来实现吗?

提前致谢。

这个烂摊子怎么样:

var firstLegend = d3.select(".c3-legend-item");
var legendCon = d3.select(firstLegend.node().parentNode);
var legendY = parseInt(firstLegend.select('text').attr('y'));
legendCon
  .append('text')
  .text('Legend Title')
  .attr('y', legendY - 20);