defaults.js 422 B

1234567891011121314151617181920212223
  1. var defaults = {
  2. width: 2,
  3. height: 100,
  4. format: "auto",
  5. displayValue: true,
  6. fontOptions: "",
  7. font: "monospace",
  8. text: undefined,
  9. textAlign: "center",
  10. textPosition: "bottom",
  11. textMargin: 2,
  12. fontSize: 20,
  13. background: "#ffffff",
  14. lineColor: "#000000",
  15. margin: 10,
  16. marginTop: undefined,
  17. marginBottom: undefined,
  18. marginLeft: undefined,
  19. marginRight: undefined,
  20. valid: function(){}
  21. };
  22. export default defaults;