我正在使用nvd3-angular-directives来显示图形。
离散条形图列宽有问题,当有足够的数据时,图表列的宽度合理。
但是有一些数据的列非常宽。
我的问题是:有没有办法在colunms上强制执行最大宽度? 我的代码:
<nvd3-discrete-bar-chart
data="vm.dateData"
id="byDateChart"
height="400"
margin="{right: -5}"
showXAxis="true"
showYAxis="true"
showValues="true"
valueformat="vm.vformat()"
yaxisshowmaxmin="false"
noData="You Have No History"
transitionduration="1000"
tooltips="true"
xaxisticksize="2"
xAxisTickFormat="vm.xAxisTickFormat()"
yAxisTickFormat="vm.yAxisTickFormat()">
<svg></svg>
</nvd3-discrete-bar-chart>
谢谢!