Guest User

Untitled

a guest
Dec 12th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. $data = array_map(
  2. function($i) {
  3. return [$i['category_id']];},
  4.  
  5. Tickets::find()->select(['category_id'])->all()
  6. );
  7.  
  8.  
  9. echo GoogleChart::widget(array('visualization' => 'PieChart',
  10. 'data' => array_merge([['Category id']], $data)
  11. )
  12. );
Add Comment
Please, Sign In to add comment