just discovered that the StackedVerticalBarRenderer3D craps out if this.info is null.
You made this fix in VerticalBarRenderer3D. From the change log:
* 11-Jun-2002 : Added check for (permitted) null info object, bug and fix reported by David
* Basten. Also updated Javadocs. (DG);
Basically the same fix needs to be made to StackedVerticalBarRenderer3D. At the bottom of drawCategoryItem need to wrap info dependent code with if statement:
if (this.info!=null) {
EntityCollection entities = this.info.getEntityCollection();
if (entities!=null) {
String tip="";
if (this.toolTipGenerator!=null) {
tip = this.toolTipGenerator.generateToolTip(data, series, category);
}
CategoryItemEntity entity = new CategoryItemEntity(bar, tip, series, category);
entities.addEntity(entity);
}
}
--jim
small bug in StackedVerticalBarRenderer3D
Re: small bug in StackedVerticalBarRenderer3D
Hi Jim,
Thanks for reporting this. Someone else also mentioned it and the fix was committed to CVS earlier today.
Regards,
DG.
Thanks for reporting this. Someone else also mentioned it and the fix was committed to CVS earlier today.
Regards,
DG.