Sam
Sam

Reputation: 21

Graph plotting in WPF (functionality)

Please point me in right direction, I need to plot a graph in C# WPF with following functionality:

  1. Plot Data points
  2. Label plotted Data points with unique ids
  3. Link the joints with each other by using arrow directed lines
  4. Able to select any of the Data point by moving mouse cursor on the data point.So i can use the selected data point id.

Upvotes: 2

Views: 5056

Answers (3)

user2847687
user2847687

Reputation: 11

check out the Silverlight and wpf chart controls which has graph chart

www.silverlightcontrols.com

Upvotes: 1

User1551892
User1551892

Reputation: 3364

Try OxyPlot and plots are quite nice and having a lot of useful features: http://oxyplot.codeplex.com/

Upvotes: 2

user2042731
user2042731

Reputation: 11

sam you can use chart control in wpf to plot points,where you can use point series of data. For unique id you have to connect to database,when you put cursor on particular point it will show id,just go through chart control it will help you.

Upvotes: 0

Related Questions