2015-09-15 51 views

回答

0

您可以提供自定義的傳說是這樣的c3js

d3.select('#chart').insert('div', '.chart').attr('class', 'legend').selectAll('span') 
    .data(['Office', 'School', 'Water', 'Work']) 
    .enter().append('div') 
    .attr('data-id', function (id) { return id; }) 
    .html(function (id) { return getDataValue(id); }) 
    .each(function (id) { 
     d3.select(this).style('background-color', chart.color(id)); 
    }) 
    .on('mouseover', function (id) { 
     chart.focus(id); 
    }) 
    .on('mouseout', function (id) { 
     chart.revert(); 
    }) 
    .on('click', function (id) { 
     chart.toggle(id); 
    }); 

全部工作代碼here

+0

當鼠標懸停在圖例上時,我也需要顯示工具提示。這可能嗎? –

相關問題