LoginSignup
1
1

More than 5 years have passed since last update.

highchartsで発生するイベントを調べる方法

Posted at

概要

API仕様書を見ても、さっぱりわからないので実際に動作させて確認する方法を考えました。

手順

  1. hichart.src.jsを開く
  2. fireEvent = functionを検索
  3. console.log(type);を埋め込む
  4. デバッグにイベント名が表示される
highchart.src.js
    /**
     * Fire an event on a custom object
     */
    fireEvent = function (el, type, eventArguments, defaultFunction) {
        console.log(type);
        // ...
    }

以前に調べたイベント一覧

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1