django-chartit highcharts选项对象“图表”不显示字幕

时间:2016-10-23 23:06:30

标签: python django highcharts

当我在chart_options中使用highcharts选项“chart”时,我在显示的图表中得到不同的结果。示例1将显示字幕但不显示背景颜色。示例2将显示背景颜色,但不显示字幕。其他人遇到过这种行为吗?

Python v2.7.5
Django v1.10
django-chartit v0.2.7
django-highcharts v0.1.7

Example 1: displays subtitle, not backgroundColor
#Create the PivotChart object
site_prod_pivotcht = PivotChart(
  datasource = site_prod_ds,
    series_options = [
          {'options':{
              'type': 'column',
              'stacking': False},
            'terms': [
              'prod_value',
              'wx_adj_value']}
        ],
        chart_options =
            {'title': {
               'text': 'Actual versus Wx Adjusted Production Data'},
             'subtitle': {
               'text': report_range},
           'backgroundColor': '#7FFFD4',
           'xAxis': {
                'title': {
                   'text': 'Group:Sites'}}
        }

Example 2: displays backgroundColor, not subtitle
#Create the PivotChart object
site_prod_pivotcht = PivotChart(
  datasource = site_prod_ds,
    series_options = [
          {'options':{
              'type': 'column',
              'stacking': False},
            'terms': [
              'prod_value',
              'wx_adj_value']}
        ],
        chart_options =
            {'chart':{
             'title': {
               'text': 'Actual versus Wx Adjusted Production Data'},
             'subtitle': {
               'text': report_range},
           'backgroundColor': '#7FFFD4',
           'xAxis': {
                'title': {
                   'text': 'Group:Sites'}}}
        }

1 个答案:

答案 0 :(得分:0)

经过多次试验和错误后,我发现以下工作正常。

chart_options =
    {'chart':{
        'backgroundColor': '#7FFFD4',
        'title': {
            'text': 'Actual versus Wx Adjusted Production Data'}},
     'subtitle': {
        'text': report_range},
     'credits': {
        'enabled': False},
     'xAxis': {
        'title': {
            'text': 'Group:Sites'}}
    }