作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目前我正在使用 Angular-nvd3 图形来显示数据。但是,堆叠面积图 nvd3 图形类型正在切断数字和轴标签。模板图可查看here 。 y 轴数字和标签是主要关注点。下面是图形选项代码和问题的图像。
有没有办法减小尺寸,防止y轴数字和标签被 chop ?
$scope.optionsStacked = {
chart: {
type: 'stackedAreaChart',
height: 450,
margin : {
top: 20,
right: 20,
bottom: 30,
left: 40
},
x: function(d){return d[0];},
y: function(d){return d[1]/100;},
useVoronoi: false,
clipEdge: true,
duration: 100,
useInteractiveGuideline: true,
xAxis: {
axisLabel: 'Time (Years)',
axisLabelDistance: -8,
showMaxMin: false,
tickFormat: function(d) {
return d3.time.format('%Y')(new Date(d))
},
showMaxMin: true
},
yAxis: {
axisLabel: 'arb units',
axisLabelDistance: -4,
tickFormat: function(d){
return d3.format(',.2f')(d);
}
},
zoom: {
enabled: true,
scaleExtent: [1, 10],
useFixedDomain: false,
useNiceScale: false,
horizontalOff: false,
verticalOff: true,
unzoomEventType: 'dblclick.zoom'
}
}
};
最佳答案
尝试增加margin.left
。它将为 y 轴值腾出空间。
关于javascript - Angular NVD-3 图 : Axis Labels and Axis Numbers Cut Off and Outside of Viewing Window,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44618158/
我是一名优秀的程序员,十分优秀!