index.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <section class="oe_container">
  2. <div class="oe_row oe_spaced">
  3. <div class="oe_span12">
  4. <h2 class="oe_slogan">Graph Widget for Kanban</h2>
  5. <h3 class="oe_slogan">This widget allows to display graph in kanban view using NVD3 library.</h3>
  6. </div>
  7. <div class="oe_span12">
  8. <h3>Use</h3>
  9. <p class="oe_mt32">
  10. <code>
  11. &lt;field name="kanban_dashboard_graph" widget="kanban_graph"/&gt;
  12. </code>
  13. </p>
  14. </div>
  15. <div class="oe_span6">
  16. <h3>Data Example</h3>
  17. <p class="oe_mt32">
  18. <pre>
  19. [{"values": [
  20. {"value": 584.0, "label": "Anteriores"},
  21. {""value": 739.73, "label": "29 feb-6 mar"},
  22. {"value": 506.12, "label": "Esta semana"},
  23. {"value": 233.6, "label": "14-20 mar"},
  24. {"value": 0.0, "label": "21-27 mar"},
  25. {"value": 0.0, "label": "Futuras"}
  26. ], "id": 2}]
  27. </pre>
  28. </p>
  29. </div>
  30. <div class="oe_span6">
  31. <h3>Result</h3>
  32. <div class="oe_demo oe_picture oe_screenshot">
  33. <img src="example.jpg">
  34. </div>
  35. </div>
  36. </div>
  37. </section>