Copied graph - transferring labels

I am working in this activity.

On screen 6, students drag a labeled point. I have copied that graph to screen 8 using the background coding; however, the labels for the points don’t also transfer. What should I add to the code and/or graph such that we can still see the labels from the previous graph?

Labels won’t transfer. You can name your Step 1 point (e.g. A=(1,8) ), use the CL to transfer coordinates into slide 8,

number(`x_1`): graph6.number(`A.x`)
number(`y_1`): graph6.number(`A.y`)

In graph make the point and label:

(x_1,y_1)
Label: Step 1
1 Like

Thank you so much! It works now!

1 Like