I am trying to use distribution to create histograms By(: DeviceID), However when I apply the fill color only the last graph in the By statement gets changed to light blue. No matter what I do, only the last graph changes color. I just want the graphs to not be green.
Options that work for me:
1) color histograms by device ID
2) color histograms both to be blue
WaferRgPastMonth << Distribution(
Stack( 1 ),
Automatic Recalc( 1 ),
Continuous Distribution( Column( :Rg ), Horizontal Layout( 1 ), Vertical( 0 ) ),
By( :DeviceID ),
Local Data Filter( Close Outline( 1 ), Add Filter( columns( :FailDie ), Where( :FailDie == 0 ) ) ),
SendToReport(
Dispatch( {"Rg"}, "Distrib Outlier Box", FrameBox, {Frame Size( 350, 46 )} ),
Dispatch(
{"Rg"},
"Distrib Histogram",
FrameBox,
{Frame Size( 277, 110 ), DispatchSeg( Hist Seg( 1 ), {Line Color( {56, 82, 112} ), Fill Color( "Light Blue" )} )}
)
)
);