Reputation: 5117
Does somebody know how to rotate axis titles?
An example is here: https://echarts.apache.org/examples/en/editor.html?c=line-stack but about rotating legends nothing cannot found.
Upvotes: 0
Views: 163
Reputation: 4450
You need nameRotate
.
yAxis: {
//...,
name: 'You Title',
nameRotate: 90,
}
Upvotes: 1