Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Shield UI Charting JavaScript コンポーネントを使用しています。コントロールのページへの読み込みがいつ終了したかを判断する方法はありますか?
はい。チャートが完全にロードされた後に発生するイベントイベントがあります。これは、グラフ自体の読み込み時間に比べて時間がかかる可能性があるリモート データを処理する場合に特に重要です。以下は load イベントの使用例です。
events: { load: function(event) { alert("Chart has finished Loading"); } }