This question is locked. New answers and comments are not allowed.
Sorry for mistake in title - "stretch".
I use horizontal bar chart to display data. I want to show value of point after the bar, often label is long because i use currency characters after. Here is my code:
unfortunately, chart draws full bars but cuts off long labels (see picture).
How can i avoid this cutting?
I use horizontal bar chart to display data. I want to show value of point after the bar, often label is long because i use currency characters after. Here is my code:
<telerikChart:RadCartesianChart > <telerikChart:RadCartesianChart.HorizontalAxis > <telerikChart:LinearAxis ShowLabels="False" /> </telerikChart:RadCartesianChart.HorizontalAxis> <telerikChart:RadCartesianChart.VerticalAxis> <telerikChart:CategoricalAxis/> </telerikChart:RadCartesianChart.VerticalAxis> <telerikChart:BarSeries ShowLabels="True"> <charting:CategoricalDataPoint Value="400000" Category="asdasda2" Label="12313 usd"/> </telerikChart:BarSeries></telerikChart:RadCartesianChart>How can i avoid this cutting?