Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
sayadutt
Creator
Creator

Help on Grid Chart

Hi Team,

When I am using the Grid chart, below is what I am getting which needs few modifications:

1) Y-axis (time) should be in integers only (no decimals)

2) the size of all doubles should be same

3) color of each doubles to be same (if possible)

Untitled.png

Below is something which I am looking for:

Untitled.png

1 Solution

Accepted Solutions
15 Replies
vishsaggi
Champion III
Champion III

Can you share a sample app you work on ?

For your timetaken try using this?

= Num(TimeTaken/60, '#0')

adamdavi3s
Master
Master

As above for your time taken.

For the size, simply set the expression to =1

For the bubble colour, change the background colour of the expression

Capture.PNG

sayadutt
Creator
Creator
Author

Hi Nagaraju,

when I use = Num(TimeTaken/60, '#0'), i see below:

i just want to hide the multiple occureance of numbers in y-axis.

Below shows 5 occurrence of 1, 7 occurrence of 2 etc.


I need 1 each.


Untitled.png

sayadutt
Creator
Creator
Author

Thanks Adam.

However

when I use = Num(TimeTaken/60, '#0'), i see below:

i just want to hide the multiple occureance of numbers in y-axis.

Below shows 5 occurrence of 1, 7 occurrence of 2 etc.


I need 1 each.

Untitled.png

vishsaggi
Champion III
Champion III

Can you share a sample app to work on?

sayadutt
Creator
Creator
Author

Hi,

I have attached 1 sample in the original post

antoniotiman
Master III
Master III

Hi,

try

Floor([Time Taken]/60)

Regards,

Antonio

vishsaggi
Champion III
Champion III

Can you try what Antonio suggested and let us know if that i what you are looking for ?

OR

Using Antonio's suggestion try this?

= Floor(Aggr(Sum([Time Taken])/60, [Start Date Only]))

sayadutt
Creator
Creator
Author

Unfortunately, this time all bubbles are at integer axis.

For example if the value is 1.5, i want the bubble to be in between 1 and 2. But your solution will put that at either 1 or 2, but not in between.

See output of above:

Untitled.png