/**************************************
* 버튼 컨트롤이 클릭되는 시점에 발생합니다.
* * arguments :
* string Id (Readonly:False) : 컨트롤이름
* string Text (Readonly:False) : 라벨 값
**************************************/
var OnButtonClick = function(sender, args){
if(args.Id === 'D_BTN') {
Chart.Legend.Distance = 50;
Chart.Draw();
} else if(args.Id === 'D_INIT_BTN') {
Chart.Legend.Distance = 20;
Chart.Draw();
} else if(args.Id === 'M_BTN') {
Chart1.Legend.MarginTop = 10;
Chart1.Draw();
} else {
Chart1.Legend.MarginTop = 2;
Chart1.Draw();
}
}; |