| 39 | static const double kDefaultLabelPaddingEM = 0.2; |
| 40 | |
| 41 | struct PlotRectanglesConfig { |
| 42 | std::vector<Measure> x; |
| 43 | std::vector<Measure> y; |
| 44 | ScaleConfig scale_x; |
| 45 | ScaleConfig scale_y; |
| 46 | std::vector<Measure> size_x; |
| 47 | std::vector<Measure> size_y; |
| 48 | Measure size_x_default; |
| 49 | Measure size_y_default; |
| 50 | Color color; |
| 51 | std::vector<Color> colors; |
| 52 | Measure size; |
| 53 | }; |
| 54 | |
| 55 | ReturnCode rectangles_draw( |
| 56 | Context* ctx, |
nothing calls this directly
no outgoing calls
no test coverage detected