| 36 | static const double kDefaultBarWidthPT = 6; |
| 37 | |
| 38 | struct ErrorbarsElement { |
| 39 | std::vector<Measure> x; |
| 40 | std::vector<Measure> x_low; |
| 41 | std::vector<Measure> x_high; |
| 42 | std::vector<Measure> y; |
| 43 | std::vector<Measure> y_low; |
| 44 | std::vector<Measure> y_high; |
| 45 | ScaleConfig scale_x; |
| 46 | ScaleConfig scale_y; |
| 47 | Measure bar_width; |
| 48 | std::vector<Color> colors; |
| 49 | Color stroke_color; |
| 50 | Measure stroke_width; |
| 51 | }; |
| 52 | |
| 53 | ReturnCode errorbars_draw_bar( |
| 54 | Context* ctx, |
nothing calls this directly
no outgoing calls
no test coverage detected