BarChart using Victory - ovelaps X-axis

I’m because maybe some of you know Victory. I want to create barchart that shows account balance of people. At this point, I have a chart that looks like this. I don’t want bars to cover the names of users. How to make it so, if the user’s balance is negative his name will be displayed on the right side of the axis, or to render names on top of bars? Thanks in advance.

const data = [
    { name: "Mark", balance: 50 },
    { name: "Cathy", balance: 20 },
    { name: "Henry", balance: -70 },
  ];
<VictoryChart
        width={350}
        domainPadding={20}
        horizontal={true}
        children={[
          <VictoryAxis />,

      <VictoryBar
        data={data}
        x='name'
        y='balance'
        alignment='middle'
        labels={({ datum }) => datum.balance}
        barRatio={1.5}
        textAnchor='middle'
        style={{
          data: {
            fill: ({ datum }) => (datum.balance >= 0 ? "#0F0" : "#F00"),
          },
        }}
      />,
    ]}></VictoryChart>