icicle-chart
Reactive icon

Icicle Chart

Stable version 1.0.0 (Compatible with OutSystems 11)
Uploaded
 on 2 Oct (yesterday)
 by 
EONE TECHNOLOGIES PRIVATE LIMITED
0.0
 (0 ratings)
icicle-chart

Icicle Chart

Documentation
1.0.0

1. Download the forge

2. Provide the input parameters, (mandatory and optional)

3. Inputs:

  • ChartData (Text) , Hierarchical JSON data.

  • Width (Integer) , Width of the chart in px.

  • Height (Integer) ,Height of the chart in px.

  • Options (Record or JSON) , Customization options (tooltip on/off, color scheme, show labels, min label width, etc.).


Example:

{

  "name": "Root",

  "children": [

    {

      "name": "Group A",

      "children": [

        { "name": "A1", "value": 30 },

        { "name": "A2", "value": 20 }

      ]

    },

    {

      "name": "Group B",

      "children": [

        { "name": "B1", "value": 25 },

        { "name": "B2", "value": 15 }

      ]

    }

  ]

}