New to KendoReactStart a free 30-day trial

AxisLabelsPosition
Premium

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>
);

ReactDOM.render(
 <ChartContainer />,
 document.querySelector('my-app')
);

type AxisLabelsPosition = "start" | "end" | "onAxis" | "";

Not finding the help you need?
Contact Support