1

我有一个三种语言的图表,其中的数据是从数据库中填充的。一些翻译的标题会中断并填充两行。如果不采取任何预防措施,这将溢出字幕:

title: {
    text: 'The quick brown fox jumps over the lazy dog and even more',
    style: {
        width: '320px'
    }
},
subtitle: {
    text: 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr'
}, 

请参阅此示例:http:  //jsfiddle.net/puhtu/

如果主标题分成两行,有没有办法动态移动字幕?

4

2 回答 2

0

它看起来像一个错误,所以我已将其报告给我们的开发人员https://github.com/highslide-software/highcharts.com/issues/1704

于 2013-04-10T11:59:25.643 回答
0

虽然不久前,以下为我修复了它,因为这仍然是一个问题:

            title: {
                text: "Hello very strange world where people tend to make long chart titles",
                style: {
                    fontSize: '1.9vmin',
                    fontWeight: 'bold',
                    color: '#1381bc',
                    lineHeight: '15em' //This line did the trick
                },
                align: 'left',
                x: 30,
                y: 10
            },
于 2014-05-22T12:57:46.727 回答