TextNote.ByLocation not displaying text in Drafting View

Hi everyone. I’m working on a Revit 2024 project where I need to generate a single-line electrical diagram from a circuit schedule.

In Dynamo, I’ve successfully:

  • Filtered circuits by panel
  • Retrieved parameters like circuit number, length, voltage drop, current, etc.
  • Grouped these values per circuit into sublists
  • Created insertion points in a drafting view

The issue is that although everything is wired correctly into the TextNote.ByLocation node, the text notes do not appear in the view.

I’ve tried using List.Map with a code block: x => String.Join("\n", x) to combine the data per circuit, and I’ve also verified:

  • That the view is a Drafting View
  • That the TextNoteType is valid and readable
  • That the point coordinates are within the visible area

Has anyone faced this issue? What else could be preventing the text notes from showing?

Thanks in advance for any help.



Hi @gus try feed in an alignment

2 Likes

Thank you very much , it was something simple that I didn’t notice.

1 Like