I have placed many children inside my card list. But the card list only shows 12 items. I want to change this value according to my definition. How can I do that?
<IxCardList
label="Scroll Layout- Global Attributes"
showAllCount={Object.keys(globalAttributes).length}
listStyle={"scroll"}
// suppress-overflow-handling = {true}
>
{Object.keys(globalAttributes).map((attr) => (
<IxActionCard
icon="info-filled"
// style={{width : '500px'}}
heading={attr}
aria-describedby={`tooltip-${attr}`}
subheading={
globalAttributes[
attr as keyof typeof globalAttributes
].toString().length > 25
? `${globalAttributes[attr as keyof typeof globalAttributes]
.toString()
.substring(0, 25)}` + "..."
: `${
globalAttributes[attr as keyof typeof globalAttributes]
}`
}
variant="info"
onClick={console.log}
></IxActionCard>
))}
</IxCardList>