是否有可能将我的对象显示在AmChart中?

时间:2018-04-06 15:37:47

标签: javascript spring spring-mvc thymeleaf amcharts

我正在开发一个项目,其中一个想法是从数据库获取值并在图形漏斗中显示......

但是所有的项目都在春天mvc与thymeleaf,以及javascript中的图形

是否可以显示值?

<table class="table table-striped table-bordered table-hover" id="dataTables-example">
    <thead>
        <tr>
            <th>ID</th>
            <th>Name</th>
            <th>Proposition</th>
            <th>Ticket</th>
            <th>Week's Number </th>
        </tr>
    </thead>
    <tbody>
        <tr th:each="client : ${clients}">
            <td class="text-center" th:text="${client.ID}"></td>
            <td class="text-right"
                th:text="${client.Name}"></td>
            <td class="text-right"
                th:text="${#numbers.formatDecimal(client.Proposition, 0, 'POINT', 2, 'COMMA')}"></td>
            <td class="text-right"
                th:text="${#numbers.formatDecimal(client.Ticket, 0, 'POINT', 2, 'COMMA')}"></td>
            <td class="text-right"
            th:text="${#numbers.formatDecimal(client.weeksNumber, 0, 'POINT', 2, 'COMMA')}"></td>
        </tr>
    </tbody>
</table>

<div id="chartdiv"> </div>

图表位于项目的.js中。

谢谢!

0 个答案:

没有答案