Javascript error on chart object

OK, I think I see the issue. It looks like there are no records in your AppointmentsChartComplete model:

skuid.$M('AppointmentsChartComplete').getRows().length

I entered this in the javascript console and got 0 returned. Since this is the model used by the second series in your Appointments by Status chart, it’s undefined. The other console log which does have data for series[1] looks like it’s coming from your other Before Render Snippet (CallsSchedules). I’m not sure what you want to happen if there is no data in your AppointmentsChartComplete model, but that’s where it’s breaking down. Does that help?