The name on the x-axis below in the echarts chart is not complete, one column has, one column does not, how should I modify it?

clipboard.png
the names on the lower x-axis in the echarts chart are not fully displayed. One column has, and the other column does not have how to modify

.
Dec.13,2021

in your case, the xAxis.axisLabel.interval configuration item will display tags by default with a policy interval in which the tags do not overlap. You can set it to 0 to force all tags to be displayed. But when all the tags are displayed, the text may overlap, and the solution is to search a lot of them online.

reference: xAxis.axisLabel.interval

xAxis.axisLabel.interval
[default: 'auto']
the display interval of the axis scale label is valid in the catalog axis.

tags are displayed by default with a policy interval in which the tags do not overlap.

can be set to 0 to force all tags to be displayed.

if set to 1, it means "every other label displays one tag", if the value is 2, it shows one label every two labels, and so on.

the interval data can be represented by a numeric value, or it can be controlled by a callback function. The format of the callback function is as follows:

(index:number, value: string) = > boolean
the first parameter is the index, of the category, the second value is the catalog name, and if skipped, false is returned.

echarts x-axis text display is incomplete (three ways of tilting xAxis text are more comprehensive are recommended)
several solutions for long Echarts x-axis text

Menu