<< Click to Display Table of Contents >>
OZUserActionCommand > ChartEditMode
OZUserActionCommand의 type 중 ChartEditMode는 차트의 회전 가능 상태를 변경할 때 발생하며, 리턴되는 attr은 다음과 같습니다.
attr |
설명 |
reportname |
보고서 이름(string) |
state |
차트 회전 가능 상태(string) |
Example
...
function OZUserActionCommand_OZViewer(type, attr) {
var MyObj = eval('(' + attr + ')');
if(type == "ChartEditMode") {
alert(MyObj.reportname);
...
}
}
...