Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
438 views
in Technique[技术] by (71.8m points)

javascript - 合并相同的值并添加各自的计数(merge same values and add respective count)

enter code here This is the browser-dump of an array used for creating the pie-chart:

(enter code here这是用于创建饼图的数组的浏览器转储:)

用于饼图的数组

I have data like this:

(我有这样的数据:)

[
  {
    "name": "South,Central",
    "y": 1,
    "visible": true
  },
  {
    "name": "Central",
    "y": 2,
    "visible": true
  }
]

But I need the following in order to show the chart properly:

(但是我需要以下内容才能正确显示图表:)

[
  {
    "name": "South",
    "y": 1,
    "visible": true
  },
  {
    "name": "Central",
    "y": 3,
    "visible": true
  }
]

Please help!

(请帮忙!)

  ask by muhammad ali translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...