Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible that the axis scale outside the graph could be scale using the mouse event "mouse_down and hold" and move up or down in y-axis the same with the x-axis move left or right? ex. when I trigger MouseDownEvent and hold the x-axis scale 0.6 or at the space along with that scale and move it to the right, scale should scroll depend in the chartfraction? could you post an example? Thanks in advance!

share|improve this question

2 Answers

If I understand your question correctly, here's my response:

zedgraph has got an in-built function called "Pan", you could change the scale of x & y axis.

Place the cursor within the 'chart area' Hold the 'ctrl' button & move the mouse towards x & y directions to change the scale.

you could get back to original state by 'Un-Pan' (Context Menu)

Cheers..:)

share|improve this answer
San, I understand what you are saying but what I really want is to make that function "outside the chart area" not with in the chart. For ex. I have x-axis scale 0.0 0.1 0.2 0.3. I want to click and hold the scale label 0.1 and move the mouse towards left and at the same time it should re-scale into 0.1 0.2 0.3 0.4. – Cold Sep 8 '12 at 12:22

Do You want to create a ScrollBar?

 zedGraphControl1.IsShowHScrollbar = true;
//Set borders for the scale
zedGraphControl1.GraphPane.XAxis.Scale.Max = Xmax;
zedGraphControl1.GraphPane.XAxis.Scale.Min = Xmin;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.