HOW TO COMBINE TWO VISUALS INTO A SINGLE INTERFACE

Hello,

I have created a created both the grid and pie chart, how to call these interfaces inside a single interface for display purposes? This is also a part of instructions though its not cleared explained in it.

  Discussion posts and replies are publicly visible

Parents
  • Hi nellorea0001,

    You need to create one main interface for calling the grid and pie chart interfaces.
    You need to follow the layout hierarchy while calling the interfaces.
    ---> Create your grid interface with section, column or any box layout...
    ---> Create your pie chart interface with either section, column or any box layout.
    --> Create one main interface with either form or dashboard and then call those interfaces with rule! followed by interface name.
    for example:

    a!dashboardLayout(
    contents: {
    a!sectionLayout(
    label: "Section",
    contents: {
    rule!first_Interface()
    }
    ),
    a!sectionLayout(
    label: "Section",
    contents: {
    rule!second_Interface()
    }
    )
    }
    )

    or else you may simply call like this....
    {
    rule!first_Interface(),
    rule!second_Interface()
    }

    Hope this helpful

    Regards
    Aswini
Reply
  • Hi nellorea0001,

    You need to create one main interface for calling the grid and pie chart interfaces.
    You need to follow the layout hierarchy while calling the interfaces.
    ---> Create your grid interface with section, column or any box layout...
    ---> Create your pie chart interface with either section, column or any box layout.
    --> Create one main interface with either form or dashboard and then call those interfaces with rule! followed by interface name.
    for example:

    a!dashboardLayout(
    contents: {
    a!sectionLayout(
    label: "Section",
    contents: {
    rule!first_Interface()
    }
    ),
    a!sectionLayout(
    label: "Section",
    contents: {
    rule!second_Interface()
    }
    )
    }
    )

    or else you may simply call like this....
    {
    rule!first_Interface(),
    rule!second_Interface()
    }

    Hope this helpful

    Regards
    Aswini
Children
No Data