Bug
XAxis don't show first item as label
1.0.0-alpha.3
Code here:
const data = [
{name: 'V膷era', value: 2200},
{name: 'Dnes', value: 2600},
{name: 'Z铆tra', value: 2300}
]
<LineChart width={200} height={100} data={data}>
<Line type="monotone" dataKey="value" stroke="#8884d8" />
<XAxis dataKey="name" />
</LineChart>
Image of rendered code

Did you figure this out?
figure it out. Passing the prop interval="preserveStartEnd" to XAxis resolves it
Thx @nathmack
Most helpful comment
figure it out. Passing the prop
interval="preserveStartEnd"to XAxis resolves it