バブル チャートのバブルのツールチップを Google API から変更しようとしています。
私の問題を解決する role:tooltip は、この種のチャートでは機能しません。
現在、バブルには行の値に関する情報が表示されていますが、これはドキュメントによると正しいですが、チャートを描画するためにその情報のみが必要であり、ツールチップとして文字列を表示する必要があります。この文字列は、フォーマットする必要があるいくつかの値で構成されています。
これはできますか?
記録のために、私はPHPを使用してJSONを介してJavascriptにデータを提供しており、Googleの最新のAPI(https://www.google.com/jsapi)を使用しています。
これは、現在の私の列の定義です。
$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。