Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
prma7799
Master III
Master III

dimension list comes from left to right

Hi All,

I have one requirement that I want my dimensions start from left to right

currently it is showing me right to left  .

stat.png

And I don't want that dimension name which is appeared below.

Thanks

13 Replies
Not applicable

This is what i mtrying to say

Capture.PNG

aveeeeeee7en
Specialist III
Specialist III

Hi

You can fix the Length of State Field.

Use Left(StateNameField,4) AS NewStateField

After Reloading the Above Script, it will provide you the proper Symmetry.

This is a workaround.

Hope that helps.

Regards

Av7eN

settu_periasamy
Master III
Master III

Hi,

The display based on your length of dimension value.

e.g.

first you need to find the Maximum length string using the aggregation like this

Assign this to one variable..

vcheck          =Max(aggr(Len(State),State))

Then, in your dimension, you need to do the calculated dimension instead of your state dimension.

like this

=State&Repeat(chr(126),$(vCheck)-Len(State))

Note: Chr(126) is a repeated character till the maximum length.

then your chart looks like this

Capture.11JPG.JPG

sasiparupudi1
Master III
Master III

change your dimension to a calculated dimension with trim(dimension)