Row titles compressed and wrapping

Row titles wrap as the simulation progresses and become almost unreadable - can the width of the title be set to a fixed length?

Hi Bruce,

You can add custom CSS styling to the page to set a wide fixed width for the first column. Add this between <head> and </head> in the HTML page.

<style>
  .f-financial-table th:first-child {
      width: 400px;
  }
</style>

Best, WILL