=load( local!case: true, a!dashboardLayout( firstColumnContents: { a!radioButtonField( label: "Case", choiceLabels: {"A", "B"}, choiceValues: {true, false}, value: local!case, saveInto: local!case ), a!columnChartField( label: "Some chart", /*instructions: "Case: ",*/ /* Series keep their order */ instructions: "Case: " & if(local!case, "A", "B"), /* Series reverse their order*/ categories: {"Some category"}, series: { a!chartSeries( label: "One", data: {1}, color: "GREEN" ), a!chartSeries( label: "Two", data: {4}, color: "ORANGE" ), a!chartSeries( label: "Three", data: {7}, color: "RED" ) }, stacking: "NORMAL" ) } ) )