struct EE::UI::Charts::UIChart::Layout

struct Layout {
    // structs

    struct RightAxis;

    // fields

    Rectf plot;
    SmallVector<double, 16> xTicks;
    SmallVector<double, 16> yTicks;
    std::vector<String> xLabels;
    std::vector<String> yLabels;
    std::vector<float> xLabelWidths;
    std::vector<float> yLabelWidths;
    float xAxisLabelWidth { 0.f };
    std::vector<RightAxis> rightAxes;
    Uint64 revision { 0 };
};