let value = [65]; option = { grid: { top: "center", left: "32", right: "32", }, xAxis: { show: false, type: "value", boundaryGap: [0, 0], max: 100 }, yAxis: { type: 'category', axisTick: 'none', axisLine: 'none', show: true, position: "right", axisLabel: { show: false }, data: value }, series: [ { data: value, type: 'bar', name: "占比条", barWidth: 10, showBackground: true, backgroundStyle: { color: "#F1F1F1" }, itemStyle: { color: "#73DEB4", }, markPoint: { symbol: "rect", symbolSize: [3, 15], symbolOffset: [0, -2.5], label: { show: false }, data: [ { type: "max" } ] } } ] };