如何在highcharts中更改尼罗图中线条的颜色?

时间:2013-06-11 15:45:30

标签: highcharts

如何更改highcharts中折线图中线条的颜色?

现在这条线显得很蓝。如果我想说它,红色怎么办?

现在我有以下代码:

new Highcharts.Chart({
 chart: {
  renderTo: 'emissionsChart',
  type: 'areaspline',
  marginRight: 20
 },
  legend: {
   layout: 'vertical',
   align: 'center',
   verticalAlign: 'top',
   x: 0,
   y: 40,
   floating: true,
   borderWidth: 1,
   backgroundColor: '#FFFFFF'
 },
  xAxis: {
   labels: {
       formatter: function() {
           return this.value.toFixed(0);
       }
   }
 },
  yAxis: {
   title: {
      text: 'Emissions (tCO2e)'
   }
  },
 credits: {
  enabled: false
  },




plotOptions: {
  areaspline: {
      fillOpacity: 0.5
   }
 },
  series: [{"name":"High reduction rate","data":[]}]
  });

1 个答案:

答案 0 :(得分:0)

您可以在plotOptions:

中指定您想要的任何颜色 - 以及许多其他内容

http://api.highcharts.com/highcharts#plotOptions.series.color

您可以通过将属性添加到系列对象中逐个系列地执行此操作:

http://jsfiddle.net/jlbriggs/yPLVP/8/

series:[{
  color:'orange',
  data:[5,2,8,9,6,3,4,7,7]
}