For the complete documentation index, see llms.txt. This page is also available as Markdown.

Sub Accordion

{
    "type": "SubAccordion",
    "properties": {
        "name": "tooltips",
        "collapsed": true,
        "checkBox": false,
        "bindingPropertyName": "tooltipEnabled"
    },
    "children": []
}

If you set the check box property to true, then you will need ensure a binding property name is specified and matches a property in default state

{
    "tooltipEnabled": false
}

Can contain other elements as children.

Configurable properties

name

string - The text to display as the title of the sub accordion in property panel.

collapsed

bool - Whether the sub accordion should be collapsed by default

checkBox

bool - Whether to show a check box to the right of the sub accordion. An example of this check box could be to toggle on or off collection or properties. E.g. on a chart the tooltips sub accordion has a check box, if unchecked tooltips are not applied.

bindingPropertyName

string - the property name in default state with which to connect the checkbox to.

Note: This is mandatory if checkBox is set to true.

children

array - An array of other elements to appear inside the sub accordion drawer

Last updated

Was this helpful?