Skip to content

Advanced Configuration

Sub Views

Subviews in Infoveave helps you to improve the granularity on your data visualization with customized data visualizations. Subviews allows you to replace the widgets tooltip with a different widget or with a set of widgets bringing up detailed insights on your data in an enhanced manner. The widgets added to the Subviews supports data filtering and drill downs. 

Create Sub View

Infoveave Expressions functions let you set up special rules for widgets in your Infoboard. This helps you make dynamic and personalized data visuals based on various applied conditions.

Sub View Designer Here is a step-by-step guide on how to configure a Sub Views for Infoboards

  1. To configure an Sub View in Infoveave, navigate to the desired Infoboard under Insights. In the Infoboards section, locate the and access the Infoboard for which you want to configure expressions.
  2. Click on the Setup tab associated with the selected Infoboard under the Customization panel.
  3. Within the Setup panel, click on the View Options feature.
  4. Click on +Add Sub View. A sub view will be added under the name tag Sub View 1. Add Sub View
  5. Click on the Edit icon next to it.This action redirects you to the subview designer interface.
  6. Set the width and the height of the sub view designer screen in the customization panel.

Configure Sub View

Drag and Drop Sub View Widget

  1. Drag and drop widgets onto the Sub View Designer.
  2. Click on the desired widget to configure it.
  3. Access the Configuration tab to set Datasource, measures, and dimensions.
  4. Configure common fields like Datasources, Value, Axis, Group, and Date.
  5. Format measures and dimensions using the gear icon (if required).
  6. Add Drill Down filters for in-depth analysis (if required).
  7. Set fixed filters for specific dimension and measure conditions (if required).

Customize Sub View

Customize Sub View

  1. Select the widget on the designer canvas for customization.
  2. Navigate to the customize option and explore the customization options for styling, labeling, and interactivity.
  3. Edit labels for Axis Name, Value, or Label.
  4. Adjust font size, style, and alignment.
  5. Save changes to the widget’s appearance and behavior.
  6. Click on Save and navigate back to the Infoboard Designer using the Back Arrow on the Layers panel.

Link Sub VIew

  1. Identify and select the widget on the Infoboard to which you want to link the Sub View.
  2. Navigate to the customization panel, select Customize option.
  3. Find the Tooltips section within the customization options.
  4. Locate the Behavior setting and set the default option as Sub View.
  5. Navigate to the View setting and pick the desired Sub View that you have configured.A list of preconfigured Sub Views will be available under the View option.
  6. Click on Save to save the linked Sub View. Sub View
  7. Mouse over the previously selected widget to view the Sub View.

Conditional Expressions

Infoveave board expressions are powerful tools that allow you to create dynamic and customized data visualizations by setting conditions over widget measures and dimension values. These expressions enable you to control the behavior and appearance of other widgets in your Infoboard based on specific conditions, making dashboards more interactive and insightful.

Infoveave Expressions are special rules that allows you to create dynamic and customized data visualizations by setting conditions over widget measures and dimension values. These expressions enable you to control the behavior and appearance of other widgets in your Infoboard based on specific conditions, making dashboards more interactive and insightful.

Expression Syntax

Function(<Reference>,<Condition>) = Conditional Value

