Hi,
I have a small correction to be made to
class de.laures.cewolf.cpp.RotatedAxisLabels:
...
Number removeThreshold = (Number) params.get("remove_at");

        CategoryDataset dataset = plot.getCategoryDataset();
        int iCategoryCount = dataset.getRowCount();
<font color="#FF0000">
// The above should be <br>
// int iCategoryCount = plot.getColumnCount(); <br>
// since we are setting X Axis label properties, <br>
// we need to consider columns not rows.<br>
</font>
        if (rotateThreshold != null) {
...

Rich Unger, can you please confirm if this was the intended use of this postprocessor?

Thanks,
Shanmu.