zulfikaralib wrote:1. cplot.setValueLabelFormatString(df.toLocalizedPattern());
I think this was the formatter for the item labels. You now control this in the ItemLabelGenerator that is assigned to the renderer.
zulfikaralib wrote:2. setVerticalCategoryLabels(true)
3. setVerticalCategoryLabels(true);
2 and 3 are the same? There's now a lot more control, flexibility and complexity(!) in setting the axis label positions. You need something like:
axis.setCategoryLabelPositions(CategoryLabelPositions.UP_90);
zulfikaralib wrote:4. setPlotShapes(true);
Is this LineAndShapeRenderer? You can use setShapesVisible(true).