1. Download the forge
2. Provide the input parameters, (mandatory and optional)
3. Inputs:
ChartData (Text) , Hierarchical JSON data.
ChartData
Width (Integer) , Width of the chart in px.
Width
Height (Integer) ,Height of the chart in px.
Height
Options (Record or JSON) , Customization options (tooltip on/off, color scheme, show labels, min label width, etc.).
Options
Example:
{
"name": "Root",
"children": [
"name": "Group A",
{ "name": "A1", "value": 30 },
{ "name": "A2", "value": 20 }
]
},
"name": "Group B",
{ "name": "B1", "value": 25 },
{ "name": "B2", "value": 15 }
}