<%// ChangeBarAppearance:%>


<%
// The WaterfallChartModel interface has numerous methods to control the chart
// appearance. This sample uses some of those methods to change bar width, the
// space between bars, and to set bar colors so that they represent response values
%>
<%@page import="com.sas.servlet.tbeans.graphics.html.WaterfallChart,
        com.sas.graphics.components.waterfallchart.WaterfallChartTableDataModel,
        com.sas.graphics.components.AnalysisVariable,
        com.sas.graphics.components.ClassificationVariable,
        com.sas.graphics.components.GraphConstants,
        com.sas.measures.BaseLength,
        java.awt.Color,
        javax.swing.table.DefaultTableModel"
%>
<%
  // Create a WaterfallChart and a data source 
    WaterfallChart waterfallChart=new WaterfallChart();
%>

   <%@ include file="TransactionData.jsp" %>

<%
  // Create a data model and attach the data source
     WaterfallChartTableDataModel dataModel=
       new WaterfallChartTableDataModel();
     dataModel.setModel(dataTable);

  // Assign the variable roles and sort category values in descending order
     dataModel.setCategoryVariable(
       new ClassificationVariable("Id", GraphConstants.SORT_DESCENDING));

  // Assign the Response variable role and apply the NLMNLUSD format so
  // that Transaction amounts in the output are displayed in an
  // internationalized representation of US dollars.
     dataModel.setResponseVariable(
       new AnalysisVariable("TransactionQ1", "nlmnlusd"));

  // Call the data model's setCategorySortVariable() method
  // to sort bars according to the values of the response variable
     dataModel.setCategorySortVariable(dataModel.getResponseVariable());

  // Set the bar width and the space between bars
     waterfallChart.getGraphModel().setBarWidth(new BaseLength(7,"px"));
     waterfallChart.getGraphModel().setBarWidthSpace(new BaseLength(5,"px"));

  // Style bars according to response values, and set a three-color palette
     dataModel.setStyleByVariable(dataModel.getResponseVariable());
     waterfallChart.getGraphModel().setColorPaletteType(GraphConstants.COLOR_PALETTE_THREE_COLOR_CONTINUOUS);

  // Assign data-element colors so that palette colors are assigned to the bars
     waterfallChart.getGraphModel().getDataElementStyles().setContinuousFillThreeColorStartColor(Color.red);
     waterfallChart.getGraphModel().getDataElementStyles().setContinuousFillThreeColorNeutralColor(Color.black);
     waterfallChart.getGraphModel().getDataElementStyles().setContinuousFillThreeColorEndColor(Color.green);

  // Assign the data model to the WaterfallChart
     waterfallChart.setDataModel(dataModel);

  // Set a graph title
     waterfallChart.getTitle1().setText("BIP Waterfall Chart");

  // Set HTTP-specific response and request functionality
     waterfallChart.setResponse(response);
     waterfallChart.setRequest(request);

  // Set a graph size and write the chart to the display
     waterfallChart.setWidth(600);
     waterfallChart.setHeight(450);
     waterfallChart.write(out);
%>