最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to debug morris.js 'Graph container element not found' error - Stack Overflow

programmeradmin0浏览0评论

I want to display a morris.js graph

I have the following at the bottom of my page.

<script src="/assets/raphael.js?body=1" type="text/javascript"></script>
<script src="/assets/morris.js?body=1"  type="text/javascript"></script>

<script type="text/javascript">
Morris.Line({
    element : 'line-example',
    data    : $('#averages-chart').data('averages'),
    xkey    : 'month',
    ykeys   : ['average'],
    labels  : ['Average']
});
</script>
</body>
</html>

But I'm getting the following error in console:

Error: Graph container element not found throw new Error("Graph container element not found");

The graph container IS there as it renders properly if I load the javascript in the asset pipeline (but that causes all other javascript to not work).

Please help debug.

I have also tried:

<script type="text/javascript">
$(window).bind("load", function() {
    Morris.Line({
        element : 'line-example',
        data    : $('#averages-chart').data('averages'),
        xkey    : 'month',
        ykeys   : ['average'],
        labels  : ['Average']
    });
});
</script>

I want to display a morris.js graph

I have the following at the bottom of my page.

<script src="/assets/raphael.js?body=1" type="text/javascript"></script>
<script src="/assets/morris.js?body=1"  type="text/javascript"></script>

<script type="text/javascript">
Morris.Line({
    element : 'line-example',
    data    : $('#averages-chart').data('averages'),
    xkey    : 'month',
    ykeys   : ['average'],
    labels  : ['Average']
});
</script>
</body>
</html>

But I'm getting the following error in console:

Error: Graph container element not found throw new Error("Graph container element not found");

The graph container IS there as it renders properly if I load the javascript in the asset pipeline (but that causes all other javascript to not work).

Please help debug.

I have also tried:

<script type="text/javascript">
$(window).bind("load", function() {
    Morris.Line({
        element : 'line-example',
        data    : $('#averages-chart').data('averages'),
        xkey    : 'month',
        ykeys   : ['average'],
        labels  : ['Average']
    });
});
</script>
Share Improve this question edited Sep 20, 2017 at 14:10 linktoahref 8,0023 gold badges32 silver badges53 bronze badges asked Mar 4, 2014 at 7:31 graburygrabury 5,59917 gold badges81 silver badges136 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 8

A html div with id 'line-example' is not present. Add it. The chart will be displayed there.

发布评论

评论列表(0)

  1. 暂无评论