我使用nvd3在角度应用中绘制了一个简单的散点图。我可以将y轴的比例尺设置在指定范围内,但不能将x轴的比例尺设置在指定范围内,并且它会根据x-的最小值和最大值自动选择比例值轴值。这是在 component.ts 文件
中配置的图表选项plotScatterChart(){
this.regressiontionOptions = {
chart: {
type: 'multiChart',
height: 270,
width:600,
interpolate:"basis",
yDomain1:[0,100],
margin : {
top: 20,
right: 20,
bottom: 30,
left: 50
},
color: d3.scale.category10().range(),
//useInteractiveGuideline: true,
transitionDuration: 500,
xAxis: {
tickFormat: function(d){
return d3.format(',f')(d);
},
axisLabel: 'Actual Score',
axisLabelDistance: -10
},
yAxis1: {
axisLabel: 'Expected Score',
axisLabelDistance: -10
}
}
};
}
使用 yDomain1 ,我可以设置y轴值的范围。同样,如何设置x轴的范围?