MM_rendered_plot.mvc 545 B

1234567891011121314151617181920212223242526272829303132333435
  1. SimpleAttribute String {}
  2. SimpleAttribute Boolean {}
  3. SimpleAttribute Float {}
  4. Class Plot {
  5. title : String
  6. legend : Boolean
  7. }
  8. Class Dataset {
  9. legend : String
  10. color : String
  11. linestyle : String
  12. }
  13. Class Datapoint {
  14. x : Float
  15. y : Float
  16. }
  17. Class Axis {
  18. name : String
  19. unit : String
  20. lim_low? : Float
  21. lim_high? : Float
  22. }
  23. Class XAxis : Axis {}
  24. Class YAxis : Axis {}
  25. Association x (Plot, XAxis) {}
  26. Association y (Plot, YAxis) {}
  27. Association data (Plot, Dataset) {}
  28. Association point (Dataset, Datapoint) {}