Group: Forum Members
Last Active: 13 Years Ago
Posts: 5,
Visits: 1
|
Hello,
i use a Nevron-Chart, their i use zoom. Now i need the range from my X-Axis after zoom. I tried it with HorizontalAxisRangeChanged-Event. But this event is fired the hole time i am select the part in my chart.
void rangeSelection_HorizontalAxisRangeChanged(object sender, EventArgs e) { NRangeSelection nrs = (NRangeSelection)sender; Console.WriteLine(nrs.HorizontalAxisRange.Begin + " " + nrs.HorizontalAxisRange.End); Console.WriteLine(cartesianChart.Axis(StandardAxis.PrimaryX).PageRange.Begin + " | " + cartesianChart.Axis(StandardAxis.PrimaryX).PageRange.End); } After zoom i will call a method, but it would be hard to call this method more than once. Can you help please.
best regards
|