diff --git a/Create and Edit Charts/Custom Chart/NET Standard/Custom Chart/Custom Chart/Program.cs b/Create and Edit Charts/Custom Chart/NET Standard/Custom Chart/Custom Chart/Program.cs index 360e7ad1..004949d7 100644 --- a/Create and Edit Charts/Custom Chart/NET Standard/Custom Chart/Custom Chart/Program.cs +++ b/Create and Edit Charts/Custom Chart/NET Standard/Custom Chart/Custom Chart/Program.cs @@ -89,6 +89,13 @@ static void Main(string[] args) chart.SecondaryCategoryAxis.MajorTickMark = ExcelTickMark.TickMark_None; chart.SecondaryCategoryAxis.TickLabelPosition = ExcelTickLabelPosition.TickLabelPosition_None; + //Set data label from the range of cells + serieOne.DataPoints.DefaultDataPoint.DataLabels.ValueFromCellsRange = sheet["B4:B6"]; + serieOne.DataPoints.DefaultDataPoint.DataLabels.IsValueFromCells = true; + + //Set the position of the data label + serieOne.DataPoints.DefaultDataPoint.DataLabels.Position = ExcelDataLabelPosition.Inside; + //Set legend properties chart.Legend.Position = ExcelLegendPosition.Bottom; chart.Legend.IsVerticalLegend = false;