I'm building a lightweight social media analytics and GA4 wrapper that aggregates across multiple channels. think of it like Hubspot - that is free and does not suck.
I am running on top of DuckDB and SQL page is my reporting tool
I would like the Chart component to have the ability to turn off the legend. Something along the lines of:
SELECT false AS legend, 'chart' AS component, 'bar' AS type
I can hack it with the stylesheet, but I would prefer to declare my intent directly in SQL.
The hover over data points already shows the legend and I have charts with 25 series. It would be much preferable to just let the user hover for the details.
I'm building a lightweight social media analytics and GA4 wrapper that aggregates across multiple channels. think of it like Hubspot - that is free and does not suck.
I am running on top of DuckDB and SQL page is my reporting tool
I would like the Chart component to have the ability to turn off the legend. Something along the lines of:
SELECT false AS legend, 'chart' AS component, 'bar' AS typeI can hack it with the stylesheet, but I would prefer to declare my intent directly in SQL.
The hover over data points already shows the legend and I have charts with 25 series. It would be much preferable to just let the user hover for the details.