0

rgraphasp でキャンバスを呼び出すときに問題に直面していmvcます。これが私のコードで、必要なリンクをすべて追加しますrgraphs。そしてjqueryファイルも。そして、「 Uncaught TypeError: Cannot read property getContextof 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>
4

1 に答える 1