Search found 2 matches

by Jeff
Wed Sep 22, 2004 12:39 pm
Forum: VCL
Topic: Resizing / Moving an Axis
Replies: 2
Views: 4848

I believe this code should work for resizing the axis but I am having trouble finising it. If you know the rest please let me know. //Following code goes in the ChartMouseMove event for i := 0 to Chart.Axes.Count - 1 do begin if (y > Chart.Axes[i].IEndPos - 3) and (y < Chart.Axes[i].IEndPos + 3) the...
by Jeff
Tue Sep 21, 2004 3:15 am
Forum: VCL
Topic: Resizing / Moving an Axis
Replies: 2
Views: 4848

Resizing / Moving an Axis

I’m working with a stock chart application where each technical indicator is on a separate horizontal axis. What I need is an easy way for the user to be able to resize each axis individually with the mouse. How can this be done? Also allowing the user to change the axis order with a drag and drop o...