Hi!
 
I want to see only Histogram with Process Capability.
There is a column list "colDlg["ycol"]", but it does not apply to reporting.
Could you give any advice on this?
Also, is it possible to add "groupby" to the histogram?
 
 
 
//Select Test Item for Scatterplot Matrix
colDlg = Column Dialog(
Title( "Test Item Selct" ),
ycol = Col List( "Test Item", Min Col( 1 ) ), //
);
hist = dt << Process Capability(
	Process Variables(eval(colDlg["ycol"])),
	Spec Limits Dialog( "No (skip columns with no spec limits)" ),
	Moving Range Method( Average of Moving Ranges ),
	Individual Detail Reports( 1 ),
	Capability Box Plots( 0 ),
	Overall Sigma Normalized Box Plots( 0 ),
	Overall Sigma Summary Report( 0 ),
	Goal Plot( 0 ),
	Capability Index Plot( 0 ),
	Process Performance Plot( 0 ),
    /* This part is not applied.
	{colDlg["ycol"] << Process Capability Analysis(
		Process Summary( 0 ),
		Overall Sigma Capability( 0 ),
		Nonconformance( 0 ),
		Within Sigma Capability( 0 ),
		Histogram(
			1,
			Show Target( 0 ),
			Show Within Sigma Density( 0 ),
			Show Overall Sigma Density( 0 )
		)
	)}*/
);