Getting sketch to copy graph with labels

I need help getting a graph to copy with the labels. I cannot seem to figure out the CL to make the labels to appear with the points.

Activity

calculatorState won’t pull over labels. You would need to use the CL to define numberLists or numbers for your points. Then define points in the graph with their intended labels, or use pointLabel in the CL. Your points need to have names to use pointLabel in the CL (e.g. A=(x1,y2) and pointLabel(`A`): "your Label" )

I’d use this for your initial graph, then this for your second graph with the following CL:

numberList(`X`): Graph1.numberList(`X`)
numberList(`Y`): Graph1.numberList(`Y`)

Thank you. This fix worked perfectly.