10進形式の特定のグラフのオプションを設定しようとしています。私は多くの質問をしましたが、なぜ私にとってうまくいかないのかわかりません。Google Charts Axisを10進数でフォーマットすることができません
var temp_chart_options = {
title: 'Temperature',
hAxis: {title: 'Date', titleTextStyle: {color: '#262626'}, format:'decimal' },
vAxis: {minValue: 0, format: 'decimal'},
keepInBounds: true,
};
temp_chart.draw(temp_data, temp_chart_options);
私はformat: 'decimal'
、またはformat: { pattern: 'decimal' }
をやってみましたとさえtemp_chart.draw(data, google.charts.Line.convertOptions(temp_chart_options));
をしたとしても、これらの質問を見て:
- google chart vertical axis and tooltip value formatting
- Google Chart Vertical Axis and Tooltip Value Formatting
- How to format numbers in Google API Linechart?
しかし、それらのどれもように見えるO作業:(
EDIT
あなたは何をしましたか、私は軸の値を変更しようとしていないことに気付きました。それはホバーの値でした。それにもかかわらず、あなたの答えは問題を解決しました。 – dsomel21