我已设置以下选项:
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>';
}
但我仍然得到这个输出。
如果我使用:
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
},
然后我得到:
然而,当我缩小到全部或10年时间时,我得到的输出与第一次相同。
使用大约3年时似乎有一个错误。
这是一个演示错误的jsfiddle:
https://jsfiddle.net/3Ld2zmum/2/
缩小至所有
答案 0 :(得分:1)
在格式化程序中,您应该使用对象对象的引用和Highcharts.dateFormat
public function configureSideMenu(MenuItemInterface $menu, $action, AdminInterface $childAdmin = null) {
// ... compute $options
$menu->addChild('TheChildAdminName', $options);
}