How to set the position of the axis to the lower point of the tail in echarts?

as shown in the figure, how to set the name to the pink position in the figure?
because on the mobile side, you need a larger graphics area


nameTextStyle.padding can control its location. Take a look at echarts document

.
yAxis: {
    type: 'value',
    name: '',
    nameTextStyle: {
        padding: [0, 0, -50, 50]
    }
}
Menu