Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. export var settings = {
  2. title: 'Hello World',
  3. components: [
  4. {
  5. type: 'Chart',
  6. cardStyle: 'Chart',
  7. header: 'My Pie Chart',
  8. data: [[{x: 1, y: 40}, {x: 2, y: 40}, {x: 3, y: 20}]],
  9. dataHandlers: ['NVD3.toPieChartSeries'],
  10. settings: {
  11. type: 'pieChart',
  12. x: 'x',
  13. y: 'y',
  14. height: '600'
  15. },
  16. }
  17. ]
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement