Hey,
I have a Chart with multiple stacked BarSeries. My Top series has to Labels, one to display its own value, one for the sum of the stacked ones combines.
The problem is, that this:
<telerik:ChartSeriesLabelDefinition HorizontalAlignment="Center" VerticalAlignment="Top" >
<telerik:ChartSeriesLabelDefinition.Template>
<DataTemplate>
<TextBlock Text="{Binding DataItem.ReklasGesamt}" FontWeight="Bold" />
</DataTemplate>
</telerik:ChartSeriesLabelDefinition.Template>
</telerik:ChartSeriesLabelDefinition>
Won't resize if the value changes. So if the value was two digits and gets three it will cut off.
If I don't spezify a template it will resize, but will obviously not display the value I want.
Is there any way to get the label to resize? Ordo I have to add a invisble Pointseries?
Greetings
Benedikt