jqplot - 是否可以在图表的设置中设置图例标签文字颜色?

时间:2015-01-06 14:31:29

标签: javascript charts jqplot textcolor

我有jqplot折线图和一些饼图。我已经能够更改除图例标签的文本颜色之外的所有内容。如果我可以使标签颜色与样本颜色匹配,那将是很好的,但如果我可以在整个板上指定一种颜色就可以了。

其他信息: 这个链接做了我需要的,遗憾的是我不认为它对我有用,我必须在图表选项中这样做: Legend text color in accordance with line color in jqplot

这正是我想要在图表选项中实现的,但它似乎没有得到满意的答案:jqplot donut chart label/legend color and line

在下面的代码中,在图例定义中,我设置了背景颜色并且它有效。但是,设置textColor不会。

非常感谢任何帮助。如果我能提供更多细节,请告诉我。

谢谢!

  



grid:{
  background: '#2A2A2A',
  gridLineColor: '#FF9900'
},

seriesDefaults: {
   rendererOptions: {
      showDataLabels: true
   }
},

axes:{
  yaxis: {
    tickOptions: {
      textColor: '#FF9900'
    }
  },
  xaxis: {
    tickOptions: {
      textColor: '#FF9900'
    },
    renderer: $.jqplot.CategoryAxisRenderer,
    ticks: dates,
    drawMajorGridlines: false
  }
},
  
series: [
  { label: 'Data1'},
  { label: 'Data2' },
  { label: 'Data3' },
  { label: 'Data4' }
],

legend: { 
  show: true, 
  location: 'e',
  background:'#FF9900'
}




1 个答案:

答案 0 :(得分:0)

之前添加此

seriesColors: [ "#F90E2A", "#10C40D", "#3886BB", "#F90E2A", "#ffffff", "#ffffff",
        "#ffffff", "#ffffff", "#ffffff", "#CDD6E0", "#ffffff"],