Jerry:
Thanks! Sorry for the delayed reply, was busy with meetings last week. I took your idea of using a treemap and made one change since V2 values are text strings of up to 20 characters: I used Color Theme Spectral. This made it really easy for the eyes to compare the rectangles for a given V2 value from one time period to another.
Graph Builder(
Size( 1523, 678 ),
Show Control Panel( 0 ),
Show Legend( 0 ),
Continuous Color Theme( "Spectral" ),
Categorical Color Theme( "Spectral" ),
Variables(
X( :Pareto.Category ),
Y( :Losses ),
Wrap( :Year ),
Color( :Pareto.Category )
),
Elements( Treemap( X, Y, Legend( 4 ), Layout( "Squarify" ) ) ),
SendToReport(
Dispatch( {}, "graph title", TextEditBox, {Set Text( "2010-2017 Losses" )} ),
Dispatch(
{},
"Graph Builder",
FrameBox,
{DispatchSeg( TreeMapSeg( 1 ), Frame Size( 499, 176 ) )}
),
Dispatch(
{},
"Graph Builder",
FrameBox( 2 ),
{DispatchSeg( TreeMapSeg( 1 ), Frame Size( 498, 176 ) )}
),
Dispatch(
{},
"Graph Builder",
FrameBox( 3 ),
{DispatchSeg( TreeMapSeg( 1 ), Frame Size( 499, 176 ) )}
),
Dispatch(
{},
"Graph Builder",
FrameBox( 4 ),
{DispatchSeg( TreeMapSeg( 1 ), Frame Size( 499, 177 ) )}
),
Dispatch(
{},
"Graph Builder",
FrameBox( 5 ),
{DispatchSeg( TreeMapSeg( 1 ), Frame Size( 498, 177 ) )}
),
Dispatch(
{},
"Graph Builder",
FrameBox( 6 ),
{DispatchSeg( TreeMapSeg( 1 ), Frame Size( 499, 177 ) )}
),
Dispatch(
{},
"Graph Builder",
FrameBox( 7 ),
{DispatchSeg( TreeMapSeg( 1 ), Frame Size( 499, 176 ) )}
),
Dispatch(
{},
"Graph Builder",
FrameBox( 8 ),
{DispatchSeg( TreeMapSeg( 1 ), Frame Size( 498, 176 ) )}
)
)
)