在Angular 6应用程序中使用ng2-nvd3绘制图形,并在右侧对齐图例。但是,图例值太多,并且它们重叠。如何向其中添加滚动条?
this.options = {
chart: {
type: 'pieChart',
height: 150,
x: function (d) { return d.label; },
y: function (d) { return d.value; },
showLabels: false,
showLegend: true,
legendPosition: "right",
addLegendNav : true,
duration: 500,
labelThreshold: 0.01,
labelSunbeamLayout: true,
legend: {
margin: {
top: 5,
right: 35,
bottom: 5,
left: 0
}
}
}
};