New to Kendo UI for Vue? Start a free 30-day trial
AxisLabelsPosition
The position of the axis labels.
jsx
<Chart>
<ChartValueAxis>
<ChartValueAxisItem :labels="{ position: 'end' }"/>
</ChartValueAxis>
</Chart>
);
type
AxisLabelsPosition = "start" | "end" | "onAxis" | "";