How to remove chiral flag?

User 873a9ae9d0

28-06-2016 07:46:07

Hi,


 


I am looking for a way to remove the chiral flag from a molecule, using the ChemAxon API.


Is there such a function?


Any hint is appreciated.


Best regards


Hans-Juergen

ChemAxon 775b29fd6e

01-07-2016 08:59:39

Dear Hans-Juergen,


in the following example I could turn off chirality labels.


final JFrame frame = new JFrame();
final MSketchPane msketchPane = new MSketchPane();

final UserSettings userSettings = msketchPane.getUserSettings();
userSettings.setChiralitySupport("off");
userSettings.save("");

frame.setSize(500, 400);
frame.add(msketchPane);
frame.setVisible(true);

You can find the possible display parameter list here.


Sincerely, Zoltan.