wijmo.chart.wijchartcore 名前空間 > options タイプ : beforePaint イベント |
このイベントは、キャンバスが描画される前に発生します。"return false" を使用してイベントをキャンセルできます。
型: Function
デフォルト値: null
Javascript (Usage) | |
---|---|
$(function () { %JQueryMemberName%イベントハンドラ関数を設定する $(".selector").wijchartcore({ beforePaint : function (e) { } }); }); |
Javascript (Specification) | |
---|---|
beforePaint = function ( e : jQuery.Event ) { }; |
$("#barchart").wijbarchart({ beforePaint: function(e) { return false; } });
$("#barchart").bind("wijbarchartbeforepaint", function(e) {} );