How can I make a simple histogram chart using the ages of users in the database?

How can I make a simple histogram chart using the ages of users in the database?

Hi @leonidas.petrou4 - how you searched for a chart plugin. There are a few available - one of them should help you.
Hi @nikolai, yes I have. I am under the impression that the available plugins can only make bar charts (and other types of charts) but not histograms. Unless there is a work around to convert a bar chart into a histogram using the grouping function or something?
Hmm - I haven’t used the plugins so can’t comment on their support for histogram. Perhaps a workaround would be to make a Data Type called “HistData” (or whatever) and create data fields (ie “Decade1”, Decade2", etc) then populate the respective data field with a quantity. Kind of a hack but should work. Alternatively, depending on how the bar chart plugin allows for n-number of data fields, you could create an algorithm for each x-axis instance in which you do a search and count for each time period (ie for decade, second decade, etc).
Without looking at the plugins, these are just some thoughts that may help.
Tried out your first approach and worked like an absolute charm. Thank you!