Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8022833
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T22:23:12+00:00 2026-06-04T22:23:12+00:00

I have a graph (x y graph) with several curves on it in an

  • 0

I have a graph (x y graph) with several curves on it in an excel file.
How can i access this graph in a c# application and extract values from the graph?

As an example, given curve 1 and an x value on an excel graph, i want to get the y value on the corresponding curve using a c# windows application.
is this possible?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T22:23:13+00:00Added an answer on June 4, 2026 at 10:23 pm

    You can use EPPlus and get excel range for chart series and then from range you get Chart data, something like this :

    private List<double> ExtractChartValues(FileInfo excelFile, string sheetName, int drawing, int chartSerie)
    {
      ExcelPackage ePack = new ExcelPackage(excelFile);
      ExcelWorksheet ws = ePack.Workbook.Worksheets[sheetName];
    
      List<double> result = new List<double>();
      ExcelChart ec = (ExcelChart)ws.Drawings[drawing];
      ExcelRange dataRange = ws.Cells[ec.Series[chartSerie].Series];
      foreach (ExcelRangeBase data in dataRange)
      {
        if (data.Value != null)
          result.Add((double)data.Value);
      }
      return result;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have several nodes (undirected graph, bidirecional) ... Each two nodes have a distance...
I have oriented graph. Graph can be strongly connected. Every vertex can have a
I have a graph library that I use to plot some data. This data
I have several time series plotted with jfreechart. The graph also contains multiple annotations.
We have a program which perform graph analysis (namely Maximum-flow problem) on several graphs.
Say I have a vertex {first_name, last_name} in a graph database (Neo4j in this
I'm building an app that takes status updates from several Social Media. Already have
Where can I find the official Graph API Error Code list? I have been
Explanation: Let's say I have an object graph that's nested several levels deep and
I have several functions on graph f(), g() and h() that implements different algorithms

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.