如何在C3.js饼图切片中添加图像?

时间:2017-10-27 10:40:42

标签: c3.js

我想在C3.js饼图切片中添加一个图标。我想要这个:

1 个答案:

答案 0 :(得分:0)

这应该使用fontawesome

添加图标
d3.selectAll(".c3-chart-arcs text").each(function(d) {
  // your update code here as it was in your example
  d3.select(this).append('text')
  .attr('font-family', 'FontAwesome')
  .attr('font-size', function(d) { return '2em'} )
    .text(function(d) { return '\uf118' });  
});

更多信息 - Adding FontAwesome icons to a D3 graph