0

I'm generating linear graphs in ZEND framework using ez components, I would like to display some of em on a single page as a dashboard, how should I do that?

i'm thinking about creating an action for every graph in the controller but I couldn't find the proper way to display them as a dashboard

osm2
  • 37
  • 1
  • 9

1 Answers1

0

In typical MVC scenario single action renders single page so it is probably better idea to create model class for rendering the graphs and call it from action controller to populate view variables

Jarek.D
  • 1,274
  • 1
  • 8
  • 18
  • Can you please provide me with an example of this, i m new to zend framework, i got the idea but i have dont see how to implement it. & Thank you for your reply – osm2 Jul 18 '13 at 09:42