Jump to content
Software FX Community

Events


User (Legacy)

Recommended Posts

You can trap the click event. This event gives you the series and point that 

was clicked (if it was a series and point that was clicked), use this

information to access the data. For example:

if (e.HitType == HitType.Point) {

double xValue = chart.Data.X[e.Series,e.Point];

....

}

--

Francisco Padron

www.chartfx.com

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...