How to use Graphs in ERPNext?

Hello ErpNext team,
Is there graph feature available in ErpNext? if yes then what kind of Graphs are available like pie chart etc.

1 Like

@mubashshir: you can package and install any external third-party Python lib as of part of your custom Frappe app setup. So you will be able to leverage graph building capabilities provided by such an external library. Choices here are multiple (you may refer to Plotly Python Graphing Library as one of the possible options).

1 Like

Frappe uses http://c3js.org/ in all of their charts in ErpNext:

https://github.com/frappe/frappe/blob/develop/frappe/public/js/frappe/ui/charts.js#L79

1 Like

thanks @gvyshnya and @Ben_Cornwell_Mott for reply.

1 Like