0

I've got several different types of charts in my application, and the TextAnnotations edit perfectly on 2/3 of them, but I've got one type of chart that is defying me.

While I can add, and move the annotations on this chart just like the others, and I get the IBeam cursor as if its about to let me edit, select text, it merely never does.

Any ideas on things I could look at would be greatly appreciated.

  • Hi there, SO question asking guidelines require as much info as possible to understand or reproduce a problem. Please see https://stackoverflow.com/help/how-to-ask and update / edit your question + comment here when done – Dr. Andrew Burnett-Thompson May 11 '18 at 17:35
  • 1
    Does your underlying ViewModel property has a public setter? – Roger Leblanc May 13 '18 at 02:47
  • 1
    Roger, I assume you are talking about the Text property? Annotations on both Surfaces share the same ViewModel and the setters are all public. I only bind to the X1, Y1 and Text properties at present as the annotations are added to the Chart ViewModel in Code. – R Payne May 14 '18 at 13:10

1 Answers1

0

According to the SciChart Documentation for TextAnnotation:

The TextAnnotation type draws a TextBlock with optional background at X1,Y1. The text is editable when the use clicks on the TextBlock and TextAnnotation.IsEditable = true.

If your text annotations are declared in the same way, do not have differing templates or styles, and all have IsEditable true, then it sounds like they should be editable and you have discovered a bug.

Try the latest build from SciChart's NuGet feed. If the bug still occurs I would suggest sending code and steps to reproduce to their Tech Support.

Dr. Andrew Burnett-Thompson
  • 20,980
  • 8
  • 88
  • 178