Might this be somewhat you want? It is just a point, bar, contour, box plot overlaid chart, with some color and transparency changes.
I am using the Semiconductor Capability data table from the SAMPLE_DATA
and once I made the graph, I went under the red triangle, and selected Script==>Save Script to Script Window
Graph Builder(
Variables( X( :SITE ), Y( :NPN1 ), Color( :SITE ) ),
Elements(
Bar( X, Y, Legend( 6 ) ),
Points( X, Y, Legend( 5 ) ),
Contour( X, Y, Legend( 7 ) ),
Box Plot( X, Y, Legend( 8 ) )
),
SendToReport(
Dispatch(
{},
"NPN1",
ScaleBox,
{Format( "Best", 10 ), Min( 106.636817992503 ), Max( 123.476204908244 ),
Inc( 2 ), Minor Ticks( 1 )}
),
Dispatch(
{},
"400",
ScaleBox,
{Legend Model(
6,
Properties( 0, {Fill Color( 69 )} ),
Properties( 1, {Fill Color( 67 )} ),
Properties( 2, {Fill Color( 44 )} ),
Properties( 3, {Fill Color( 40 )} ),
Properties( 4, {Fill Color( 70 )} )
)}
),
Dispatch(
{},
"Graph Builder",
FrameBox,
{DispatchSeg(
Box Plot Seg( "Box Plot (1)" ),
{Box Type( "Outlier" ), Fences( 0 ), Line Width( 3 ),
Fill Color( "Black" ), Transparency( 0.25 )}
), DispatchSeg( Marker Seg( "Outliers (1)" ), {Color( "White" )} ),
DispatchSeg(
Box Plot Seg( "Box Plot (2)" ),
{Box Type( "Outlier" ), Fences( 0 ), Fill Color( "Black" ),
Transparency( 0.25 )}
), DispatchSeg(
Box Plot Seg( "Box Plot (3)" ),
{Box Type( "Outlier" ), Fences( 0 ), Fill Color( "Black" ),
Transparency( 0.25 )}
), DispatchSeg(
Box Plot Seg( "Box Plot (4)" ),
{Box Type( "Outlier" ), Fences( 0 ), Fill Color( "Black" ),
Transparency( 0.25 )}
), DispatchSeg(
Box Plot Seg( "Box Plot (5)" ),
{Box Type( "Outlier" ), Fences( 0 ), Fill Color( "Black" ),
Transparency( 0.25 )}
)}
)
)
);
Jim