페이지 트리
메타 데이터의 끝으로 건너뛰기
메타 데이터의 시작으로 이동

이 페이지의 이전 버전을 보고 있습니다. 현재 버전 보기.

현재와 비교 페이지 이력 보기

버전 1 다음 »

i-AUD ExcelExportServiceCall API 사용 시 전달하는 JSON 객체를 이용하여 엑셀의 스타일과 내보내기되는 컨트롤 등을 설정할 수 있습니다.

기본

가이드 - 기본

attribute keyattribute value typeexample
FontNamestring

var WORKBOOK = {
         "FontName": "맑은 고딕",
         "FontSize": 11,
         "WorkSheets": [
             {
                 "Name": grid_name,
                 "DisplayGridlines": "false",
                 "Ranges": [
                     {
                         "Range": "A1", "Value": "■ Report Name : " + Matrix.GetReportInfo().NAME,
                         "ColSpan": 5
                     },
                     {
                         "Range": "A2", "Value": "■ Printer : " + Matrix.GetUserInfo().UserName,
                         "ColSpan": 5
                     },
                     {
                         "Range": "A3", "Value": "■ Print Time : " + Matrix.GetDateTime().ToString("yyyy-MM-dd HH:mm:ss"),
                         "ColSpan": 5
                     }
                 ],
                 "Controls": [
                     { "Name": grid_name, "Range": "A5" }
                 ]
             }
         ]
     };
FontSizenumber
WorkSheets

Array<worksheet>

attribute keyattribute value type
Namestring
DisplayGridlinesstring
Ranges

Array<range>

attribute keyattribute value type
Rangestring
Valuestring
ColSpan(optional)number
RowSpan(optional)number
Controls

Array<control>

attribute keyattribute value type
Namestring
Rangestring

ImageExport(optional)

boolean

내보내기 가능한 컨트롤 타입

  • Grid 계열 (DataGrid, TreeGrid, OlapGrid)
  • Chart 계열(Chart, PieChart, ScatterChart, Polygon Chart)
  • MXGrid
  • Image

차트 내보내기 - ImageExport

ImageExport의 경우, 내보내기 하는 컨트롤이 Chart인 경우 반드시 true로 설정하셔야 합니다.

심화(셀 스타일 지정하기)

가이드 - 심화(셀 스타일 지정하기)



  • 레이블 없음