我目前正在从事一个使用 Google Visualization API 的项目。我已将图表 y 轴上的值格式化为使用vAxis: {format: 'currency'}
my 中的货币显示options
,但我不知道如何删除分值。
这是我的options
:
var options = {
chartArea: {width: '90%', height: '80%'},
vAxis: {format: 'currency', ticks: [0, 20000, 40000, 60000]},
colors: ['#4285f4'],
legend: {position: 'none'}
};
它vAxis在 $0.00、$20,000.00、$40,000.00 和 $60,000.00 处显示标记,但我希望它显示 $0、$20,000、$40,000 和 $60,000 处的标记。
在此先感谢您的帮助。
浮云间
慕莱坞森
相关分类