Just starting out with chartjs and looking to create some charts using JSON data. I have the following JSON array that I want to display in a chart similar to this Sample Image. Any help would be appreciated!
[
{
"ChartGroupName": "Group-A",
"Apple": 45,
"Banana": 37,
"Kiwi_fruit": 60,
"Blueberry": 70,
"Orange": 46,
"Grape_Fruit": 33
},
{
"ChartGroupName": "Group-B",
"Apple": 50,
"Banana": 35,
"Kiwi_fruit": 70,
"Blueberry": 65,
"Orange": 40,
"Grape_Fruit": 53
},
{
"ChartGroupName": "Group-C",
"Apple": 55,
"Banana": 39,
"Kiwi_fruit": 80,
"Blueberry": 75,
"Orange": 52,
"Grape_Fruit": 73
}
]