Count Cards
Configuring count cards in Konstrukt, the back office UI builder for Umbraco.
Count cards allow you to define cards directly against the collection configuration, providing a basic where clause to use in a count SQL statement. These work perfectly for simple data visualizations based on simple counts of entities in a collection.
If you need to do more than a simple count, you'll want to take a look at the custom cards documentation.
Adding a count card to a collection
Cards allow you to display simple summaries of key information that may be useful to the editor.
AddCard(string name, Lambda whereClauseExpression, Lambda cardConfig = null) : KonstruktCardConfigBuilder
Adds a card with the given name and where clause filter expression. Expression must be a boolean
expression.
AddCard(string name, string icon, Lambda whereClauseExpression, Lambda cardConfig = null) : KonstruktCardConfigBuilder
Adds a card with the given name + icon and where clause filter expression. Expression must be a boolean
expression.
Change the color of a count card
SetColor(string color) : KonstruktCardConfigBuilder
Sets the color of the card.
Add a suffix to a count value
SetSuffix(string suffix) : KonstruktCardConfigBuilder
Sets the suffix of the card value.
Formatting the value of a count
SetFormat(Lambda formatExpression) : KonstruktCardConfigBuilder
Sets the format expression for the card.
Last updated