Immage of chart when program ran and bottom "GRAPH" is pressed
how can i make it so that data does not appear at bottom of chart?
string path = @"c:\users\thebi\desktop\code\justins sample c# code\csv test (writing while open in matlab)\csv vs\csv test\bin\debug\outputfile.txt";
int time = 0;
string[] readText = File.ReadAllLines(path);
int sizeofarray;
sizeofarray = readText.Length;
for (int i = 0; i < sizeofarray; i )
{
chart1.Series["Series1"].Points.AddXY(readText[i], time);
time ;
}
CodePudding user response:
