ここに例があります // .cs ファイルからデータの値をインポートする必要があります
data = [12,36,40]
new RGraph.Bar({
id: 'cvs',
data: data,
options: {
textAccessible: true,
scaleZerostart: true,
backgroundGridAutofitNumvlines: 0,
linewidth: 0,
shadow: false,
hmargin: 7,
colors: ['Gradient(pink:red:#f33)', 'Gradient(green:#0f0)'],
labelsAbove: true,
// .cs ファイルからラベルの値をインポートする必要があります
labels: ["mon","tue","wed"],
clearto: 'white',
variant: '3d',
gutterBottom: 90,
noaxes: true
}
}).wave({ frames: 60 });
</script>
R グラフの .cs ファイルからデータの値とラベルの値を取得する必要があります。