Articles in this section
Category / Section

How to set the DataLabel position for chart series using XlsIO?

1 min read

The position of datalabels of a chart series can be changed using XlsIO. There are a number of options available that will allow you to place the datalabel relative to the data series position. The following code illustrates this:

C#

IChartSerie serieOne = chart.Series[0];
serieOne.DataPoints.DefaultDataPoint.DataLabels.Position = ExcelDataLabelPosition.Center;
serieOne.DataPoints.DefaultDataPoint.DataLabels.IsCategoryName = true;

VB

Dim serieOne As IChartSerie = chart.Series(0)
serieOne.DataPoints.DefaultDataPoint.DataLabels.Position = ExcelDataLabelPosition.Center
serieOne.DataPoints.DefaultDataPoint.DataLabels.IsCategoryName = True

 

Here is the sample for your reference:

Chart_DataLabel_Position.zip

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied