角度为6的ng2-nvd3图例滚动选项

时间:2018-09-20 18:16:39

标签: d3.js angular6 nvd3.js ng2-nvd3

在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
                }
            }
        }
    };

0 个答案:

没有答案