12345678910111213141516171819202122232425262728293031323334353637 |
- SCD MM_Rendered_Plot{
- SimpleAttribute String {}
- SimpleAttribute Boolean {}
- SimpleAttribute Float {}
- Class Plot {
- title : String
- legend : Boolean
- }
- Class Dataset {
- legend : String
- color : String
- linestyle : String
- }
- Class Datapoint {
- x : Float
- y : Float
- }
- Class Axis {
- name : String
- unit : String
- lim_low? : Float
- lim_high? : Float
- }
- Class XAxis : Axis {}
- Class YAxis : Axis {}
- Association x (Plot, XAxis) {}
- Association y (Plot, YAxis) {}
- Association data (Plot, Dataset) {}
- Association point (Dataset, Datapoint) {}
- }
|