是否可以在x轴上旋转辅助标签?理想情况下,我需要对二级标签进行调整,但无法找到有关如何使用的任何文档。我可以垂直对齐其中一个标签(病毒/非病毒)。
class Dispersiones extends Component{
constructor(props){
super(props);
this.state = {
showDetailDeposito:false
};
}
onClickRow(row){
this.setState({showDetailDeposito:true});
this.refs.detalle.getDataFromTable(row);
}
render(){
let container={
height:'100%',
width:'100%',
backgroundColor:'cyan',
position:'relative'
};
return(
<div style={container}>
<div style={{width:'100%', height:'50%', backgroundColor:'#3b434d', float:'left'}}>
{
this.state.showDetailDeposito
?
<DetalleDeposito ref="detalle"></DetalleDeposito>
:
null
}
</div>
<div style={{width:'100%', height:'50%', backgroundColor:'white', float:'left',overflow:'auto'}}>
<ListaDepositosPendientes onClickPropTr= {this.onClickRow.bind(this)}></ListaDepositosPendientes>
</div>
</div>
);
};
}
export default Dispersiones;
答案 0 :(得分:1)
从版本0.12.16
开始,这是可能的:
p.xaxis.major_label_orientation = "vertical"
p.xaxis.subgroup_label_orientation = "normal"
p.xaxis.group_label_orientation = 0.8