Let's call the "Parent" record the Reference record. Somewhere on that record there is a reference date and I will call the [Reference Date]
Let's call the table which holds the graphs the details table. on that table, I will refer to [Invoice Date]
Go to the reference table and make a new formula date field called Reference Date Sunday.
FirstDayOfWeek([Reference Date])
then go to the details table and make three formula date fields which will calculate the first day of the week of the week before the invoice date and the week of the invoice date and the week after the invoice date.
Invoice Date Week with formula
FirstDayOfWeek([Invoice Date])
Invoice Date Week minus 1
AdjustWeek([Invoice Date Week], -1)
Invoice Date Week plus 1
AdjustWeek([Invoice Date Week], 1)
then on the Reference record table make three report link fields to match Reference Date Sunday with respectively those three fields in the details table.
then put three charts on your reference record
If that is good enough, then we're done. Otherwise, I have another method or two but they're a little more complicated to set up.