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
1 Answer
Reset to default 8A html div with id 'line-example' is not present. Add it. The chart will be displayed there.