如何为nvd3图表的图例添加边距。我正在关注https://github.com/krispo/angular-nvd3/blob/gh-pages/js/lineChart.js,他们为图例提供了事件,但未显示任何与图例边距相关的示例。我尝试过
chart: {
type: 'lineChart',
height: 200,
margin: {
top: 20,
right: 20,
bottom: 40,
left: 55
},
legend: {
margin: {
top: 20,
right: 20,
bottom: 40,
left: 55
}
}
}
而在html <nvd3 options="options" data="effortData" class="with-3d-shadow with-transitions"></nvd3>
但这不起作用。有什么方法可以增加图例的边距?谢谢。