System.Drawing

  • Thread starter Thread starter rgx71
  • Start date Start date
R

rgx71

Hi!!, Somebody know if is posible with this class make differents
charts and control the click event over a part of a graphic?
 
Somebody know if is posible with this class make differents
charts and control the click event over a part of a graphic?

Mhm... You'll have to draw them yourself, for example by overriding a
custom control's 'OnPaint' method and using 'e.Graphics.*' there to draw the
charts. To handle mouse events simply handle the control's 'Click' event
and determine the cursor's position there ('Cursor.Position').
 
Back
Top