我正在尝试从 Google API 更改气泡图中的气泡工具提示。
可以解决我的问题的角色:工具提示不适用于这种图表。
现在我的气泡显示有关行值的信息,根据文档,这是正确的,但我只需要该信息来绘制图表,并且我需要显示一个字符串作为工具提示。这个字符串由一些我需要格式化的值组成。
这可以做到吗?
作为记录,我正在使用 PHP 通过 JSON 向 Javascript 提供数据,并且我正在使用来自 google ( https://www.google.com/jsapi ) 的最新 API。
这是我现在的列定义:
$data['cols'][] = array('id' => 'ID', 'label' => 'ID', 'pattern' => "", 'type' => 'string');
$data['cols'][] = array('id' => 'Fecha', 'label' => 'Fecha', 'pattern' => "", 'type' => 'number');
$data['cols'][] = array('id' => 'h', 'label' => 'h', 'pattern' => "", 'type' => 'number');
$data['cols'][] = array('id' => 'stringRes', 'label' => 'Valor', 'pattern' => "", 'type' => 'string');
$data['cols'][] = array('id' => 'Resultado', 'label' => 'Resultado', 'pattern' => "", 'type' => 'number');
提前致谢!
编辑:
[解决方案]
如果有人问同样的问题,我只是通过删除我不想显示的字段的标签来解决我的问题,就是这样!
我将列模型更改为:
$data['cols'][] = array('id' => 'ID', 'label' => 'Fecha', 'pattern' => "", 'type' => 'string');
$data['cols'][] = array('id' => 'Fecha', 'label' => '', 'pattern' => "", 'type' => 'number');
$data['cols'][] = array('id' => 'h', 'label' => '', 'pattern' => "", 'type' => 'number');
$data['cols'][] = array('id' => 'stringRes', 'label' => 'Resultado', 'pattern' => "", 'type' => 'string');
$data['cols'][] = array('id' => 'Resultado', 'label' => '', 'pattern' => "", 'type' => 'number');
感谢@jmac 为我的问题提供了一些方法。