如何为 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>
但这不起作用。有什么方法可以为图例添加边距?谢谢你。