MSP430F6776A: Graphing in CCS

Part Number: MSP430F6776A

Tool/software:

Hello, I am new to embedded development and to the CCS IDE. I have been trying to use the graphing functionality in the newest version(20.1.1.8) in order to view samples off of channel data from the msp, and I have been running into issues. I've tried using online tutorials, and I tried to make a simple program so that I could try to graph 100 points from 1 to 100, and my steps have been as follows
1.) make variable into watch expression

2.) set breakpoint on line

3.) change breakpoint property to "refresh all windows"

4.) run program in debug mode 

For some reason, the graph will not run continuously. Here is the sample program I made, and I am currently trying to graph "n"

#include <msp430.h>
#include <stdio.h>
int n;
int i;
int main(){
    for(i = 0; i < 100; i++){
        n = i;
    }
    return 0;
}
If anyone has any advice or resources that point to a fix to this problem I would greatly appreciate it. I also understand I may not have a solid understanding of the graphing functionality within ccs, but I struggled with finding resources that use the new updated version. 

**Attention** This is a public forum