Create Excel chart using C# winforms application For Create chart using C# .net dynamically just Follow 6 steps Step 1 : Create Worksheet,WorkBook,Worksheet object private void btnEXLChart_Click(object sender, EventArgs e) { Excel.Application xlApp = null; Excel.Workbook xlWorkBook = null; Excel.Worksheet xlWorkSheet = null; } object misValue = System.Reflection.Missing.Value; xlApp = new Excel.ApplicationClass(); xlWorkBook = xlApp.Workbooks.Add(misValue); xlWorkSheet = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1); ...