This document (including, without limitation, any product roadmap or statement of direction data) illustrates the planned testing, release and availability dates for Spotfire products and services. It is for informational purposes only and its contents are subject to change without notice. Planning to implement - generally 6-12 months out. Likely to Implement - generally means 12-18 months out.
Copyright © 2014-2023 Cloud Software Group, Inc. All Rights Reserved.
Cloud Software Group, Inc. ("Company") follows the EU Standard Contractual Clauses as per the Company's Data Processing Agreement.
Terms of Use |
Privacy Policy |
Trademarks |
Patents |
Contact Us
it looks like the column headers also cannot be wordwrapped. Can Tibco take the wordwrap functionality of the CrossTable and add it as an option, to the GraphicalTable?
Currently you need to wrap the text yourself. Create a calculated column and apply the expression below. In this example the text in the existing column YOUR_COLUMN wraps after maximum 50 characters (but not within a word) and does this as often as needed. In case there are already line breaks contained in the text, they are removed first with the substitute method to turn them into white spaces.
RXReplace(Substitute(Trim([YOUR_COLUMN]),"\r\n"," "),"(.{1,50})( +|$\n?)|(.{1,50})","$1\r\n","g")