Can you tell me what the requirements are to be able to click on and select a custom drawing object in the chart? I ask because, whilst 'allow drag and drop' is enabled, I have one set of drawings drawn via OnRender that I cannot select, and I'm not sure why that stopped working. Other drawings drawn by other indicators on the same chart are selectable, so it is indicator-specific.Can you tell me what the requirements are for this to work?
Thank you in advance for answering my question.
For reference, I am using this to get the first selected object, which usually works fine for me in other code.
selected = chartControl.ChartObjects.First(t => t.IsSelected).GetType();
Comment