Advertisement
Guest User

Untitled

a guest
Apr 19th, 2015
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <link rel="import" href="../smoothie-chart/smoothie-chart.html">
  2.  
  3. <polymer-element name="my-element">
  4.  
  5. <template>
  6. <style>
  7. :host {
  8. position: absolute;
  9. width: 100%;
  10. height: 100%;
  11. box-sizing: border-box;
  12. }
  13. #smoothie_chart {
  14. left: 390px;
  15. top: 210px;
  16. position: absolute;
  17. width: 500px;
  18. height: 230px;
  19. }
  20. </style>
  21. <smoothie-chart id="smoothie_chart"></smoothie-chart>
  22. </template>
  23.  
  24. <script>
  25.  
  26. Polymer({
  27.  
  28. });
  29.  
  30. </script>
  31.  
  32. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement