如何在highcharts字幕选项中添加空格

时间:2014-12-01 16:05:07

标签: javascript highcharts

如何在下面的文字中添加空白

副标题:{

  text:'<b> WEL#: 0703,Number of Solar Collectors: 2, Slope (from horizontal): 32°, Orientation +32°(west), Auxilary heater: Electric, <br> Location: Westmount Street, Halifax </br> </b>',

},      

3 个答案:

答案 0 :(得分:0)

您可以尝试在中断后附加行并将\ n添加到每个行的末尾,如下所示:

{
    subtitle: "The fox went up the hill \n" +
        "and down the other side to \n" +
        "where the chickens lived."
}

此外,如果您在尝试在页面上显示空格时没有看到空白区域,请尝试将其包装在<pre></pre>中以保留空白区域。

这是一个更深入的例子: http://www.willmaster.com/blog/javascript/strings-line-breaks.php

答案 1 :(得分:0)

您可以使用“&amp; nbsp”

在HTML中添加空格

实施例,

   subtitle: {

       text:'<b> WEL#: 0703,Number of Solar Collectors: 2, Slope (from horizontal): 32°, Orientation +32°(west), Auxilary heater: Electric, &nbsp; &nbsp; Location: Westmount Street, Halifax &nbsp; &nbsp; </b>',

  },      

答案 2 :(得分:0)

添加与背景颜色相匹配的范围

<span style="font-size:16px; color:#ffffff">.</span>

高级图表似乎删除了多个中断标记(即&lt; BR&gt;)以及显示&amp; nbsp;作为“&amp; nbsp;”。

上面的代码是一个“白色”时期,但看起来像一个空格。