Skip to content

Instantly share code, notes, and snippets.

@leriomaggio
leriomaggio / django_admin_mpld3_view.py
Last active June 30, 2020 13:47
Interactive Matplotlib (Bar) Chart with mpld3 in Django Custom Admin View
#----------------------------------------------------------------------------------------
# model.py
#----------------------------------------------------------------------------------------
from django.db import models
from numpy.random import random_sample
class CustomModel(models.Model):
# Put your fields here
def get_data(self):