Do not show points on line graph

This commit is contained in:
2022-08-21 23:47:59 +02:00
parent 0e58cb1142
commit 0ab8b99e4f

View File

@@ -37,6 +37,7 @@
y: {{ [d.price for d in results] }}, y: {{ [d.price for d in results] }},
type: 'scatter', type: 'scatter',
name: '1000-1499 L', name: '1000-1499 L',
mode: 'lines',
marker: { marker: {
color: '#1f77b4', color: '#1f77b4',
}, },
@@ -46,6 +47,7 @@
y: {{ [d.price500 for d in results if d.price500 is not None] }}, y: {{ [d.price500 for d in results if d.price500 is not None] }},
type: 'scatter', type: 'scatter',
name: '500-999 L', name: '500-999 L',
mode: 'lines',
marker: { marker: {
color: '#ff7f0e', color: '#ff7f0e',
}, },