score:0

with using highcharts, you can preprocess your data to the: [name, y] format and use category axis type. example:

for (let key in data) {
    chartdata.push([key, data[key]]);
}

highcharts.chart('container', {
    xaxis: {
        type: 'category'
    },
    series: [{
        type: 'column',
        data: chartdata
    }]
});

live demo: http://jsfiddle.net/blacklabel/cjk3uboh/

highcharts angular wrapper: https://www.npmjs.com/package/highcharts-angular


Related Query

More Query from same tag