Cell width in Deepsee
Is there anything in deepsee where i can increase the cell width?
| Column1 | Column2 | Column3 |
Sunday | 100 | 200 | 300 |
Monday | 100 | 200 | 300 |
Tueaday | 200 | 300 | 400 |
By Default, based on the content, it calculates the cell width automatically.
From the above table i want to increase the width of weekdays cell particularly. Like below.
| Column1 | Column2 | Column3 |
Sunday | 100 | 200 | 300 |
Monday | 100 | 200 | 300 |
Tueaday | 200 | 300 | 400 |
I have written MDX Query in Kpi.
I tried with %Label with their arguments for cell style. It doesn't work for me.
Please give me some suggestions.
%Label is the way to go.
Its fifth argument is a CSS applied to a cell. So the following MDX:
Would be displayed like this in analyzer:
And its sixth argument is a CSS applied to the cell header:
Alternatively you can use DeepSeeWeb to display dashboards with pivots. In there cells width can be easily modified.
Great.
This is working fine in both pixels and percentage in 2016.1 version.
But, In 2014.1 version width calculates only in pixels(Not in percentage).
Thanks