error an ability to create pie charts and grafs on month basis by entering data?
Not sure about specifically flarum, but if there's not, you can supplement the behavior with options like quickchart to create nearly any custom chart through just a json-formatted URL
![](https://quickchart.io/chart?c={type:'pie',data:{labels:['January','February', 'March','April', 'May'], datasets:[{data:[50,60,70,180,190]}]}})
{
"type":"pie",
"data":{
"labels":[
"January",
"February",
"March",
"April",
"May"
],
"datasets":[
{
"data":[
50,
60,
70,
180,
190
]
}
]
}
}