Hi, I generated a GroupedStackedBar and I need to display the item labels. I am using the below code to display the item labels [code]ItemLabelPosition position = new ItemLabelPosition(ItemLabelAnchor.CENTER, TextAnchor.CENTER, TextAnchor.CENTER, 0.0); renderer.setPositiveItemLabelPosition(position); position = new ItemLabelPosition(ItemLabelAnchor.OUTSIDE3, TextAnchor.CENTER, TextAnchor.CENTER, 0.0); renderer.setPositiveItemLabelPositionFallback(position); renderer.setBaseItemLabelsVisible(true); /code] But the data is not properly displayed if the series value of bars are two small compared to ...