New to KendoReact? Start a free 30-day trial
AxisLabelsPosition
AxisLabelsPositionPremium
Updated on Aug 21, 2025
The position of the axis labels.
jsx
import { Chart, ChartValueAxis, ChartValueAxisItem } from '@progress/kendo-react-charts';
const ChartContainer = () => (
<Chart>
<ChartValueAxis>
<ChartValueAxisItem labels={{ position: "end" }}/>
</ChartValueAxis>
</Chart>
);
type AxisLabelsPosition = "start" | "end" | "onAxis" | "";