MM_rendered_plot.mvc 681 B

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