Is there a way to dynamically add a composite component to an existing html DOM? For example, if i created a composite called "my-chart", can I do this:
$(document.createElement('my-chart')).appendTo('charts-region')
to add a new "my-chart" to my div element of "charts-region"?
I tried, but it didn't recognize as the composite component I created. It just added HTML of "<my-chart></my-chart>" without really recognizing it.
Jason