Center labels when coming from appsheet formula

"{
  type: 'bar',
  data: {
    labels: [ " &
    
    " ’ " & SUBSTITUTE( TEXT( [Sucursales Filter] ) , "," , " ’ , ’ " )  & " ’ "
    
    					& " ],
    datasets: [
      {
        label: 'Vacantes',
        backgroundColor: 'yellow',
        borderColor: 'rgb(255, 99, 132)',
        borderWidth: 1,
        data: [ " &  [Count Vacantes] & " ],
      },
      {
        label: 'Búsqueda',
        backgroundColor: 'white',
        data: [ " &  [Count Search] & "],
      },
      {
        label: 'Mercado',
        backgroundColor: 'grey',
        data: [ " &  [Count Mercado] & " ],
      },
    ],
  },
  options: {
    title: {
      display: true,
      text: 'Gestión de Talento',
      fontSize: 14,
      fontColor: 'white',
    },
    legend: {
      labels: {
        fontSize: 10,
        fontStyle: 'bold',
        fontColor: 'white',
        align: 'center',
      }
    },
     plugins: {
      datalabels: {
        anchor: 'center',
        align: 'center',
        color: 'black',
        font: {
          weight: 'normal'
        },
      },
      },
scales: {
      yAxes: [
        {
        	
          ticks: {
            beginAtZero: true,
            fontFamily: 'serif',
          },
        },
      ],
      xAxes: [
        {
        	gridLines: {
          offsetGridLines: true
        	},       	
          ticks: {
            fontFamily: 'Serif',
            fontColor: 'white',
          },
        },
      ],
    },
  },
}"

image

Which labels are you trying to center?