DEV Community

Cover image for Django Graphs and Charts – Argon Dashboard
Sm0ke
Sm0ke

Posted on • Updated on • Originally published at github.com

Django Graphs and Charts – Argon Dashboard

Hello coders,

This article presents an open-source sample that might help beginners learn and code a real project using Django as a backend framework. Django Charts Sample provides functional code that shows different metrics regarding a 12-month timeframe: total sales, total orders, best sale, and best month (in sales value). Information is provided using charts, widgets, and a paginated data table that allows editing/adding new sales.

Thank you!


Django Graphs and Charts - Open-source Django sample, animated presentation.


The information displayed in the charts is loaded from a sample file provided along with the source code on GitHub. On top of this basic provisioning, authenticated users have the option to edit and add new records.

Once the new information is saved, charts are automatically updated. The project can be used by any developer with basic programming knowledge and familiarity with Python.


What’s in the box (app features):

  • A beautiful, modern UI: Argon Dashboard (free version)
  • Session-based authentication
  • Import/Export feature – available in the admin section for bulk import of sample data
  • Charts for orders and sales for a 12mo timeframe
  • Widgets that count total sales, orders, and best month selected based on the total sales value
  • Paginated data table with edit and add new record option

To compile the project and play with the code, please follow the build instructions provided in the README file. The basic flow is to install the required dependencies, create the database and app tables and load the information using the admin section. Once the information is saved in the database, we can use the UI to play with the information and see the LIVE effects in the charts.


Line Chart

Summarize the sales for the last 12mo, initially provisioned by a sample file.


Django Graphs and Charts - Sample Line Chart.


Bar Chart

Django Graphs and Charts - Sample Bar Chart.


The visual features are enhanced with a table-based view of the information that allows navigating the database content with ease. The records can be edited and the charts will be refreshed automatically to reflect the latest changes.

Django graphs and charts – edit existing row.


From this point, the project can be extended with ease to support more advanced features like adding more relevant charts, computing sales predictions using the sales statistics from the previous year, or adding a social login to speed up user registration.


Thanks for reading! For more resources, feel free to access:

Top comments (5)

Collapse
 
j0shak profile image
j0shAK

Hi i would like to restrict data for current user logged in. I've created link between model and user and tried filter user in views, but still any user can see everything.
Could you help me with this?

Collapse
 
uithemes profile image
ui-themes

The design looks good, the code is free.
Definitely I will take a look.

Collapse
 
sm0ke profile image
Sm0ke

Let me know your thoughts!

Collapse
 
crearesite profile image
WebsiteMarket

This sample is super useful.
Ty!

Collapse
 
sm0ke profile image
Sm0ke

Yw!