Chart Settings
This page describes how to set the chart settings and data.
Chart Settings fields
Example in JSON
JSON{
"charts": [{
"rows": ["Yes", "No"],
"columns": [{
"text": "Work in Progress",
"items": [{
"text": "Does it work?",
"base": 3.0,
"data": [2.0, 1.0]
}]
}],
"view_settings": {}
}, {
"rows": ["Maybe", "Other"],
"columns": [{
"text": "Work is done",
"items": [{
"text": "Does it work?",
"base": 5.0,
"data": [3.0, 2.0]
}]
}],
"view_settings": {}
}]
}Last updated