更改工具提示数据和 Y 轴的 google 图表中的数字格式
Changing the number format in google charts graphs of the Tooltip Data and also Y Axis
我需要在我的工具提示数据(Y 轴)和我的 Y 轴中的每一千之后添加一个逗号。我该如何更改数字格式?我尝试将它添加到我的代码中,但似乎不起作用。我的 vAxis 和 hAxis 标题显示也不工作。
var options = {
title:'<?php echo $row["$graph_title"];?>',
height: 'auto',
width : 'auto',
tooltip : {trigger: 'selection'},
is3D: true,
vAxis: {title: '<?php echo $row1["$y_axis"]; ?>'},
hAxis: {title: '<?php echo $row1["$x_axis"]; ?>'},
bar: {groupWidth: "70%"},
vAxis: {format:'decimal'}
};
你会继续numberFormat
。
The docmentation describes it 作为
Describes how numeric columns should be formatted. Formatting options include specifying a prefix symbol (such as a dollar sign) or the punctuation to use as a thousands marker.
var numberFormat = new google.visualization.NumberFormat({
groupingSymbol: ','
});
numberFormat.format(data, COLUMNNUMBER);
我需要在我的工具提示数据(Y 轴)和我的 Y 轴中的每一千之后添加一个逗号。我该如何更改数字格式?我尝试将它添加到我的代码中,但似乎不起作用。我的 vAxis 和 hAxis 标题显示也不工作。
var options = {
title:'<?php echo $row["$graph_title"];?>',
height: 'auto',
width : 'auto',
tooltip : {trigger: 'selection'},
is3D: true,
vAxis: {title: '<?php echo $row1["$y_axis"]; ?>'},
hAxis: {title: '<?php echo $row1["$x_axis"]; ?>'},
bar: {groupWidth: "70%"},
vAxis: {format:'decimal'}
};
你会继续numberFormat
。
The docmentation describes it 作为
Describes how numeric columns should be formatted. Formatting options include specifying a prefix symbol (such as a dollar sign) or the punctuation to use as a thousands marker.
var numberFormat = new google.visualization.NumberFormat({
groupingSymbol: ','
});
numberFormat.format(data, COLUMNNUMBER);