Google visualization Graph

when i give json to my graph it is giving error “Invalid data table format: must have at least 2 columns”.
how i can make a JSON fromate which support Google visualizatio charts please help me mine code is there

    function drawChart() {
   var status=Session.get('status');
   var graphData=Session.get("graphId");

   patientLog.find({patientId: graphData},{fields: 
    {patientExerciseName:1,status:1,_id:0}}).forEach(function (myDoc) {
  var Mydoc=JSON.stringify(myDoc)
    var data = new google.visualization.DataTable(Mydoc)
    var options = {
   chart: {
          title: 'Company Performance',
          subtitle: 'Sales, Expenses, and Profit: 2014-2017',
      },
      bars: 'vertical' // Required for Material Bar Charts.
  };

  var chart = new google.charts.Bar(document.getElementById('barchart_material'));

  chart.draw(data, options);
  })

  }

help me in upper or lower case both are appreciated

AND When
i want to make a bar chart and populate it from my collection data i want to print exercises with there status
but when i return one record from db it is working well graph is coming but when coming two records its not working kindly help in it

Just help me that how i can make

function drawChart() {

  var status=Session.get('status');
  // var exercises=Session.get("exercises")
  //console.log("status========",status)


var graphData=Session.get("graphId");

  console.log("graphData==========",graphData)
 patientLog.find({patientId: graphData},{fields:{patientExerciseName:1,status:1,_id:0}}).forEach(function      (myDoc) {

    var data = new google.visualization.DataTable();

     data.addColumn({ type: 'string', id: 'Room' });
     data.addColumn({ type: 'string', id: 'Name' });
     data.addRows([
         [ myDoc.status,          myDoc.patientExerciseName]


     ])
   var options = {
          chart: {
              title: 'Company Performance',
              subtitle: 'Sales, Expenses, and Profit: 2014-2017',
          },
          bars: 'vertical' // Required for Material Bar Charts.
      };

      var chart = new google.charts.Bar(document.getElementById('barchart_material'));

      chart.draw(data, options);
 })

}

Note : Foreach function when return two rows from database it not works

I haven’t tested it here, but it tests data.addRow without the “s”.