Он имеет настройку, которую вы можете добавить к вашим опциям вар.Например, если вы хотите добавить две цифры с плавающей запятой:
vAxis: {format:'0.00'}
hAxis: {format:'0.00'}
Вы можете добавить столько разрядов с плавающей запятой, сколько захотите, в атрибутах формата, таких как:
vAxis: {format:'0.00000'}
vAxis: {format:'0.000'}
И если вы хотите удалить десятичные дроби:
vAxis: {format:'none'}
vAxis: {format:'none'}
Или
vAxis: {format:'0'}
vAxis: {format:'0'}
{format: 'none'}: displays numbers with no formatting (e.g., 8000000)
{format: 'decimal'}: displays numbers with thousands separators (e.g., 8,000,000)
{format: 'scientific'}: displays numbers in scientific notation (e.g., 8e6)
{format: 'currency'}: displays numbers in the local currency (e.g., $8,000,000.00)
{format: 'percent'}: displays numbers as percentages (e.g., 800,000,000%)
{format: 'short'}: displays abbreviated numbers (e.g., 8M)
{format: 'long'}: displays numbers as full words (e.g., 8 million)
var options2 = {
chart: {
title: 'Chart 2',
},
{
hAxis: {
format: '0'
}
},
{
hAxis: {
format: '0'
}
}
};