1
Answer

Simple BarChart from JSON Data

[ { "categoryId": 1, "categoryName": "Performance", "excellent": 0, "good": 0, "average": 0, "poor": 0 },
{ "categoryId": 2, "categoryName": "Distribution", "excellent": 0, "good": 0, "average": 0, "poor": 0 },
{ "categoryId": 3, "categoryName": "Behaviour", "excellent": 0, "good": 0, "average": 0, "poor": 0 },
{ "categoryId": 4, "categoryName": "Punctuality", "excellent": 0, "good": 0, "average": 0, "poor": 0 }
]
 
i have this json now i want high charts(x-axis categoryname and y axis excellent,good,average,poor)
Answers (1)