AxisLabelsPosition
The position of the axis labels.
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" | "";