ChartJS 如何将图表的X轴放在顶部而不是底部?

jtw3ybtb  于 2022-11-06  发布在  Chart.js
关注(0)|答案(1)|浏览(193)

我希望图表的X轴位于顶部。
我将附上源代码。
请帮帮我。
当前图表:

我想要的:

borderSkipped: false,
      indexAxis: 'y',
      // aspectRatio: 4,
      scales: {
        y: {          
          beginAtZero: true
          // suggestedMax: 24,          
        },
        x: {          
          suggestedMax: 24,          
          ticks: {
            stepSize: 1            
          }
        }        
      }
    },
hrirmatl

hrirmatl1#

尝试添加到刻度。x.位置:'顶部'

相关问题