我使用
Google Visualization Bar Chart,我想自定义或更改点击一个栏时出现的工具提示文本和格式。
我已经通过文档,但我没有找到一种方法来实现
这个。你知道吗:
>甚至有可能吗?
>如果是,你能提供一些代码示例吗?
您可以使用google.visualization.NumberFormat类更改数字格式的格式。
原文链接:https://www.f2er.com/ajax/160398.htmlvar formatter = new google.visualization.NumberFormat({ fractionDigits: 0,prefix: '$' }); formatter.format(data,1); // Apply formatter to second column.
如果您需要更多的灵活性,请查看PatternFormat类。