Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
immkhan2
Contributor II
Contributor II

Block chart with equal segment heights/widths

Gurus,

I want to create block chart with equal height/width irrespective of the proportional of data. I want to have the block in equal sizes.

Regards

Imran

9 Replies
marcus_sommer

You could try it with an expression like: dual(num(YourExpression, Format), 1)

- Marcus

uacg0009
Partner - Specialist
Partner - Specialist

Hi Khan,

If the below table is also ok for you :

Block chart with equal segment heights widths1.PNG

You can try to use Funnel Chart, the setting is like below:

Block chart with equal segment heights widths2.PNG

Important thing is Tip Width% = 99 and Equal Segment Heights.

You can see my attachment.

Thanks.

Aiolos

immkhan2
Contributor II
Contributor II
Author

This solves my problem but now an additional 0(0) is coming which is not in the data.Zero_Zero_Data.JPG

marcus_sommer

Go to the tab dimensions and enable the surpressing of null-values for your dimension.

- Marcus

immkhan2
Contributor II
Contributor II
Author

I have already marked this checkbox but still it is displaying zero.

Thanks & Regards

marcus_sommer

Then you could try to NULL it either with a condition within your origin expression or by checking their result, maybe with something like this:

dual(num(YourExpression, Format), if(YourExpression= 0, null(), 1))

- Marcus

immkhan2
Contributor II
Contributor II
Author

Now it solves the problem but new problem arise. Now text is not coming complete.

Thanks & Regards

immkhan2
Contributor II
Contributor II
Author

sorry Text is coming Incomplete.

marcus_sommer

It is just meaning that there is not enough space to display the complete text. I don't know if there is any way to force in which way the blocks are displayed in regard to their lengths and heights but I doubt that it will be possible.

So the simplest way would be to size the chart a bit larger so that it fits to lengths of the text. If not you could try to move the expression to the dimension and using then just 1 as expression - here an example what is meant:

=dual('texttttt ' & chr(10) & '(' & aggr(count(RowNo), RowNo) & ')', RowNo)

and in tab presenation only enabling to display the dimension-values resulted in a complete configurable string like:

- Marcus