public boolean doAction(double x, double y, Object o, String action, CompoundEdit undoableEdit) {
if (action.equals(resources.getStringValue("information"))){
// Display plot information
PlotInformationDialog di = new TimePlotStatisticsDialog(this);
JDialog jd = di.createDialog(JSynoptic.gui.getOwner());
if (jd!=null) jd.show();
return true;
} else {
return super.doAction(x,y,o,action, undoableEdit);