...
보고서 JScript에서 i-AUD ExcelExportServiceCall API 사용 시 전달하는 JSON 객체를 이용하여 엑셀의 스타일과 내보내기되는 포함되는 컨트롤 등을 설정할 수 있습니다.
- workbook Json 객체를 동적으로 생성하여 내보내기 시의 엑셀 workbook 속성을 미리 설정할 수 있습니다.
- ExcelExportServiceCall API 기본 설명과 예시는 아래를 참고하세요.
패널 |
---|
borderColor | #303031 |
---|
borderWidth | 1 |
---|
borderStyle | solid |
---|
title | 기본 |
---|
|
가이드 - 기본attribute key | attribute value type | example |
---|
FontName | string |
코드 블럭 |
---|
| 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
}
],
"Controls": [
{ "Name": grid_name, "Range": "A5" }
]
}
]
}; |
| FontSize | number | WorkSheets | Array<WorkSheet> attribute key | attribute value type |
---|
Name | string | DisplayGridlines | string | Ranges | Array<Range> attribute key | attribute value type |
---|
Range | string | Value | string | ColSpan(optional) | number | RowSpan(optional) | number | Style(optional) | string|object ※ 심화 가이드를 참고하세요 |
| Controls | Array<Control> attribute key | attribute value type |
---|
Name | string | Range | string | ImageExport(optional) | boolean |
|
| Styles(optional) | Array<Style> ※ 심화 가이드를 참고하세요 |
참고사항 |
---|
| - Grid 계열 (DataGrid, TreeGrid, OlapGrid)
- Chart 계열(Chart, PieChart, ScatterChart, Polygon Chart)
- MXGrid
- Image
|
정보 |
---|
title | 차트 내보내기 - ImageExport |
---|
| ImageExport의 경우, 내보내기 하는 컨트롤이 Chart인 경우 반드시 true로 설정하셔야 합니다. |
|
...