Dynamic legend from column

Can anyone please help me, I want to gen dynamic legend from column “service” so I can filter it what am I doing wrong? The only possible legend right now is cumulative value, but what I need is to watch data from each service separetly
Here is my clickhouse table struct

CREATE TABLE test
(
    `team` String,
    `service` String,
    `coverage` Float32,
    `date` DateTime
)