Graph Builder(
	Size( 534, 448 ),
	Show Control Panel( 0 ),
	Variables(
		X( :TESTER ),
		Y( :WAFER_YIELD ),
		Y( :WAFER_YIELD ),
		Color( :TESTER )
	),
	Elements(
		Position( 1, 1 ),
		Box Plot( X, Y, Legend( 4 ) ),
		Caption Box( X, Y, Legend( 7 ), Per Factor( 1 ) )
	),
	Elements(
		Position( 1, 2 ),
		Bar(
			X,
			Y,
			Legend( 6 ),
			Summary Statistic( "N" ),
			Label( "Label by Value" ),
			Label Format( "Fixed Dec", 4, 0 )
		)
	),
	SendToReport(
		Dispatch(
			{},
			"TESTER",
			ScaleBox,
			{Min( -1.24658385093168 ), Max( 6.19341614906832 ), Inc( 1 ),
			Minor Ticks( 0 )}
		),
		Dispatch(
			{},
			"graph title",
			TextEditBox,
			{Set Text( "WAFER_YIELD  vs. TESTER" )}
		),
		Dispatch( {}, "Y 1 title", TextEditBox, {Set Text( "WAFER" )} )
	)
);
Hi 
I save my Chart to interative HTML but it shows "this feature is not interative"
My chart include two element, bar chart & box chart.

It seems bug to become not inerative when I set element 2 (Bar chart) Label format
There is no issue to set element1 (box chart) Label format.
Once set element2 label format and save to inerative HTML ,
it will become not able to inerative at browser(chrome).
Any solution? Thank you.
Regards, Chily