0

テーブルから棒グラフを作成します。

この例を試してみましたが、ページにテーブルしか表示されません。

これが私のコードです:

<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>
4

1 に答える 1

0

jqueryvisualize.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>
于 2012-11-10T12:24:51.167 に答える