Guest User

Untitled

a guest
Oct 23rd, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. //The props get loaded via "define"
  2. return {
  3. initialProperties: {
  4. qHyperCubeDef: {
  5. qDimensions: [],
  6. qMeasures: [],
  7. qVariables: [],
  8. qInitialDataFetch: [{
  9. qWidth: 10,
  10. qHeight: 50
  11. }]
  12. },
  13. qVariableListDef: {
  14. qType: "variable",
  15. qShowReserved: true,
  16. qShowConfig: true
  17. },
  18. listItems: []
  19. },
  20. definition: props,
  21. support: {
  22. snapshot: true,
  23. export: true,
  24. exportData: true
  25. },
  26. paint: function ($element, layout) {
  27. //My visualisation code
  28. return qlik.Promise.resolve();
  29. }
  30. };
Add Comment
Please, Sign In to add comment