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 8649543
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T13:35:16+00:00 2026-06-12T13:35:16+00:00

I have a method that returns the PointPairList of a graph at time t,

  • 0

I have a method that returns the PointPairList of a graph at time t, but I want to use it to plot a “moving” graph, by “moving” I mean the graph should evolve in time, does anyone have any clue on how I can do this.I tried using RollingPointPairList’s but it just doesn’t work.

  • 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-12T13:35:17+00:00Added an answer on June 12, 2026 at 1:35 pm

    what do you mean with evolve? do you want to add points to your curve as time pases, or to change the position of the points that the curve already has?.
    for the first option i used a timer and a DrawPoint method as handler that adds a point to the curve. the second option could be alittle more complicated, I havent tried to change the Coordinates of one Point, but maybe its posible… it the worst case you will have to delete your old points and draw new ones… anyway here is part of my code to add one point (actually there are many points because i am working with more than 1 curve)

    tmr.Interval = 6;
    tmr.Tick += new EventHandler(tmr_Tick);
    tmrActive = true;
    tmr.Start();
    void tmr_Tick(object sender, EventArgs e)
    {
       DrawPoint(zedGraphControl1, points, num);   //points is an PointPair array of length num with the new points that i want to add to my Curves(1 point for each Curve)      
       zedGraphControl1.AxisChange();
       zedGraphControl1.Refresh();
       if (Start.Enabled == false) Freeze.Enabled = true;
    }
    private void DrawPoint(ZedGraphControl zgc, PointPair[] p, int num)
        {
            GraphPane myPane = zgc.GraphPane;
    
            if (myPane.CurveList.Count < num)
            {
                DrawCurves(zgc, num);
            }
            for (int i = 0; i < num; i++)
            {
                myPane.CurveList[i].AddPoint(p[i]);
            }
            actPos = p[0].X;
            mResize(zgc, actPos);
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a method that returns lot of data, should I use @TransactionAttribute(TransactionAttributeType.NOT_SUPPORTED) for
I have a method that returns XML elements, but that method takes some time
I have a method that returns a bool value, but should wait with returning
I have a method that returns a list of type string. I want to
I have a method that returns an IEnumerable<KeyValuePair<string, ArrayList>> , but some of the
I have the following method that returns void and I need to use it
I have a method that returns byte[] but for now would like to avoid
I have a method that returns an array of arrays. For convenience I use
If you have a method that returns an IEnumerable but inside returns an IQueryable
I have a method that returns an IEnumerable that I want to be able

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.