Guest User

Untitled

a guest
May 26th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. // ==========================================================================
  2. // Project: FlotPlay.graphController
  3. // ==========================================================================
  4. /*globals FlotPlay */
  5.  
  6. /** @class
  7.  
  8. @extends SC.Object
  9. */
  10. FlotPlay.graphController = SC.ArrayController.create(
  11. /** @scope FlotPlay.pricesController.prototype */ {
  12.  
  13. content: [
  14. SC.Object.create({label: 'set1', data:[]}),
  15. SC.Object.create({label: 'set2', data:[]})
  16. //SC.Object.create({label: 'set2', data:[], 'yaxis': 2})
  17. ],
  18.  
  19. options: SC.Object.create({}),
  20.  
  21. });
Add Comment
Please, Sign In to add comment