如何将数据从mongodb数据库添加到highchart-ng

时间:2018-05-24 10:28:42

标签: angularjs node.js highcharts

This is the highchart code in angular controller

我在angularjs中第一次使用图表。我希望显示来自我的mongodb数据库的数据,例如x轴上的所有任务名称,以及y轴上该特定任务完成所需的总时间,即 - 总持续时间。

我已经为html添加了静态数据,看起来像附加图像。 我正在使用 MEAN Stack 开发一个项目。我想知道如何将我从数据库中获取的数据添加到highcharts。

这是输出在没有静态给出数据的情况下的外观: This is how the output should look without statically giving data

     var tasks = ['Task1','Task2','Task3' ]
     var res = [26,61,1]
      $scope.chartConfig = {
        chart: {
            type: 'column'
        },
        title: {
            text: 'Task Duration'
        },
        xAxis: {
            categories: tasks,
            crosshair: true
        },
        yAxis: {
            min: 0,
            title: {
                text: 'Task Duration (Hrs)'
            }
        },
        tooltip: {
            headerFormat: '<span style="font-size:10px">{point.key}</span> 
            <table>',
            pointFormat: '<tr><td style="color:{series.color};padding:0"> 
         {series.name}: </td>' +
                '<td style="padding:0"><b>{point.y:.1f} mm</b></td></tr>',
            footerFormat: '</table>',
            shared: true,
            useHTML: true
        },
        plotOptions: {
            column: {
                pointPadding: 0.2,
                borderWidth: 0
            }
        },
        series: [{
            name: 'Tasks',
            data: res
        }]
    }

0 个答案:

没有答案