highcharts,可能的bug设置工具提示格式化程序和HTML?

时间:2015-04-28 20:22:55

标签: javascript charts highcharts highstock

我已设置以下选项:

                tooltip: {
                    shared: true,
                    useHTML: true,
                    formatter: function() {
                        return '<table style="text-align: center"><tr><td>{point.x:%Y-%b-%e}</td></tr><tr><td>Price: {point.y}</td></tr></table>';
                  }

但我仍然得到这个输出。

enter image description here

如果我使用:

               tooltip: {
                    shared: true,
                    useHTML: true,

                    headerFormat: '<table style="text-align: center"><tr><td>{point.x:%Y-%b-%e}</td></tr><tr><td>Price: {point.y}</td></tr></table>',
                    pointFormat: '',
                    footerFormat: '',
                    valueDecimals: 2
                },

然后我得到:

enter image description here

然而,当我缩小到全部或10年时间时,我得到的输出与第一次相同。

enter image description here

使用大约3年时似乎有一个错误。

这是一个演示错误的jsfiddle:

https://jsfiddle.net/3Ld2zmum/2/

缩小至所有

1 个答案:

答案 0 :(得分:1)

在格式化程序中,您应该使用对象对象的引用和Highcharts.dateFormat

public function configureSideMenu(MenuItemInterface $menu, $action, AdminInterface $childAdmin = null) {
    // ... compute $options
    $menu->addChild('TheChildAdminName', $options);
}

https://jsfiddle.net/3Ld2zmum/3/