How to increase the table rows of a Power Chart in Perspective?

Hello,

I have a Power Chart here and by default the table below with the different pens show 3 rows and then you have to scroll down to see the remaining pens. I only have 8 pens so i'd prefer to have 8 rows that show them all so that the user does not have to scroll down.

Is there a component on the power chart that lets you modify the row count of the table?

I had the same issue and couldn't find that option as a built-in feature so I came up with a workaround. I enabled stylesheet.css and added the following CSS to display all seven of the pens I wanted to appear without scrolling:

/*	Force pen tray to show all pens without resizing	*/
.ia_powerChartComponent__penDataDisplay{
    max-height: 290px;
}

For eight pens you could probably start by setting your max-height to 330px and adjust from there until it appears how you want.

2 Likes