// Rounding problems were causing errors
//Integer myInteger = new Integer ( Math.round(Math.round((float)(temp / this.axisProperties.getYAxisProperties().getSecondScaleRight()))/10)*10 );
//String myString = new String ("");
//myString = myInteger.toString();
String myString = new String (String.valueOf(Math.round(temp / this.axisProperties.getYAxisProperties().getSecondScaleRight())) );
numericTagGroup2.addLabel(myString);
j++;
}
this.yAxis.setAxisLabelsGroupRight(numericTagGroup2);
}
}