rgraph
asp でキャンバスを呼び出すときに問題に直面していmvc
ます。これが私のコードで、必要なリンクをすべて追加しますrgraphs
。そしてjquery
ファイルも。そして、「 Uncaught TypeError: Cannot read property getContext
of null 」というエラーに直面しています
var key = RGraph.HTML.Key('containerPie', {
colors: ['blue', 'green'],
labels: response.labels,
tableCss: {
//position: 'absolute',
top: '50%',
right: '-80px',
transform: 'translateY(-50%)'
}
});
new RGraph.Pie({
id: 'cvsPie',
data: response.res,
options: {
strokestyle: '#e8e8e8',
variant: 'pie3d',
linewidth: 2,
gutterLeft: 5,
shadowOffsetx: 0,
shadowOffsety: 7,
shadowColor: '#ddd',
shadowBlur: 15,
radius: 40,
tooltips: response.res,
colors: ['blue', 'green']
}
}).draw();
そして、ここに私のdivコードがあります:
<canvas id="cvsPie" width="450" height="300"></canvas>