I'm trying to change a text object in my SVG graphic with ng-bind
<div class="ma-designer-root" id="5ecafcd8-a3b4-4ab9-968a-0507e5d53734" style="width: 1366px; height: 768px; position: relative;">
<ma-svg ng-include="'/rest/v2/file-stores/default/DownstairsFloorplan.svg'">
<ma-get-point-value point-xid="DP_5ca78a5a-a87a-451e-a987-4f1bd00459d0" point="point1"></ma-get-point-value>
<div ma-selector="#text1011" ng-bind="point1.value"></div>
</div>
When I enter this my default text disappears but the point value does not appear.
I've tried using "point1.renderedValue"
and various combinations of values and {{'s with the same result.
If I enter a string into the ng-bind (such as ng-bind="'72.10'") it works fine, so I believe the issue is that I'm not referencing the point value from <ma-get-point-value> correctly.
What am I doing wrong?