Iphone 5上的Highcharts图表标题和副标题重叠

时间:2016-09-12 06:40:00

标签: iphone mobile highcharts title subtitle

我正在使用Highcharts。如何控制图表标题和字幕,使它在桌面,iPad和iPhone上看起来不错?现在,标题和副标题在iphone 5(和6)上重叠(见图像)。我想在标题上留下一些底线。

enter image description here

1 个答案:

答案 0 :(得分:-1)

您可以使用图表本身的marginTop属性,或标题或字幕对象的x / y属性。

chart: {
   type: 'line',
   marginTop: 100
}
subtitle: {
   text: 'Your text',
   y: 100
}

演示:http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/chart/margintop/

演示2:http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/title/y/