django-gcharts icon indicating copy to clipboard operation
django-gcharts copied to clipboard

Provides a QuerySet, Manager and other tools for easy integration with the Google Visualization API

Results 7 django-gcharts issues
Sort by recently updated
recently updated
newest added

cStringIO is not available in Python 3. #14 gvis_api.py seems to have this import. It needs to be converted from `import cString` to `from io import StringIO` on line 30....

I've chosen this as it seems to be the most promising out of a list of chart modules for Django. However I've run into a couple of issues trying to...

ValuesQuerySet has been removed in Django 1.9 [(release notes)](https://docs.djangoproject.com/en/1.9/releases/1.9/#miscellaneous).

If the query containing the data to be plotted includes a decimal.Decimal field, the library complains that Decimal data-type is not handled: ``` DataTableException at / Wrong type when expected...

enhancement

I'm currently on 1.7. Running `manage.py check` yields the following warning: ``` (venv)~/D/g/z ❯❯❯ python manage.py check ../venv/lib/python2.7/site-packages/gcharts/__init__.py:42: RemovedInDjango18Warning: `GChartsManager.get_query_set` method should be renamed `get_queryset`. ```

bug

The charts supported now are only static charts. It would be nice to have support for more dynamic/interactive charts as well.

enhancement

I need a graph that shows the number of objects over time. The objects have a date(time) field. Unfortunately, there's no uniform way of annotating rows with their row number...

enhancement