Where

  • <Reference> is replaced by 'Widget Name'[Measure Name] and <Condition> is replaced by [Dimension Name] ="Dimension Value".
  • Function Functions are like commands that you use in data analysis to perform specific activities.
  • 'Widget Name' is enclosed within single apostrophes (`) to indicate it’s a string literal, typically representing a widget name.
  • Measure Name is enclosed in square brackets ([]) to represent a measure name.
  • Dimension Name is enclosed in square brackets ([]) to represent a dimension name.
  • "Dimension Value" is enclosed within double quotes (" ") to represent a specific dimension value.
  • The mathematical operator in the expression establishes the condition.
    • The operator used here is only for demonstration purposes.
  • Conditional Value specifies the value that must be met for the condition to hold true.

Configure Expressions

To configure an Expression in Infoveave, navigate to the desired Infoboard under Insights.

  1. Click on the Edit icon, to start configuring the board expression.
  2. Click on the Setup tab associated with the selected Infoboard under the Customization panel.
  3. Within the Setup panel, click on the Infoboard option.
  4. Click on +Configure Expression.A pop-up window or Expression editor will appear. Interactive dashboards with Infoveave Expressions feature
  5. All the configured Expressions, if any will be present in the Expression editor.
  6. Click on Add Rule to configure a new Expression.
  7. Write your expression following the appropriate syntax. This includes defining measures, dimensions, filters, calculations, and conditions.Utilize functions and operators available within Infoveave to create your desired expression. Configure Expression
  8. After defining the expression, configure the Action you want to trigger when the condition is met.Actions can include changing widget properties, displaying messages, or triggering other widget actions.
  9. To add another Action, click on Add Action icon.You can add up to two actions for an Expression.
  10. Use the radio button to determine the widget’s Visibility.You can choose between options like Show or Hide based on the condition set within the expression.
  11. Assign the action to a specific Option Group. Common option groups include General, Title, and Image.
    • In the General option group, you might find options related to the widget’s overall appearance, such as background color, borders, and shadows.
    • In the Title option group, you’ll find options that pertain to the widget’s title, including text, font size, and alignment.
    • In the Image option group, options are related to displaying images within the widget, covering aspects like image selection, positioning, and size.
  12. Depending on the chosen option group, customization the action under Options. Here’s a breakdown of some common action options
    • General

      • Background Color Determine the widget’s background color.
      • Border Configure border settings, encompassing color, width, and style.
      • Border Radius Specify the curvature of the widget’s corners.
      • Shadow Apply shadow effects to enhance visual appeal.
      • Theme Implement predefined themes to alter the widget’s overall appearance.
      • Decal Add decorative elements or icons for visual enhancement.
      • Show Null Values Decide whether to display null or empty data values.
    • Title

      • Enabled Toggle the visibility of the widget’s title on or off.
      • Label Set the title’s label or text.
      • Word Wrap Determine whether the title should wrap to the next line when the text exceeds space.
      • Background Color Define the background color of the title.
      • Decoration Apply text decorations such as underlining, bold formatting, or italics.
      • Font Family Choose the font family for the title.
      • Font Size Define the font size for the title text.
      • Font Color Specify the color of the title text.
      • Alignment Set the alignment of the title within the widget.
    • Image

      • Image Select an image to display within the widget.
      • Position Choose the image’s placement within the widget.
      • Repeat Determine whether and how the image should repeat or tile.
      • Size Define the image’s dimensions.
  13. To delete any Expression or Action click on the adjacent Delete icon.
  14. Click OK to save the Expression.

Scenario

Example Scenario Imagine you are overseeing an Order Dashboard in Infoveave, where you want to implement a specific action based on a condition using Expressions. In this scenario, the condition is defined as follows, if the sum of online orders for Brazil is less than 150, a particular action should be triggered.

Expressins

Contextual Information

In the dataset used for the Order Dashboard, we want the set the effect on the Online Orders widget. We use the measure [Orders] and the dimension [Country], specifically targeting the dimension value “Brazil.”

Configure Expression

We can configure the expression as below

SUMX('Online Orders'[Orders], [Country]="Brazil") < 150

In this expression, we sum up the online orders for Brazil and then check if it’s less than 150. This becomes the condition for our action.

Consider that we want to configure an action that changes the background color of another widget called Online Orders. Here’s how you would do it

  • Option Group Select the General option group because you’re customizing the widget’s overall appearance.
  • Option From the General group, choose the Background Color option. This allows you to specify the background color that the widget should change to when the condition is met. Screenshot 2023-11-21 191246

By selecting the General option group and the Background Color option, you’re precisely defining the Action to your expression’s condition.

By these, you can see how to precisely control the behavior and appearance of your widgets, ensuring that your Dashboard provides meaningful insights and communicates important information effectively.

Manage Infoboard Layout

Infoveave allows you to customize the Infoboard layout, to present the widgets in the best possible way. Infoveave provides an easy drag-and-drop option for repositioning and adjusting the size of your widgets. You may arrange the widgets to look well on a desktop, tablet, or smartphone.

To manage the layout of an Infoboard in Infoveave, follow these steps

  1. Navigate to the Insights module.
  2. Select the Infoboard you want to manage the layout for. Edit-Infoboard
  3. Click on the Edit icon to enter the editing mode.
  4. In the editing mode, locate the layout options for the Infoboard in the Layer panel.
  5. Select the layout option that suits your needs. The available options include Desktop, Mobile, and Print (tab).
  6. Make necessary adjustments to ensure optimal presentation and functionality. Layout Panel
  7. Click Save, to save your dashboard views after redesigning the Infoboard layout.