Filter days with no plays from heatmap

pull/40/head
alexay7 2024-06-05 02:46:29 +02:00
parent f6d55fec35
commit c5d81afdf6
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ export function renderCal(el: HTMLElement, d: { date: any, value: any }[]): Prom
radius: 2, width: 11, height: 11, gutter: 4
},
range: 12,
data: { source: d, x: 'date', y: 'value' },
data: { source: d.filter(x => x.value > 0), x: 'date', y: 'value' },
scale: {
color: {
type: 'linear',