Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
themeEclipse
firstline1
linenumberstrue
public class BarChartObjectComboChartObject {


    	private String Y_Achseyvalue;
    	private String kategoriecategory;
    	private Integer X_Achsexvalue;

    
    	public String getY_AchsegetYvalue() {
        		return this.Y_Achseyvalue;
    	}

   	public void setY_AchsesetYvalue(final String y_Achseyvalue) {
        		this.Y_Achseyvalue = y_Achseyvalue;
    	}

   	public String getKategoriegetCategory() {
        		return this.kategoriecategory;
    	}

   	public void setKategoriesetCategory(final String kategoriecategory) {
        		this.kategoriecategory = kategoriecategory;
    	}

   	public Integer getX_AchsegetXvalue() {
        		return this.X_Achsexvalue;
    	}

   	public void setX_AchsesetXvalue(final Integer x_Achsexvalue) {
        		this.X_Achsexvalue = x_Achsexvalue;
    	}
}

Anchor
Fill
Fill
Beispiel füllen der Daten:

...