Recharts.js. How can I display the strip strictly on the left, and not in the center, with an array with one data?

введите сюда описание изображения

<BarChart barSize={barSize} data={dataChart} width={800}>
              <CartesianGrid strokeDasharray='0' strokeWidth='0.6' vertical={false} />
              <XAxis
                dataKey='name'
                strokeWidth='0.6'
                tickLine={false}
                tickMargin={5}
              />
              <YAxis
                fontSize={14}
                padding={{ top: 20 }}
                strokeWidth='1'
                tickLine={false}
                tickMargin={15}
                width={100}
              />
              <Bar dataKey='value'>
                {dataChart.map(item => (
                  <Cell key={item.value}/>
                ))}
              </Bar>
            </BarChart>

Ответы (0 шт):