我正在使用Google Charts。我需要在y轴上的值之前添加'$'以及气泡中的值。
是否有此设置?
小心, 利更新
以下是图表使用的数据:
'Month','Semi-Detached in Toronto E04','Semi-Detached in Toronto E08','Condominium Townhouse in Toronto E04','Condominium Townhouse in Toronto E08', ],
['7/2011', 4354000,15305800,6776500,495000],['8/2011', 700000,10514418,7060786,0],['9/2011', 6854800,17805400,12087300,0],['10/2011', 7287400,14248900,16206500,0],['11/2011', 2696245,9733270,12698090,0],['12/2011', 1965800,6054500,8854390,0],['1/2012', 2450968,9012200,5500100,0] ]);
我尝试在值之前添加'$'以及之前建议的'%24',但两者都抛出语法错误。如果不抛出Google Charts错误,则无法引用这些值 轴#0的数据列不能是字符串×'。
感谢大家的意见。我发现一个99.9%相同的问题: How to set tooltips to display percentages to match axis in Google Visualization Line Chart?
答案 0 :(得分:1)
尝试使用%24,这是$。
的urlencoded格式答案 1 :(得分:0)
使用:
var formatter = new google.visualization.NumberFormat({prefix: '$'});
查看此处的示例:
https://developers.google.com/chart/interactive/docs/examples#interaction_example
此处有更多详情:
https://developers.google.com/chart/interactive/docs/reference#numberformatter