Skip to content

Add Heatmap chart type - #288

Open
mediabakery wants to merge 1 commit into
taleshape-com:mainfrom
mediabakery:feat-heatmap
Open

mediabakery wants to merge 1 commit into
taleshape-com:mainfrom
mediabakery:feat-heatmap

Conversation

@mediabakery

Copy link
Copy Markdown
Contributor

A new HEATMAP chart type to Shaper.

The new chart renders date-based numeric data as a GitHub-style calendar heatmap, useful for visualizing activity, contributions, usage, events, or other daily counts over time.

Example

SELECT 'Activity'::LABEL;

SELECT
  date_trunc('day', created_at)::XAXIS,
  count(*)::HEATMAP
FROM events
GROUP BY ALL
ORDER BY ALL;
image

@mediabakery

Copy link
Copy Markdown
Contributor Author

@jorinvo I’m not sure if this goes against the roadmap and is heading in completely the wrong direction. Please don’t hesitate to reject this merge. I don’t want to bloat the code unnecessarily. ;)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant