Page 1 of 1

A colorline question...

Posted: Thu Feb 12, 2009 3:06 pm
by 14045263
Could you make the DoDragLine method and DragLine event handler [for the ColorLine] use the MouseEventArgs type (instead of EventArgs) so I can get the mouse X and Y when you move it?

I've already done this in the source code but I would like it to be implemented in future versions, if you wouldn't mind please guys.

Regards
Chris.

Posted: Thu Feb 12, 2009 3:47 pm
by narcis
Hi Chris,

You can do something like in the code below already. Anyway, I'll add your request to the wish-list to be considered for inclusion in future releases.

Code: Select all

		void colorLine1_DragLine(object sender, EventArgs e)
		{
			double value = (sender as Steema.TeeChart.Tools.ColorLine).Value;
			this.Text = value.ToString();
		}