我要创建分组条形图的以下数据(json)。例如,以“一般”和“跳舞”为主要类别,而“ ist”,“ sill”和“ unternehmensprofil”则是计算均值的“子类别”。
我只是不让我的代码对数据进行分组,因为我不知道如何访问数据。这是我到目前为止的代码:
https://jsfiddle.net/roumen92/p7nzdj6u/
数据如下:
> { "name": "Project Name", "mainGoal": "Bla bla bla...", "other":
> "...", "indicators": [
> {
> "name": "First Indicator",
> "category": {
> "_id": "xyz1",
> "name": "General"
> },
> "shortName": "1IND",
> "other": "...",
> "kz": {
> "unternehmensProfil": 4,
> "soll": 5,
> "ist": 3
> }
> }, {
> "name": "Second Indicator",
> "category": {
> "_id": "xyz1",
> "name": "General"
> },
> "shortName": "2IND",
> "other": "...",
> "kz": {
> "unternehmensProfil": 4,
> "soll": 3,
> "ist": 2
> }
> },
> {
> "name": "Third Indicator",
> "category": {
> "_id": "abc2",
> "name": "Dancing"
> },
> "shortName": "3IND",
> "other": "...",
> "kz": {
> "unternehmensProfil": 2,
> "soll": 4,
> "ist": 4
> }
> } ] }
非常感谢您的帮助!