Slide 28
Slide 28 text
>
28
ダッシュボードのリソース種別分析の部分が表⽰されませんでした。
原因はなんですか?
⏺ 問題を発⾒しました。Chart.js v3ではhorizontalBarタイプは廃⽌され、代わりにbarタイプでindexAxis: 'y'
を使⽤する必要があります。修正します:
⏺ Update(cspm_dashboard_generator.py)
⎿ Updated cspm_dashboard_generator.py with 1 addition and 1 removal
597 // リソース種別チャート
598 const resourceCtx = document.getElementById('resourceChart').getContext('2d');
599 new Chart(resourceCtx, {{
600 - type: 'horizontalBar',
600 + type: 'bar',
601 data: {{
問題を修正してもらう
AIが作成したコードの問
題点を特定して修復