Profile Picture

How to select an entire line on the chart?

Posted By Fernando Albino 10 Years Ago
Author
Message
Fernando Albino
Question Posted 10 Years Ago
View Quick Profile
Forum Newbie

Forum Newbie (1 reputation)Forum Newbie (1 reputation)Forum Newbie (1 reputation)Forum Newbie (1 reputation)Forum Newbie (1 reputation)Forum Newbie (1 reputation)Forum Newbie (1 reputation)Forum Newbie (1 reputation)Forum Newbie (1 reputation)

Group: Forum Members
Last Active: 10 Years Ago
Posts: 2, Visits: 10
Hello,

I would be like to select an especific line (by clicking), for then clone this.

Can anyone help me?

Fernando

Nevron Support
Posted 10 Years Ago
View Quick Profile
Supreme Being

Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)

Group: Forum Members
Last Active: Last Year
Posts: 3,039, Visits: 3,746
Hi Fernando,

You can easily perform a hit test using the following code:

void nChartControl1_MouseMove(object sender, MouseEventArgs e)
{
NHitTestResult result = nChartControl1.HitTest(e.X, e.Y);

    if (result.Series as NLineSeries != null)
    {
      // result.Series holds a reference to the clicked line;
    }
}

The All Examples\Interactivity\Mouse Events group of examples show how to perform hit testing in general. Just let us know if you have any questions...

Best Regards,
Nevron Support Team



Fernando Albino
Posted 10 Years Ago
View Quick Profile
Forum Newbie

Forum Newbie (1 reputation)Forum Newbie (1 reputation)Forum Newbie (1 reputation)Forum Newbie (1 reputation)Forum Newbie (1 reputation)Forum Newbie (1 reputation)Forum Newbie (1 reputation)Forum Newbie (1 reputation)Forum Newbie (1 reputation)

Group: Forum Members
Last Active: 10 Years Ago
Posts: 2, Visits: 10
Excellent, thank you!

I need help for something else...

The selected line need to move to the right or left (then modify X axis values to do this(?), im using NNumericUpDown)
I have a fix milliseconds List<DateTime> to create X axis, loaded from some file. who can I modify this to can be able to move right or left my line? It's possible to expand X axis after created?

Thank you!

Nevron Support
Posted 10 Years Ago
View Quick Profile
Supreme Being

Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)

Group: Forum Members
Last Active: Last Year
Posts: 3,039, Visits: 3,746
Hi Fernando,

Can you elaborate a bit on what you want to accomplish - if is it simply to shift the X values of the line then you just need to iterate over the data points in the line and add / subtract a fixed amount in order to move the line...


Best Regards,
Nevron Support Team





Similar Topics


Reading This Topic