Wijmo UI for the Web
beforePaint イベント
標準 jQuery.Event オブジェクト。

このイベントは、キャンバスが描画される前に発生します。"return false" を使用してイベントをキャンセルできます。

型: Function

デフォルト値: null

シンタックス
Javascript (Usage) 
$(function () {
    %JQueryMemberName%イベントハンドラ関数を設定する 
    $(".selector").wijchartcore({ 
        beforePaint : function (e) { 
     
        } 
    });
});
Javascript (Specification) 
beforePaint = function ( 
   e : jQuery.Event
) { };

パラメータ

e
標準 jQuery.Event オブジェクト。
使用例
This code, which uses the function as an option, cancels the event.
$("#barchart").wijbarchart({
    beforePaint: function(e) {
        return false;
    }
});
This example shows how to bind to the event by type.
$("#barchart").bind("wijbarchartbeforepaint", function(e) {} );

関連トピック

参照

options タイプ
wijchartcore メソッド

 

 


Copyright © GrapeCity inc. All rights reserved.