HTML <g>标记样式 - NVD3

时间:2017-08-04 07:55:41

标签: html css angularjs svg nvd3.js

我正在使用NVD3库使用角度绘制PIE图表。这是输出:

enter image description here

svg代码为width: 320px and height: 200px。 html的<g>元素未占全宽,我在width元素上找不到<g>属性,我尝试了stroke-width: 100%但没有工作。我想让<g>获得完整的可用宽度。

图表配置:

                 chart: {
                            type: 'pieChart',
                            height: height,
                            width: width,
                            x: function(d){return d.key;},
                            y: function(d){return d.y;},
                            showLabels: false,
                            duration: 500,
                            labelThreshold: 0.01,
                            labelSunbeamLayout: true,
                            legend: {
                                margin: {
                                    top: 5,
                                    right: 35,
                                    bottom: 5,
                                    left: 0
                                }
                            },
                            margin:{
                                left: 20
                            },
                           useInteractiveGuideline: true,    
                           interactive: true
                        }

0 个答案:

没有答案