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 チャートでポイント クリック イベントを利用する方法を知りたいですか? 必要なのは、ポイントの値といくつかのテキストで構成されるメッセージをユーザーに表示することです。
以下は、Shield UI チャートでクリックされたポイントのイベントを使用するコードです。
events: { pointSelect: function pointSelectHandler(args) { var Information= "Point Value: " + args.point.y; alert(Information); },
ポイント選択を有効にすることを忘れないでください:
enablePointSelection:true,