Hi Javier,
Thanks for using Syncfusion products.
You can achieve this requirement by using LabelPosition property of DataMarkerLabelStyle and DataMarkerPosition property of StackingBarSeries. Please find the code snippet below.
Code Example:
StackingBarSeries series1 = new StackingBarSeries();
series1.DataMarker.LabelStyle.LabelPosition = DataMarkerLabelPosition.Inner;
series1.DataMarkerPosition = DataMarkerPosition.Bottom;
chart.Series.Add(series1);
StackingBarSeries series2 = new StackingBarSeries();
series2.DataMarker.LabelStyle.LabelPosition = DataMarkerLabelPosition.Center;
chart.Series.Add(series2);
|
We have attached sample for your reference which can be downloaded from the following location.
Please check the attached sample and let us know if you need further assistance on this.
Regards,
Saravana Pandian M.