Reputation: 205
how to draw ECG like graph in asp.net c#.I have array of String which I stored ECG values. I just want to display them in an ECG like Graph.
string will be like as follows:
string [] s=new string(0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0);
Upvotes: 0
Views: 776
Reputation: 609
You could use MSChart. This gives you chart control similar to what is used in Excel.
Here is an example from MSDN.
Upvotes: 1