highcharts line和column - line not rendering

时间:2014-05-15 20:39:35

标签: charts highcharts combinations

对于我的生活,我无法弄清楚为什么LINE图表不会渲染。它使COLUMNs很好。这是我的图表选项。有人可以对此有所了解吗? 谢谢。

    {
  'chart':
    {'renderTo': 'container'}
  ,
  'credits':
    {'text': ''},
  'title':
    {'text': 'CC SLA Attainment Trend'},
  'subtitle':
    {'text': '2013-06-01 to 2013-12-31'},
  'xAxis':
    {'categories':['Jun2013', 'Jul2013', 'Aug2013', 'Sep2013', 'Oct2013', 'Nov2013',   'Dec2013'],
    'labels':{'enabled': true} },
  'yAxis':
    {'min': 0, 'max': 100,
    'title': {'text': 'CC Attainment (percentage)'},
  'labels': {'format': '{value}%'} },
  'legend': {'enabled': true},
  'tooltip': {'pointFormat': '<b>{point.y:.2f}%<\/b>'},
  'lang': {'noData': 'There were no results based on search criteria, try again.'},
  'noData': {'style':{'fontWeight': 'bold', 'fontSize': '15px', 'color': '#C7C7C7'} },
  'navigation': {'buttonOptions':{'enabled': true} },
  'exporting': {'filename': 'CCSLAAttainment'},
  'series':[
    {'type': 'column', 'name': 'Attainment', 'dataLabels':{'enabled': true},
    'data':[73.39, 77.33, 77.52, 70.58, 68.95, 70.07, 73.58]},
    {'type': 'line', 'name': 'Objective 70.00%', 'dataLabels':{'enabled': false},
    'data':[70.00, 70.00, 70.00, 70.00, 70.00, 70.00, 70.00]}
  ]
}

0 个答案:

没有答案