You could stack your data, rename columns, create category column. Then you can use Mean as Y, Std as Interval and the category column as Overlay
You can also do it from your data table but I think you will have to add multiple plots into your graph and disable variables correctly
Here is a script for that option, so you can maybe a bit easier get an idea how variables could be disabled
Graph Builder(
Transform Column("Row", Formula(Row())),
Size(545, 741),
Show Control Panel(1),
Variables(
X(:Row),
Y(:"Mean_Double-KO"n),
Y(:Mean_WT, Position(1)),
Interval(:"Std_Double-KO"n),
Interval(:Std_WT)
),
Elements(
Points(X, Y(1), Interval(1), Legend(4)),
Points(X, Y(2), Interval(2), Legend(5)),
Line(X, Y(1), Interval(0), Legend(6), Error Interval("None")),
Line(X, Y(2), Interval(0), Legend(7), Error Interval("None"))
),
Local Data Filter(Add Filter(columns(Row), Where(:Row <= 16))),
SendToReport(Dispatch({}, "Graph Builder", FrameBox, {Reference Line Order(6)}))
);
-Jarmo