#5 Added ability to correlate data into graph

This commit is contained in:
Luke Else 2024-02-02 21:01:29 +00:00
parent 80749daa01
commit 8653d2caa9
2 changed files with 15 additions and 12 deletions

View File

@ -18,7 +18,10 @@ def stats_index():
""" Main page to view all of the statistics for the site """
db = StatsController()
data = db.read()
return render_template("index.html", content="stats.html", data=data)
test = list(map(lambda d: d.productID, data))
for i in test:
print(i)
return render_template("index.html", content="stats.html", data=test)
@blueprint.route('/product/<int:id>')

View File

@ -11,12 +11,12 @@
const ctx = document.getElementById('myChart');
new Chart(ctx, {
type: 'bar',
type: 'line',
data: {
labels: ['Red', 'Blue', 'Yellow', 'Green', 'Purple', 'Orange'],
labels: {{data}},
datasets: [{
label: '# of Votes',
data: [12, 19, 3, 5, 2, 3],
data: {{data}},
borderWidth: 1
}]
},