我的图表不是从我的html表创建的

时间:2012-11-10 12:04:27

标签: php jquery symfony

我会从桌子上建立一个条形图。

我尝试使用this example,但我的页面中只有一张表。

这是我的代码:

<table cellpadding="0" cellspacing="0" border="0" class="display" id="example">
    <thead>
        <tr>            
             <th>Total des Alertes </th>
             <th>Nombre critique</th>
                 <th>Nom d'analyste</th>
            <th>Nombre majeur</th>
            <th>Nombre d'alertes traités</th>

        </tr>
    </thead>
    <tbody>

     {% for liste10 in listes %}

        <tr class="gradeU">
        <td>{{listes11}}</td>
        <td>{{liste10.critique}}</td>
            <td>{{liste10.user_name}} </td>
        <td>{{liste10.majeur}}</td>

        <td> </td>

    </tr>
        {% endfor %}

    </tbody>


</table>

1 个答案:

答案 0 :(得分:0)

您必须导入 jquery visualize.jQuery.js 库,然后将其写入您的文件

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>

<script type="text/javascript" src="http://dwpe.googlecode.com/svn-history/r12/trunk/charting/js/visualize.jQuery.js"></script>
<script>
$(function(){
   $('table').visualize();
});
</script>