Take a look at below array
[{x: 'SomeName-1', value: 2},
{x: 'SomeName-2', value: 3},
{x: 'SomeName-1', value: 5},
{x: 'SomeName-2', value: 8},
{x: 'SomeName-1', value: 1},
{x: 'SomeName-3', value: 4}]
how can i format this array so i will get x
repeating single time with the addition of all its value.
So the result will look like below
[{x: 'SomeName-1', value: 8}, {x: 'SomeName-2', value: 11}, {x: 'SomeName-3', value: 4},]
Thnaks in advance...