0

このコードで水平バー RGraph デモを試していますが、うまく機能します。

var data = [1, 40, 30];
var hbar = new RGraph.HBar('myCanvas', data);
hbar.Set('chart.labels', ['Richard', 'Alex', 'Nick']);
hbar.Set('chart.background.barcolor1', 'white');
hbar.Set('chart.background.barcolor2', 'white');
hbar.Set('chart.background.grid', true);
hbar.Set('chart.colors', ['red']);
hbar.Draw();

Date数値の代わりにオブジェクトを使用する方法はありますか? 私はそれを次のようなもので動作させることができませんでした

var data = [new Date(1000), new Date(2000), new Date(3000)];
4

1 に答える 1

1

その場合、次のようなことができます。

var data, dates = [new Date("11/16/2011"), new Date("11/17/2011"), new Date("11/18/2011")], labels = [];
// Get the date from the date objects
for(var i = 0, len = dates.length; i < len; i++) {
    // Data for the graph
    data[i] = dates[i].getDate();

    // Labels for each data entry
    labels[i] = dates[i].getDate() + "/" + dates[i].getMonth() + "/" + dates[i].getYear();  
}
var hbar = new RGraph.HBar('myCanvas', data);
hbar.Set('chart.labels', labels);

/// rest of the code 

MDNの日付オブジェクト:https ://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date

于 2011-11-15T23:59:40.717 に答える