Hi Julian,
thx for quick reply. I think you got my question and answered it right. Below is my script.
Yield_Graph_by_Test = Yield_table << Graph Builder(
Size( 1145, 894 ),
Automatic Recalc( 0 ),
Variables( X( :Test Name ), Y( :Name( "Fallout(%)" ) ) ),
Elements(
Bar(X,Y,Legend( 2 ),Bar Style( "Side by side" ),Summary Statistic( "Mean" ))),
SendToReport(
Dispatch({},"Graph Builder",OutlineBox,{Set Title( "Fallout(%) Vs. BE Test " )}),
Dispatch({},"Fallout(%)",ScaleBox,{Min( 0 ), Max( 100 ), Inc( 2 ), Minor Ticks( 0 )}),
Dispatch({},"", ScaleBox,{Min( 0 ), Max( 100 ), Inc( 1 ), Minor Ticks( 0 )}),
Dispatch({},"graph title",TextEditBox,{Set Text( "(Fallout(%)) vs. Test Name" )}))
);
so each test name has a color attached to it and i want that to show up in Bar chart so we can identify it clearly. i am plotting fallout% by test as you can see it in script above.
Can you help with the overlay\color part of the script
thanks