I would like to display labels on the top x-axis and bottom x-axis in my bar charts. I am trying to express the bar as a range between two opposing values, for example: Energetic vs Laid Back.
Does anyone know how to do this in echarts
? Ideally it would be something like below, but I haven't been able to find anything:
option = {
...
xAxis: [{
type: "category",
data-top: ["happy", "energetic", "early-bird"],
data-bottom: ["melancholy", "laid-back", "night-owl"]
}],
...
}
I would expect there to be a way to do it with the formatter
option, but I have no idea how.
Your help is greatly appreciated!!
You can use secondary x-axis to display labels on top and bottom of the chart
Please refer the chart option below,
The chart should displayed as,