Forum Discussion
gabrielladawn
06-17-2025Data Storage
Hello
If the Histogram plugin isn’t working, you can mimic a histogram using a bar chart. Just create a custom formula to bucket your numeric field into ranges (e.g., FLOOR([Value]/10)*10 for 10-unit bins), then use a count aggregation to show frequency per bin. 🙂Plot this on a bar chart with the bins on the X-axis and count on the Y-axis. This gives you a functional histogram without needing a plugin.
Thank you!!😊