Skip to Main Content
Spotfire Ideas Portal
Status Future Consideration
Product Spotfire
Categories Custom Expressions
Created by Guest
Created on Jul 10, 2019

A container for text area

I have a dynamic label and a calculated value whose values keep on changing based on my selection. The length of the label and the value dynamically change and they often end up out of position. Is there any way to link both them together so if position of my label changes then the value of my calculated column also changes in sync. If there  could be container in which both of them could be linked together.
  • Attach files
  • Guest
    Reply
    |
    Nov 17, 2021

    You can try to format as HTML and use a table construct and place the controls for the labels or fields as elements within the html table.
    This way they will remain in the same location in spite of size.

    <table>

    <tr>

    <th>Month</th>

    <th>Savings</th>

    </tr>

    <tr>

    <td><SpotfireControl id="xxx" /></td>

    <td><SpotfireControl id="xxx" /></td>

    </tr>

    </table>