//// VARIABLES ///INTERGERS FOR COLUMNS ON CHART //int c=0; ///int x=100 ////ARRAYS //String names []= void setup () { smooth (); size (800, 600); } void draw(){ ////NEXT FRAME showchart (); screentitle (); } void screentitle(){ ////TITLES fill (0); textSize (16); text ("Edgar M. Lopez", 650, 20); text ("Project 8" , 650, 35); textSize (30); text ( "CHART", 355, 90); } void showchart(){ ////DRAWING CHART fill (255); stroke(0); strokeWeight(4); rect (100, 100, 600, 420); ////VERTICALE LINES strokeWeight(2); stroke(0); int n=0; for (int y= 130; y<500; y= y+30){ fill(255); line(100, y, 700, y); ////NAMES //textSize(15); //text(""+names[n], 110, y+20); n= n+1; } }