From b7fdb5d60b38dc9c4e2050c11748226c2d4c18b1 Mon Sep 17 00:00:00 2001 From: KurmithaSF4004 Date: Fri, 3 May 2024 17:41:21 +0530 Subject: [PATCH] Create and Edit Charts --- .../NET Standard/Custom Chart/Custom Chart/Program.cs | 7 +++++++ 1 file changed, 7 insertions(+) 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;