NumberAxis numberaxis = (NumberAxis)xyplot.getDomainAxis();
numberaxis.setUpperMargin(0.12D);
numberaxis.setStandardTickUnits(NumberAxis.createIntegerTickUnits());
NumberAxis numberaxis1 = (NumberAxis)xyplot.getRangeAxis();
numberaxis1.setAutoRangeIncludesZero(false);
XYTextAnnotation xytextannotation = null;
Font font = new Font("SansSerif", 0, 9);
xytextannotation = new XYTextAnnotation("3rd", 36.5D, 11.76D);
xytextannotation.setFont(font);
xytextannotation.setTextAnchor(TextAnchor.HALF_ASCENT_LEFT);
xyplot.addAnnotation(xytextannotation);
xytextannotation = new XYTextAnnotation("5th", 36.5D, 12.039999999999999D);
xytextannotation.setFont(font);
xytextannotation.setTextAnchor(TextAnchor.HALF_ASCENT_LEFT);
xyplot.addAnnotation(xytextannotation);
xytextannotation = new XYTextAnnotation("10th", 36.5D, 12.493D);
xytextannotation.setFont(font);
xytextannotation.setTextAnchor(TextAnchor.HALF_ASCENT_LEFT);
xyplot.addAnnotation(xytextannotation);
xytextannotation = new XYTextAnnotation("25th", 36.5D, 13.313000000000001D);
xytextannotation.setFont(font);
xytextannotation.setTextAnchor(TextAnchor.HALF_ASCENT_LEFT);
xyplot.addAnnotation(xytextannotation);
xytextannotation = new XYTextAnnotation("50th", 36.5D, 14.33D);
xytextannotation.setFont(font);
xytextannotation.setTextAnchor(TextAnchor.HALF_ASCENT_LEFT);
xyplot.addAnnotation(xytextannotation);
xytextannotation = new XYTextAnnotation("75th", 36.5D, 15.478D);
xytextannotation.setFont(font);
xytextannotation.setTextAnchor(TextAnchor.HALF_ASCENT_LEFT);
xyplot.addAnnotation(xytextannotation);
xytextannotation = new XYTextAnnotation("90th", 36.5D, 16.641999999999999D);
xytextannotation.setFont(font);
xytextannotation.setTextAnchor(TextAnchor.HALF_ASCENT_LEFT);
xyplot.addAnnotation(xytextannotation);
xytextannotation = new XYTextAnnotation("95th", 36.5D, 17.408000000000001D);
xytextannotation.setFont(font);
xytextannotation.setTextAnchor(TextAnchor.HALF_ASCENT_LEFT);
xyplot.addAnnotation(xytextannotation);
xytextannotation = new XYTextAnnotation("97th", 36.5D, 17.936D);
xytextannotation.setFont(font);
xytextannotation.setTextAnchor(TextAnchor.HALF_ASCENT_LEFT);
xyplot.addAnnotation(xytextannotation);
ChartUtilities.applyCurrentTheme(jfreechart);
return jfreechart;
}