Got troubles with Line Chart. I use mask to show digits after decimal, but it looks as mask is ignored - screen attach (LineCharts). It shows obnly three digits...When I do the same in bar chart it work fine - screen atttach (BarCharts)
var options = {
hAxis: {
format: '#.######',
title: ''
},
vAxis: {
format: '#.######',
title: 'тыс. чел.',
viewWindow: {
min: 0
}
},
series: {
0: {curveType: 'function'},
1: {curveType: 'function'},
2: {curveType: 'function'},
3: {curveType: 'function'},
4: {curveType: 'function'},
5: {curveType: 'function'},
6: {curveType: 'function'},
7: {curveType: 'function'}
},
height: 600,
//width: 1100
};
google.charts.setOnLoadCallback(drawLine(dataGoogle, options));