Highcharts Credits itemStyle无效

时间:2013-06-18 14:23:27

标签: highcharts

我需要将信用额度加下划线。如果我从jsfiddle example获得学分并从API添加itemStyle则不起作用。即使只是textDecoration。这里的诀窍是什么? textDecoration似乎适用于传奇。

    credits: {
        text: 'Example.com',
        href: 'http://www.example.com',
        itemStyle: {
            textDecoration: 'underline',
            cursor: 'pointer',
            color: '#909090',
            fontSize: '10px'
        }
    },

1 个答案:

答案 0 :(得分:1)

使用style,而不是itemStyle,请参阅:http://jsfiddle.net/SrQaX/7/ docs:http://api.highcharts.com/highcharts#credits.style

相关问题