12345678910111213141516171819 |
- <%page args="df"/>
- <%
- """Comments about this template file.
- """
- # Python imports, helper function definitions, etc.
- import pandas
- %>
- <%text>
- {
- labels: </%text> ${df.labels.values.tolist()} <%text>,
- datasets: [
- {
- data: </%text> ${df.data.values.tolist()} <%text>
- }
- ]
- }
- </%text>
|