06-09-2014 09:56 AM
Is there a possible way to rotate the header of the table control by 90° same like changing the label of any control or indicator programmatically? Likewise rotating the headers in excel.
06-09-2014 10:29 AM
Unfortunately, no.
Mike...
06-09-2014 12:33 PM
There is no native way to do this, but depending on how much time you want to spend you could probably do this with a combination of an array of picture controls, which move with the table, and lay over top the header to look like it is part of the header.
Unofficial Forum Rules and Guidelines
Get going with G! - LabVIEW Wiki.
17 Part Blog on Automotive CAN bus. - Hooovahh - LabVIEW Overlord
06-09-2014 12:56 PM
Something like that?
Those are string controls resized with the background set to transparent and the caption shown rotated and placed over the control body floated over the column headder row.
Not super elegant, but if you need to go there it can be done
06-09-2014 01:20 PM
Soon this (and much more) will be possible
https://twitter.com/rajsite/status/474814384401707008
06-09-2014 02:50 PM - edited 06-09-2014 02:51 PM
@ Jeff·Þ·Bohrer : Yes this what I need. Would you please upload the example
06-09-2014 03:33 PM
Here's an example of what I was thinking. Of course with an array of picture controls that means all columns would need to be the same width. Of course if you don't have horizontal scrolling you could get away with fixed images.
Now that I think about it what is wrong with just some string comments on the front panel of the column text doesn't change, and no horizontal scrolling.?
Unofficial Forum Rules and Guidelines
Get going with G! - LabVIEW Wiki.
17 Part Blog on Automotive CAN bus. - Hooovahh - LabVIEW Overlord
06-09-2014 04:06 PM
@Hooovahh : Yes, exactly this is my next question
06-09-2014 05:39 PM
@Hooovahh wrote:
Here's an example of what I was thinking. Of course with an array of picture controls that means all columns would need to be the same width. Of course if you don't have horizontal scrolling you could get away with fixed images.
Now that I think about it what is wrong with just some string comments on the front panel of the column text doesn't change, and no horizontal scrolling.?
You can't really get a ref to the comments and set them dynamically or change their possition programatically But if the headders are static that is a relativly simple implementation. Right about then the spec will change to make them dynamic
06-10-2014 01:28 AM - edited 06-10-2014 01:31 AM
@ Jeff·Þ·Bohrer : I have 4 different cases where the headers vary. As you said I make this static for each case. I would even disable the scrolling bar. What do you say?