JQPlot图表未显示

时间:2016-03-14 05:50:47

标签: javascript jqplot

我已经检查了其他类似的问题,但仍无法追查此问题的根源。

以下是代码:

<!DOCTYPE html>
<html>
<head>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="resources/jquery/jquery.jqplot.js"></script>
<link rel="stylesheet" type="text/css" href="resources/jquery/jquery.jqplot.css" />

</head>
<body>

<div id="chart2" style="height:300px;width:500px; "></div>

</body>

<script type='text/javascript'>

$(document).ready(function() {

   var line1 = [['Nissan', 4],['Porche', 6],['Acura', 2],['Aston Martin', 5],['Rolls Royce', 6]];

    $('#chart2').jqplot([line1], {
        title:'Bar Chart with Varying Colors',
        seriesDefaults:{
            renderer:$.jqplot.BarRenderer,
            rendererOptions: {
                // Set the varyBarColor option to true to use different colors for each bar.
                // The default series colors are used.
                varyBarColor: true
            }
        },
        axes:{
            xaxis:{
                renderer: $.jqplot.CategoryAxisRenderer
            }
        }
    });


});

</script>

</html>

问题是,除了图表画布之外没有其他任何显示。控制台中没有记录错误,并且已加载源文件。我将.jqplot的调用移到了chart2 div之下,因为用户认为这是必要的,尽管我不相信这是因为我们正在使用$(document).ready(function() ...

知道问题出在哪里?

1 个答案:

答案 0 :(得分:0)

解决。

需要包含调用.jqplot中指定的其他渲染器。

<script type="text/javascript" src="resources/jquery/plugins/jqplot.barRenderer.js"></script>
<script type="text/javascript" src="resources/jquery/plugins/jqplot.categoryAxisRenderer.js"></script>