chartit / django-chartit

A Django app to plot charts and pivot charts directly from the models. Uses HighCharts and jQuery JavaScript libraries to render the charts on the webpage.
http://django-chartit.mrsenko.com/
Other
492 stars 164 forks source link

Chart series_options & Customize plot #30

Closed Maxtitou closed 9 years ago

Maxtitou commented 9 years ago

A French guy

Hello, I'm studying on Chartit and I have questions.

I want to know how customize my plots (color by example and others).

This is my code

        series_options =
           [{'options':{
              'type': 'line'},
              'xAxis': 0,
              'yAxis': 0,
              'zIndex': 1,

            'terms': {
              'month': [
                'boston_temp']}},
            {'options': {
                'type': 'column',
                'xAxis': 1,
                'yAxis': 1},

            'terms': {
                'month': [
                    'houston_temp']}}],

Thank you