Uploaded image for project: 'Struts 2'
  1. Struts 2
  2. WW-2742

Paramters not being set in JFreeChart Plugin

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Major
    • Resolution: Fixed
    • None
    • 2.1.8
    • Other
    • None

    Description

      <action name="ch" class="org.someorg.chart.ChartAction">
      <result name="success" type="chart">
      <param name="width">${width}</param>
      <param name="height">${height}</param>
      </result>
      </action>

      In the above case I am getting an IllegalArgumentException, although I have defined width and height in ChartAction

      public class ChartAction extends ActionSupport
      {

      private static final long serialVersionUID = -4845276888116145855L;

      private Integer width = 200;
      private Integer height = 400;

      public String execute() throws Exception

      { chart = new chart.. return SUCCESS; }

      public Integer getWidth()

      { return width; }

      public void setWidth(Integer width)

      { this.width = width; }

      public Integer getHeight()

      { return height; }

      public void setHeight(Integer height)

      { this.height = height; }

      }

      Attachments

        Activity

          People

            rainerh Rainer Hermanns
            heraksen Herak
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: