最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to change series legend text color in HighChart chart? - Stack Overflow

programmeradmin4浏览0评论

/

I'm trying to change the series legend text color from black, to anything besides black:

$(function () {
$('#container').highcharts({

    legend: {
        color: '#FF0000',
        backgroundColor: '#FCFFC5'
    },

    xAxis: {
        categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
    },

    series: [{
        data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
    }]
});

});

This is all I found on the legend in the HighCharts docs, is there another way to change that color?

http://jsfiddle/n0mq739a/

I'm trying to change the series legend text color from black, to anything besides black:

$(function () {
$('#container').highcharts({

    legend: {
        color: '#FF0000',
        backgroundColor: '#FCFFC5'
    },

    xAxis: {
        categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
    },

    series: [{
        data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
    }]
});

});

This is all I found on the legend in the HighCharts docs, is there another way to change that color?

http://api.highcharts./highcharts#legend

Share Improve this question asked Apr 27, 2016 at 20:04 Leon GabanLeon Gaban 39k122 gold badges348 silver badges550 bronze badges 1
  • @praguan hmm Quarterly and Goal are still colored black? – Leon Gaban Commented Apr 27, 2016 at 20:13
Add a ment  | 

1 Answer 1

Reset to default 11

Here we go:

You need to specify itemStyle. e.g.

itemStyle:{'font-size':'30px'}

Depending on the css you want to use, you may also have to set 'useHTML'. From the documentation:

Using HTML allows for advanced formatting, images and reliable bi-directional text rendering.

Here is an example: http://jsfiddle/kHzr9/

Hope it helps;)

发布评论

评论列表(0)

  1. 暂无评论