dudas con la extencion de google Chart

en el editor de google chart tengo

  google.setOnLoadCallback(drawChart);


  function drawChart() {


    var data = google.visualization.arrayToDataTable([


      ['Year', 'Sales',{ role: 'style' }, 'Expenses',{ role: 'style' },'new'],


      ['2004',  1000,'red' ,     400,'#b87333',200],


      ['2005',  1170, 'red' ,     460,'#b87333',200],


      ['2006',  660,  'red' ,     1120,'#b87333',200],


      ['2007',  1030,  'red' ,    540,'#b87333',200]


    ]);





    var options = {


      title: 'Company Performance',


      vAxis: {title: 'Year',  titleTextStyle: {color: 'red'}}


    };





    var chart = new google.visualization.BarChart(document.getElementById('chart_div'));





    chart.draw(data, options);


  }

lo adapte para la extencion googlechart

<div class="row" >

&lt;div class=&quot;span6&quot; &gt;  


    &lt;?php


    //very useful google chart


    &#036;this-&gt;widget('ext.Hzl.google.HzlVisualizationChart', array('visualization' =&gt; 'BarChart',


        'data' =&gt; array(


            array('Secretarias', 'Hallazgos',&quot; { role: 'style' }&quot;, 'Proceso', 'Vencidos'),


            array('Interior', 11,&quot;#b87333&quot;,8,4),


            array('Setic', 2,&quot;#b87333&quot;,8,4),


            array('Infraestructura', 2,&quot;#b87333&quot;,8,4),


            array('Hacienda', 2,&quot;#b87333&quot;,8,4),


            array('Agricultura', 7,&quot;#b87333&quot;,8,4)


        ),


        'options' =&gt; array(


            'title' =&gt; 'por secretarias',


         ),


        


        ));?&gt;





&lt;/div&gt;

</div>

pero me sale el error "All series on a given axis must be of the same data type" verifique y creo que estan bien el tipo de datos ayuda porfa

tomado de otro foro solo hay que modificar " { role: ‘style’ }" to array(‘role’=>‘style’) y listo