want to implement a bar chart that represents the value of the range
the following is the code for option
option = {
color: ["-sharp3398DB"],
tooltip : {
trigger: "axis",
axisPointer : { //
type : "shadow" // :"line" | "shadow"
}
},
grid: {
left: "3%",
right: "4%",
bottom: "3%",
containLabel: true
},
xAxis : [
{
type : "category",
data : [ "10", "20", "30", "40", "50", "60"],
axisLabel:{
align:"left",
width:"100%"
},
offset:10,
axisTick:{
alignWithLabel:false
}
}
],
yAxis : [
{
type : "value"
}
],
series : [
{
name:"",
type:"bar",
barWidth: "60%",
data:[10, 52, 200, 334, 390, 330, 220],
barWidth:"100%"
}
]
};
want to scale the text (10 20 30. Move directly below the scale indicated by the arrow, what to do