Table & Graph interaction Check

I’m want two things:

  1. Mark the teacher screen with a check.
  2. Feedback in note to student.

I figured out the table interaction check, but I need help with checking to see if students interacted with the graphs. They just need to move the point (correctness not necessary).

Here’s what I have so far:

Here’s the cl I have so far in the NOTE
table=table4
graph1=graphA4
graph2=graphB4

row1a=table.cellContent(1,1)
row1b=table.cellContent(1,2)
row2a=table.cellContent(2,1)
row2b=table.cellContent(2,2)

directions= "

  1. Move the green point to make rectangles for the area.
  2. Complete the table for your rectangles."

success= "
:partying_face: Yay! Next slide."

content:
when table.submitted and
(isDefined(row1a) and isDefined(row1b) and isDefined(row2a) and isDefined(row2b)) “${success}”

otherwise “${directions}”

In each graph CL:
correct: this.number("A")=4

Or if you just want that they moved the point >1