commit 4f475e9e369e505fb93ef65863a07ea7454fc4cf
Author: panda <1415243231@qq.com>
Date: Mon May 11 08:34:03 2026 +0800
feat: 添加Qwen3嵌入模型及JRXML报告相关文件
添加Qwen3-4B嵌入模型配置文件及权重文件
添加多个JRXML报告的数据查询和字段定义文件
添加PdfEncryptReport.jrxml示例报告文件
diff --git a/__pycache__/jrxml_chunker.cpython-311.pyc b/__pycache__/jrxml_chunker.cpython-311.pyc
new file mode 100644
index 0000000..2685d6e
Binary files /dev/null and b/__pycache__/jrxml_chunker.cpython-311.pyc differ
diff --git a/__pycache__/jrxml_chunker.cpython-314.pyc b/__pycache__/jrxml_chunker.cpython-314.pyc
new file mode 100644
index 0000000..1363a9f
Binary files /dev/null and b/__pycache__/jrxml_chunker.cpython-314.pyc differ
diff --git a/collect_jrxml.py b/collect_jrxml.py
new file mode 100644
index 0000000..d85e6c1
--- /dev/null
+++ b/collect_jrxml.py
@@ -0,0 +1,64 @@
+#!/usr/bin/env python3
+"""
+JRXML 文件收集脚本
+从指定目录递归查找所有 .jrxml 文件并复制到项目的 jrxml_source 目录
+"""
+
+import os
+import shutil
+
+def collect_jrxml_files(source_dir: str, target_dir: str) -> int:
+ """
+ 递归收集所有 .jrxml 文件并复制到目标目录
+
+ Args:
+ source_dir: 源目录路径
+ target_dir: 目标目录路径
+
+ Returns:
+ 复制的文件数量
+ """
+ os.makedirs(target_dir, exist_ok=True)
+
+ copied_count = 0
+ skipped_count = 0
+
+ print(f"开始扫描目录: {source_dir}")
+ print(f"目标目录: {target_dir}")
+ print("=" * 60)
+
+ for root, dirs, files in os.walk(source_dir):
+ for filename in files:
+ if filename.lower().endswith('.jrxml'):
+ source_path = os.path.join(root, filename)
+ target_path = os.path.join(target_dir, filename)
+
+ counter = 1
+ while os.path.exists(target_path):
+ name, ext = os.path.splitext(filename)
+ target_path = os.path.join(target_dir, f"{name}_{counter}{ext}")
+ counter += 1
+
+ try:
+ shutil.copy2(source_path, target_path)
+ copied_count += 1
+ print(f"[OK] {source_path} -> {os.path.basename(target_path)}")
+ except Exception as e:
+ skipped_count += 1
+ print(f"[FAIL] {source_path}: {e}")
+
+ print("=" * 60)
+ print(f"完成!复制了 {copied_count} 个文件,跳过 {skipped_count} 个文件")
+
+ return copied_count
+
+if __name__ == "__main__":
+ SOURCE_DIR = r"C:\Users\zy187\JaspersoftWorkspace\JasperReportsSamples"
+ TARGET_DIR = os.path.join(os.path.dirname(__file__), "jrxml_source")
+
+ if not os.path.exists(SOURCE_DIR):
+ print(f"错误:源目录不存在 - {SOURCE_DIR}")
+ print("请检查路径是否正确")
+ exit(1)
+
+ collect_jrxml_files(SOURCE_DIR, TARGET_DIR)
\ No newline at end of file
diff --git a/down_embedding_model.py b/down_embedding_model.py
new file mode 100644
index 0000000..9695284
--- /dev/null
+++ b/down_embedding_model.py
@@ -0,0 +1,62 @@
+"""
+down_embedding_model.py
+下载 Qwen3-Embedding-4B 嵌入模型
+"""
+
+import os
+import sys
+from pathlib import Path
+
+def download_model():
+ """下载 Qwen3-Embedding-4B 模型"""
+ project_root = Path(__file__).resolve().parent
+ model_dir = project_root / "models" / "Qwen3-Embedding-4B"
+
+ print("=" * 60)
+ print("Qwen3-Embedding-4B 模型下载")
+ print("=" * 60)
+ print(f"模型目录: {model_dir}")
+ print()
+
+ # 使用国内镜像加速
+ os.environ['HF_ENDPOINT'] = 'https://hf-mirror.com'
+ print("使用 HuggingFace 镜像: https://hf-mirror.com")
+ print()
+
+ try:
+ from huggingface_hub import snapshot_download
+ except ImportError:
+ print("❌ 未安装 huggingface_hub,正在安装...")
+ import subprocess
+ subprocess.check_call([sys.executable, "-m", "pip", "install", "huggingface_hub"])
+ from huggingface_hub import snapshot_download
+
+ # 创建模型目录
+ os.makedirs(model_dir, exist_ok=True)
+
+ print(f"开始下载 Qwen3-Embedding-4B 模型...")
+ print(f"模型大小约 4GB,请耐心等待...")
+ print()
+
+ try:
+ snapshot_download(
+ repo_id="Qwen/Qwen3-Embedding-4B",
+ local_dir=str(model_dir),
+ local_dir_use_symlinks=False,
+ resume_download=True
+ )
+ print()
+ print("=" * 60)
+ print("✅ 模型下载完成!")
+ print("=" * 60)
+ print(f"模型路径: {model_dir}")
+ return True
+ except Exception as e:
+ print()
+ print("=" * 60)
+ print(f"❌ 下载失败: {e}")
+ print("=" * 60)
+ return False
+
+if __name__ == "__main__":
+ download_model()
\ No newline at end of file
diff --git a/embed_chunks.py b/embed_chunks.py
new file mode 100644
index 0000000..0a0be8c
--- /dev/null
+++ b/embed_chunks.py
@@ -0,0 +1,136 @@
+"""
+embed_chunks.py
+使用本地 Qwen3-Embedding-4B 模型对 JRXML chunks 进行向量化
+支持 GPU (CUDA) 或 CPU
+"""
+
+import os, sys, json, pickle
+import numpy as np
+import torch
+from tqdm import tqdm
+from sentence_transformers import SentenceTransformer
+
+def build_text_for_embedding(chunk: dict) -> str:
+ """
+ 将单个 chunk 转换为适合向量化的文本
+ 拼接:类型、描述、上下文、关键元数据、部分 XML
+ """
+ parts = [
+ f"[ChunkType: {chunk.get('chunk_type', 'unknown')}]",
+ chunk.get('human_description', ''),
+ ]
+ context = chunk.get('context', '')
+ if context:
+ parts.append(f"Context: {context}")
+
+ # 添加部分 XML (前500字符)
+ raw_xml = chunk.get('raw_xml', '')
+ if raw_xml:
+ parts.append(f"XML: {raw_xml[:500]}")
+
+ # 添加元数据
+ meta = chunk.get('metadata', {})
+ if meta:
+ if 'field_names' in meta:
+ parts.append(f"Fields: {', '.join(meta['field_names'])}")
+ if 'parameter_names' in meta:
+ parts.append(f"Parameters: {', '.join(meta['parameter_names'])}")
+ if 'report_name' in meta:
+ parts.append(f"Report: {meta['report_name']}")
+ if 'band_name' in meta:
+ parts.append(f"Band: {meta['band_name']}")
+ if 'element_kind' in meta:
+ parts.append(f"Element: {meta['element_kind']}")
+ if 'query_language' in meta:
+ parts.append(f"QueryLang: {meta['query_language']}")
+ return "\n".join(parts)
+
+def main(chunks_json_path: str, output_dir: str = "./embeddings",
+ model_path: str = "./models/Qwen3-Embedding-4B",
+ batch_size: int = 16, normalize: bool = True):
+ """
+ 主流程:
+ 1. 加载 chunk JSON
+ 2. 加载嵌入模型
+ 3. 构造文本并向量化
+ 4. 保存向量及映射文件
+ """
+ # --- 1. 加载 chunks ---
+ print(f"📄 Loading chunks from {chunks_json_path}")
+ with open(chunks_json_path, 'r', encoding='utf-8') as f:
+ chunks = json.load(f)
+ print(f" Total chunks: {len(chunks)}")
+
+ # --- 2. 加载模型 ---
+ device = "cuda" if torch.cuda.is_available() else "cpu"
+ print(f"🧠 Loading embedding model from {model_path} on {device}")
+ model = SentenceTransformer(model_path, device=device)
+ if device == "cuda":
+ print(f" GPU memory allocated: {torch.cuda.memory_allocated(0)/1024**3:.2f} GB")
+
+ # --- 3. 构造文本 ---
+ print("🛠️ Building text representations...")
+ texts = []
+ chunk_ids = []
+ for chunk in chunks:
+ texts.append(build_text_for_embedding(chunk))
+ chunk_ids.append(chunk.get('chunk_id', -1))
+
+ # --- 4. 向量化 ---
+ print(f"🔢 Encoding {len(texts)} texts (batch_size={batch_size})...")
+ embeddings = model.encode(
+ texts,
+ batch_size=batch_size,
+ show_progress_bar=True,
+ normalize_embeddings=normalize,
+ convert_to_numpy=True
+ )
+ print(f" Embeddings shape: {embeddings.shape}")
+
+ # --- 5. 保存到输出目录 ---
+ os.makedirs(output_dir, exist_ok=True)
+
+ # 向量矩阵 (float32)
+ np.save(os.path.join(output_dir, "embeddings.npy"), embeddings.astype('float32'))
+ # chunk_id 映射
+ with open(os.path.join(output_dir, "chunk_id_map.json"), 'w') as f:
+ json.dump(chunk_ids, f, ensure_ascii=False, indent=2)
+ # 原始 chunks 副本
+ with open(os.path.join(output_dir, "chunks.json"), 'w') as f:
+ json.dump(chunks, f, ensure_ascii=False, indent=2)
+ # pickle 方便调试
+ with open(os.path.join(output_dir, "embeddings.pkl"), 'wb') as f:
+ pickle.dump({
+ 'chunks': chunks,
+ 'embeddings': embeddings,
+ 'texts': texts,
+ 'normalized': normalize
+ }, f)
+
+ # --- 6. 质量检查 ---
+ nan_count = np.isnan(embeddings).sum()
+ print(f"\n📊 Quality check:")
+ print(f" NaN values: {nan_count}")
+ norms = np.linalg.norm(embeddings, axis=1)
+ print(f" Norms: min={norms.min():.4f}, max={norms.max():.4f}, mean={norms.mean():.4f}")
+ print(f"\n✅ Embeddings saved to {output_dir}/")
+ print(f" Files: embeddings.npy, chunk_id_map.json, chunks.json, embeddings.pkl")
+
+if __name__ == "__main__":
+ import argparse
+ parser = argparse.ArgumentParser()
+ parser.add_argument("chunks_json", help="Path to all_chunks.json")
+ parser.add_argument("--output_dir", "-o", default="./embeddings")
+ parser.add_argument("--model_path", "-m", default="./models/Qwen3-Embedding-4B")
+ parser.add_argument("--batch_size", "-b", type=int, default=8,
+ help="Batch size (lower if OOM)")
+ parser.add_argument("--no_normalize", action="store_true")
+ args = parser.parse_args()
+
+ main(
+ chunks_json_path=args.chunks_json,
+ output_dir=args.output_dir,
+ model_path=args.model_path,
+ batch_size=args.batch_size,
+ normalize=not args.no_normalize
+ )
\ No newline at end of file
diff --git a/jrxml_banch_chunker.py b/jrxml_banch_chunker.py
new file mode 100644
index 0000000..da8db92
--- /dev/null
+++ b/jrxml_banch_chunker.py
@@ -0,0 +1,245 @@
+"""
+JRXML Batch Chunker
+批量处理JRXML模板文件的入口脚本
+"""
+
+import os
+import sys
+import json
+import time
+from pathlib import Path
+from datetime import datetime
+from collections import defaultdict
+from jrxml_chunker import JRXMLSemanticChunker, save_chunks_to_json, print_chunk_summary
+
+
+def batch_chunk_with_report(input_dir: str, output_dir: str = None, max_chunk_size: int = 2000):
+ """
+ 批量分块并生成详细报告
+
+ Args:
+ input_dir: JRXML文件目录
+ output_dir: 输出目录,默认为 input_dir/../chunked_output
+ max_chunk_size: 单个chunk最大字节数
+ """
+ input_path = Path(input_dir).resolve()
+
+ if not input_path.exists():
+ print(f"❌ 目录不存在: {input_path}")
+ return None
+
+ if not input_path.is_dir():
+ print(f"❌ 不是目录: {input_path}")
+ return None
+
+ # 设置输出目录
+ if output_dir is None:
+ output_dir = input_path.parent / f"{input_path.name}_chunked_{datetime.now().strftime('%Y%m%d_%H%M%S')}"
+ output_path = Path(output_dir)
+ output_path.mkdir(parents=True, exist_ok=True)
+
+ print(f"\n{'='*60}")
+ print(f"JRXML 语义分块 v3.0 - 批量处理")
+ print(f"{'='*60}")
+ print(f"输入目录: {input_path}")
+ print(f"输出目录: {output_path}")
+ print(f"{'='*60}\n")
+
+ # 初始化
+ chunker = JRXMLSemanticChunker(max_chunk_size=max_chunk_size)
+
+ # 收集所有JRXML文件
+ jrxml_files = list(input_path.rglob("*.jrxml")) + list(input_path.rglob("*.JRXML"))
+ total_files = len(jrxml_files)
+ print(f"找到 {total_files} 个JRXML文件\n")
+
+ if total_files == 0:
+ print("⚠️ 未找到JRXML文件")
+ return None
+
+ # 统计变量
+ all_chunks = []
+ stats = {
+ "total_files": total_files,
+ "success": 0,
+ "failed": 0,
+ "total_chunks": 0,
+ "failed_files": [],
+ "chunks_per_file": defaultdict(int),
+ "chunk_types": defaultdict(int),
+ "started_at": datetime.now().isoformat()
+ }
+
+ start_time = time.time()
+
+ # 逐个处理文件
+ for i, jrxml_file in enumerate(jrxml_files, 1):
+ relative_path = jrxml_file.relative_to(input_path)
+
+ try:
+ file_start = time.time()
+ chunks = chunker.chunk_file(str(jrxml_file))
+ file_duration = time.time() - file_start
+
+ all_chunks.extend(chunks)
+
+ # 统计
+ stats["success"] += 1
+ stats["total_chunks"] += len(chunks)
+ stats["chunks_per_file"][str(relative_path)] = len(chunks)
+
+ for chunk in chunks:
+ stats["chunk_types"][chunk["chunk_type"]] += 1
+
+ print(f"[{i}/{total_files}] ✅ {relative_path} → {len(chunks)} chunks ({file_duration:.2f}s)")
+
+ except Exception as e:
+ stats["failed"] += 1
+ error_info = {"file": str(relative_path), "error": str(e)}
+ stats["failed_files"].append(error_info)
+ print(f"[{i}/{total_files}] ❌ {relative_path} → {e}")
+
+ total_duration = time.time() - start_time
+ stats["processing_time"] = round(total_duration, 2)
+ stats["finished_at"] = datetime.now().isoformat()
+
+ # 保存所有chunks
+ all_chunks_path = output_path / "all_chunks.json"
+ save_chunks_to_json(all_chunks, str(all_chunks_path))
+
+ # 保存统计报告
+ stats_path = output_path / "processing_stats.json"
+ with open(stats_path, "w", encoding="utf-8") as f:
+ json.dump(stats, f, ensure_ascii=False, indent=2)
+
+ # 按文件保存独立chunks
+ per_file_dir = output_path / "per_file"
+ per_file_dir.mkdir(exist_ok=True)
+
+ chunks_by_file = defaultdict(list)
+ for chunk in all_chunks:
+ # 从context中提取文件名
+ context = chunk.get("context", "")
+ chunks_by_file[context].append(chunk)
+
+ for context, file_chunks in chunks_by_file.items():
+ # 简化文件名
+ safe_name = context.replace("'", "").replace(" ", "_").replace("Report_", "")[:100]
+ file_path = per_file_dir / f"{safe_name}.json"
+ with open(file_path, "w", encoding="utf-8") as f:
+ json.dump(file_chunks, f, ensure_ascii=False, indent=2)
+
+ # 打印总结
+ print(f"\n{'='*60}")
+ print(f"处理完成!")
+ print(f"{'='*60}")
+ print(f"✅ 成功: {stats['success']} 文件")
+ print(f"❌ 失败: {stats['failed']} 文件")
+ print(f"📦 总Chunks: {stats['total_chunks']}")
+ print(f"⏱️ 总耗时: {total_duration:.2f}s")
+ print(f"📂 输出目录: {output_path}")
+ print(f"\n主要文件:")
+ print(f" - {all_chunks_path}")
+ print(f" - {stats_path}")
+ print(f" - {per_file_dir}/ (按文件分类的chunks)")
+
+ print(f"\nChunk类型分布:")
+ print_chunk_summary(all_chunks)
+
+ if stats["failed_files"]:
+ print(f"\n⚠️ 失败文件详情:")
+ for fail in stats["failed_files"]:
+ print(f" - {fail['file']}: {fail['error']}")
+
+ return {
+ "chunks": all_chunks,
+ "stats": stats,
+ "output_path": str(output_path)
+ }
+
+
+def chunk_single_file_with_report(file_path: str, output_dir: str = None):
+ """处理单个文件并生成详细报告"""
+ file_path = Path(file_path).resolve()
+
+ if not file_path.exists():
+ print(f"❌ 文件不存在: {file_path}")
+ return None
+
+ if output_dir is None:
+ output_dir = file_path.parent / f"{file_path.stem}_chunks"
+
+ output_path = Path(output_dir)
+ output_path.mkdir(parents=True, exist_ok=True)
+
+ print(f"\n处理文件: {file_path.name}")
+ print(f"输出目录: {output_path}\n")
+
+ chunker = JRXMLSemanticChunker(max_chunk_size=2000)
+
+ start_time = time.time()
+ chunks = chunker.chunk_file(str(file_path))
+ duration = time.time() - start_time
+
+ # 保存结果
+ chunks_path = output_path / f"{file_path.stem}_chunks.json"
+ save_chunks_to_json(chunks, str(chunks_path))
+
+ # 生成人类可读的摘要
+ summary_path = output_path / f"{file_path.stem}_summary.txt"
+ with open(summary_path, "w", encoding="utf-8") as f:
+ f.write(f"JRXML Chunking Report: {file_path.name}\n")
+ f.write(f"{'='*60}\n")
+ f.write(f"Processing time: {duration:.2f}s\n")
+ f.write(f"Total chunks: {len(chunks)}\n\n")
+
+ for chunk in chunks:
+ f.write(f"[Chunk {chunk['chunk_id']}] {chunk['chunk_type']}\n")
+ f.write(f" Description: {chunk['human_description'][:200]}\n")
+ f.write(f" XML Length: {len(chunk['raw_xml'])} chars\n")
+ f.write(f" Context: {chunk.get('context', 'N/A')}\n\n")
+
+ print(f"✅ 生成 {len(chunks)} chunks")
+ print(f"📄 Chunks JSON: {chunks_path}")
+ print(f"📄 可读摘要: {summary_path}")
+ print(f"⏱️ 耗时: {duration:.2f}s")
+
+ print_chunk_summary(chunks)
+
+ return chunks
+
+
+if __name__ == "__main__":
+ if len(sys.argv) < 2:
+ print("=" * 60)
+ print("JRXML Semantic Chunking v3.0 - 批量处理工具")
+ print("=" * 60)
+ print("\n用法:")
+ print(" python batch_chunker.py <目录路径>")
+ print(" python batch_chunker.py <文件路径>")
+ print("\n参数:")
+ print(" <路径> JRXML文件所在目录 或 单个JRXML文件路径")
+ print(" --output <目录> 指定输出目录 (可选)")
+ print("\n示例:")
+ print(" python batch_chunker.py ./jasper_reports")
+ print(" python batch_chunker.py ./jasper_reports --output ./chunks")
+ print(" python batch_chunker.py report.jrxml")
+ sys.exit(0)
+
+ input_path = sys.argv[1]
+
+ # 解析--output参数
+ output_dir = None
+ if "--output" in sys.argv:
+ idx = sys.argv.index("--output")
+ if idx + 1 < len(sys.argv):
+ output_dir = sys.argv[idx + 1]
+
+ if os.path.isdir(input_path):
+ # 批量处理目录
+ batch_chunk_with_report(input_path, output_dir)
+ elif os.path.isfile(input_path):
+ # 处理单个文件
+ chunk_single_file_with_report(input_path, output_dir)
+ else:
+ print(f"❌ 路径无效: {input_path}")
\ No newline at end of file
diff --git a/jrxml_chunker.py b/jrxml_chunker.py
new file mode 100644
index 0000000..e36a363
--- /dev/null
+++ b/jrxml_chunker.py
@@ -0,0 +1,1175 @@
+"""
+JRXML Semantic Chunking v3.0
+Goal: Chunk JasperReports template files by domain semantics for LLM learning
+
+Complete data source type support:
+- SQL (JDBC database)
+- HQL (Hibernate Query Language)
+- XPath (XML data)
+- JSON (JSON data)
+- JSONQL (JSON Query Language)
+- CSV (CSV data)
+- Excel/XLSX via Data Adapter
+- XML via Data Adapter
+- HTTP Data Adapter (remote data)
+- Bean Collection Data Source
+- Empty Data Source
+
+Complete element kinds:
+- staticText, textField, line, rectangle, ellipse
+- image, subreport, chart, crosstab
+- frame, elementGroup, component, break, genericElement
+"""
+
+import xml.etree.ElementTree as ET
+import json
+import os
+from typing import List, Dict, Set
+from dataclasses import dataclass, field, asdict
+
+
+@dataclass
+class JRXMLChunk:
+ """Single chunk data structure"""
+ chunk_id: int
+ chunk_type: str
+ human_description: str
+ raw_xml: str
+ context: str
+ metadata: Dict = field(default_factory=dict)
+
+
+class JRXMLSemanticChunker:
+ """JRXML Semantic Chunking v3.0"""
+
+ # Standard Band types
+ STANDARD_BANDS: Set[str] = {
+ "title", "pageHeader", "columnHeader", "detail", "columnFooter",
+ "pageFooter", "summary", "background", "noData", "lastPageFooter"
+ }
+
+ # Element kinds (using kind attribute)
+ ELEMENT_KINDS: Set[str] = {
+ "staticText", "textField", "line", "rectangle", "ellipse",
+ "image", "subreport", "chart", "crosstab", "frame",
+ "elementGroup", "component", "break", "genericElement"
+ }
+
+ # Query languages
+ QUERY_LANGUAGES: Set[str] = {
+ "sql", "hql", "xpath", "json", "jsonql", "csv", "xml"
+ }
+
+ # Data source related properties
+ DATA_SOURCE_PROPERTIES: Set[str] = {
+ "net.sf.jasperreports.data.adapter",
+ "net.sf.jasperreports.json.source",
+ "net.sf.jasperreports.csv.source",
+ "net.sf.jasperreports.json.schema",
+ "net.sf.jasperreports.csv.column.names",
+ "net.sf.jasperreports.csv.record.delimiter",
+ "com.jaspersoft.studio.data.defaultdataadapter",
+ }
+
+ # Field expression properties by query language
+ FIELD_EXPRESSION_PROPERTIES: Dict[str, str] = {
+ "json": "net.sf.jasperreports.json.field.expression",
+ "xpath": "net.sf.jasperreports.xpath.field.expression",
+ "jsonql": "net.sf.jasperreports.jsonql.field.expression",
+ }
+
+ def __init__(self, max_chunk_size: int = 2000):
+ self.max_chunk_size = max_chunk_size
+
+ def chunk_file(self, file_path: str) -> List[Dict]:
+ if not os.path.exists(file_path):
+ raise FileNotFoundError(f"File not found: {file_path}")
+
+ tree = ET.parse(file_path)
+ root = tree.getroot()
+
+ report_name = root.attrib.get("name", "UnnamedReport")
+ chunks = []
+ chunk_id = 0
+
+ # Report Overview (with data source analysis)
+ overview_chunk = self._create_overview_chunk(chunk_id, root, report_name)
+ chunks.append(asdict(overview_chunk))
+ chunk_id += 1
+
+ # Imports
+ import_chunks = self._extract_import_chunks(chunk_id, root, report_name)
+ for ic in import_chunks:
+ chunks.append(asdict(ic))
+ chunk_id += 1
+
+ # Dataset Definitions
+ dataset_chunks = self._extract_dataset_chunks(chunk_id, root, report_name)
+ for dc in dataset_chunks:
+ chunks.append(asdict(dc))
+ chunk_id += 1
+
+ # Data Source Configuration
+ datasource_chunks = self._extract_datasource_chunks(chunk_id, root, report_name)
+ for dsc in datasource_chunks:
+ chunks.append(asdict(dsc))
+ chunk_id += 1
+
+ # SQL/Query (main query)
+ query_chunks = self._extract_query_chunks(chunk_id, root, report_name)
+ for qc in query_chunks:
+ chunks.append(asdict(qc))
+ chunk_id += 1
+
+ # Parameter Definitions
+ param_chunks = self._extract_parameter_chunks(chunk_id, root, report_name)
+ for pc in param_chunks:
+ chunks.append(asdict(pc))
+ chunk_id += 1
+
+ # Field Definitions
+ field_chunks = self._extract_field_chunks(chunk_id, root, report_name)
+ for fc in field_chunks:
+ chunks.append(asdict(fc))
+ chunk_id += 1
+
+ # Sort Fields
+ sortfield_chunks = self._extract_sortfield_chunks(chunk_id, root, report_name)
+ for sfc in sortfield_chunks:
+ chunks.append(asdict(sfc))
+ chunk_id += 1
+
+ # Filter Expression
+ filter_chunks = self._extract_filter_chunks(chunk_id, root, report_name)
+ for fc in filter_chunks:
+ chunks.append(asdict(fc))
+ chunk_id += 1
+
+ # Variable Definitions
+ variable_chunks = self._extract_variable_chunks(chunk_id, root, report_name)
+ for vc in variable_chunks:
+ chunks.append(asdict(vc))
+ chunk_id += 1
+
+ # Style Definitions
+ style_chunks = self._extract_style_chunks(chunk_id, root, report_name)
+ for sc in style_chunks:
+ chunks.append(asdict(sc))
+ chunk_id += 1
+
+ # Group Definitions
+ group_chunks = self._extract_group_chunks(chunk_id, root, report_name)
+ for gc in group_chunks:
+ chunks.append(asdict(gc))
+ chunk_id += 1
+
+ # Standard Bands
+ band_chunks = self._extract_standard_band_chunks(chunk_id, root, report_name)
+ for bc in band_chunks:
+ chunks.append(asdict(bc))
+ chunk_id += 1
+
+ # Charts
+ chart_chunks = self._extract_chart_chunks(chunk_id, root, report_name)
+ for cc in chart_chunks:
+ chunks.append(asdict(cc))
+ chunk_id += 1
+
+ # Crosstabs
+ crosstab_chunks = self._extract_crosstab_chunks(chunk_id, root, report_name)
+ for ctc in crosstab_chunks:
+ chunks.append(asdict(ctc))
+ chunk_id += 1
+
+ # Subreports
+ subreport_chunks = self._extract_subreport_chunks(chunk_id, root, report_name)
+ for src in subreport_chunks:
+ chunks.append(asdict(src))
+ chunk_id += 1
+
+ # Components (lists, etc.)
+ component_chunks = self._extract_component_chunks(chunk_id, root, report_name)
+ for cc in component_chunks:
+ chunks.append(asdict(cc))
+ chunk_id += 1
+
+ return chunks
+
+ def chunk_directory(self, dir_path: str, extensions: tuple = (".jrxml",)) -> List[Dict]:
+ all_chunks = []
+ file_count = 0
+ for root, _, files in os.walk(dir_path):
+ for file in files:
+ if file.lower().endswith(extensions):
+ file_path = os.path.join(root, file)
+ try:
+ chunks = self.chunk_file(file_path)
+ all_chunks.extend(chunks)
+ file_count += 1
+ print(f"OK {file_path}: {len(chunks)} chunks")
+ except Exception as e:
+ print(f"FAIL {file_path}: {e}")
+ print(f"\nTotal: {file_count} files, {len(all_chunks)} chunks")
+ return all_chunks
+
+ # ==================== Overview ====================
+
+ def _create_overview_chunk(self, chunk_id: int, root: ET.Element, report_name: str) -> JRXMLChunk:
+ attrs = dict(root.attrib)
+ bands_with_content = [b.tag for b in root if b.tag in self.STANDARD_BANDS and len(b) > 0]
+ fields = root.findall("field")
+ field_names = [f.attrib.get("name", "") for f in fields]
+ params = root.findall("parameter")
+ param_names = [p.attrib.get("name", "") for p in params]
+ variables = root.findall("variable")
+ variable_names = [v.attrib.get("name", "") for v in variables]
+ groups = root.findall("group")
+ group_names = [g.attrib.get("name", "") for g in groups]
+
+ # Analyze data source
+ datasource_info = self._analyze_datasource(root)
+
+ # Check for charts and crosstabs
+ charts = root.findall(".//element[@kind='chart']")
+ crosstabs = root.findall(".//element[@kind='crosstab']")
+ subreports = root.findall(".//element[@kind='subreport']")
+
+ desc_parts = [
+ f"This is a JasperReports template overview for report '{report_name}'.",
+ f"Page size: {attrs.get('pageWidth', 'N/A')} x {attrs.get('pageHeight', 'N/A')} {attrs.get('orientation', 'portrait')}.",
+ f"Contains {len(bands_with_content)} standard bands with content: {', '.join(bands_with_content) if bands_with_content else 'none'}.",
+ f"Defines {len(fields)} fields: {', '.join(field_names) if field_names else 'none'}.",
+ f"Defines {len(params)} parameters: {', '.join(param_names) if param_names else 'none'}.",
+ f"Defines {len(variables)} variables: {', '.join(variable_names) if variable_names else 'none'}.",
+ f"Defines {len(groups)} groups: {', '.join(group_names) if group_names else 'none'}.",
+ ]
+
+ # Add data source info
+ if datasource_info["type"]:
+ desc_parts.append(f"Data source type: {datasource_info['type']}.")
+ if datasource_info["source"]:
+ desc_parts.append(f"Source: {datasource_info['source']}.")
+ if datasource_info["query_language"]:
+ desc_parts.append(f"Query language: {datasource_info['query_language']}.")
+
+ if charts:
+ desc_parts.append(f"Contains {len(charts)} charts.")
+ if crosstabs:
+ desc_parts.append(f"Contains {len(crosstabs)} crosstabs.")
+ if subreports:
+ desc_parts.append(f"Contains {len(subreports)} subreports.")
+
+ description = " ".join(desc_parts)
+
+ attr_strs = [f'{k}="{v}"' for k, v in attrs.items()]
+ root_attrs_xml = ""
+
+ return JRXMLChunk(
+ chunk_id=chunk_id,
+ chunk_type="report_overview",
+ human_description=description,
+ raw_xml=root_attrs_xml,
+ context=f"Report '{report_name}' overall structure overview",
+ metadata={
+ "report_name": report_name,
+ "bands": bands_with_content,
+ "field_count": len(fields),
+ "parameter_count": len(params),
+ "variable_count": len(variables),
+ "group_count": len(groups),
+ "chart_count": len(charts),
+ "crosstab_count": len(crosstabs),
+ "subreport_count": len(subreports),
+ "datasource": datasource_info,
+ "attributes": attrs
+ }
+ )
+
+ def _analyze_datasource(self, root: ET.Element) -> Dict:
+ """Analyze the data source configuration of a report"""
+ info = {
+ "type": None,
+ "source": None,
+ "query_language": None,
+ "properties": {}
+ }
+
+ # Check for query language
+ query_elem = root.find("query")
+ if query_elem is not None:
+ lang = query_elem.attrib.get("language", "").lower()
+ if lang in self.QUERY_LANGUAGES:
+ info["query_language"] = lang
+ info["type"] = self._get_datasource_type_by_query_lang(lang)
+
+ # Check for data adapter property
+ for prop in root.findall("property"):
+ name = prop.attrib.get("name", "")
+ value = prop.attrib.get("value", "")
+
+ if name == "net.sf.jasperreports.data.adapter":
+ info["source"] = value
+ if not info["type"]:
+ info["type"] = "DataAdapter"
+ elif name == "net.sf.jasperreports.json.source":
+ info["source"] = value
+ if not info["type"]:
+ info["type"] = "JSON"
+ elif name == "net.sf.jasperreports.csv.source":
+ info["source"] = value
+ if not info["type"]:
+ info["type"] = "CSV"
+ elif name == "com.jaspersoft.studio.data.defaultdataadapter":
+ if value and value != "NO_DATA_ADAPTER":
+ info["source"] = value
+ if not info["type"]:
+ info["type"] = "DataAdapter"
+
+ if name in self.DATA_SOURCE_PROPERTIES or name.startswith("net.sf.jasperreports."):
+ info["properties"][name] = value
+
+ return info
+
+ def _get_datasource_type_by_query_lang(self, lang: str) -> str:
+ """Map query language to data source type"""
+ mapping = {
+ "sql": "JDBC/SQL",
+ "hql": "Hibernate/HQL",
+ "xpath": "XML/XPath",
+ "json": "JSON",
+ "jsonql": "JSONQL",
+ "csv": "CSV",
+ "xml": "XML"
+ }
+ return mapping.get(lang, lang.upper())
+
+ # ==================== Imports ====================
+
+ def _extract_import_chunks(self, chunk_id: int, root: ET.Element, report_name: str) -> List[JRXMLChunk]:
+ chunks = []
+ imports = root.findall("import")
+
+ if not imports:
+ return chunks
+
+ import_list = []
+ for imp in imports:
+ imp_text = imp.attrib.get("value", "")
+ if imp_text:
+ import_list.append(imp_text)
+
+ if import_list:
+ imports_xml = "\n".join([f'' for imp in import_list])
+ description = f"These are Java imports for report '{report_name}': {', '.join(import_list)}."
+
+ chunks.append(JRXMLChunk(
+ chunk_id=chunk_id,
+ chunk_type="imports",
+ human_description=description,
+ raw_xml=imports_xml,
+ context=f"Report '{report_name}' Java imports",
+ metadata={"imports": import_list, "count": len(import_list)}
+ ))
+
+ return chunks
+
+ # ==================== Data Source ====================
+
+ def _extract_datasource_chunks(self, chunk_id: int, root: ET.Element, report_name: str) -> List[JRXMLChunk]:
+ chunks = []
+ props = root.findall("property")
+
+ datasource_props = {}
+ for prop in props:
+ name = prop.attrib.get("name", "")
+ value = prop.attrib.get("value", "")
+ if name in self.DATA_SOURCE_PROPERTIES or any(name.startswith(p) for p in [
+ "net.sf.jasperreports.data", "net.sf.jasperreports.json",
+ "net.sf.jasperreports.csv", "com.jaspersoft.studio.data"
+ ]):
+ datasource_props[name] = value
+
+ if not datasource_props:
+ return chunks
+
+ props_xml_parts = []
+ for name, value in datasource_props.items():
+ props_xml_parts.append(f'')
+
+ description_parts = [f"These are data source configuration properties for report '{report_name}'."]
+ for name, value in datasource_props.items():
+ if "adapter" in name.lower():
+ description_parts.append(f"Data adapter: {value}.")
+ elif "source" in name.lower():
+ description_parts.append(f"Data source: {value}.")
+
+ description = " ".join(description_parts)
+
+ chunks.append(JRXMLChunk(
+ chunk_id=chunk_id,
+ chunk_type="datasource_config",
+ human_description=description,
+ raw_xml="\n".join(props_xml_parts),
+ context=f"Report '{report_name}' data source configuration",
+ metadata={"properties": datasource_props}
+ ))
+
+ return chunks
+
+ # ==================== Query ====================
+
+ def _extract_query_chunks(self, chunk_id: int, root: ET.Element, report_name: str) -> List[JRXMLChunk]:
+ chunks = []
+ query_elem = root.find("query")
+
+ if query_elem is None:
+ return chunks
+
+ query_xml = ET.tostring(query_elem, encoding="unicode")
+ lang = query_elem.attrib.get("language", "SQL").lower()
+
+ query_text = ""
+ if query_elem.text and query_elem.text.strip():
+ query_text = query_elem.text.strip()
+
+ query_preview = query_text[:300] + ("..." if len(query_text) > 300 else "")
+ description = f"This is the data query for report '{report_name}'. Language: {lang.upper()}. Query: {query_preview}"
+
+ chunks.append(JRXMLChunk(
+ chunk_id=chunk_id,
+ chunk_type="query",
+ human_description=description,
+ raw_xml=query_xml,
+ context=f"Report '{report_name}' data query",
+ metadata={"query_language": lang, "full_sql": query_text}
+ ))
+ return chunks
+
+ # ==================== Parameters ====================
+
+ def _extract_parameter_chunks(self, chunk_id: int, root: ET.Element, report_name: str) -> List[JRXMLChunk]:
+ chunks = []
+ params = root.findall("parameter")
+ if not params:
+ return chunks
+
+ params_xml = "\n".join([ET.tostring(p, encoding="unicode") for p in params])
+ param_names = [p.attrib.get("name", "") for p in params]
+ param_types = {p.attrib.get("name", ""): p.attrib.get("class", "java.lang.String") for p in params}
+
+ # Extract default values
+ default_values = {}
+ for p in params:
+ name = p.attrib.get("name", "")
+ def_val = p.find("defaultValueExpression")
+ if def_val is not None and def_val.text:
+ default_values[name] = def_val.text.strip()
+
+ param_list = ", ".join(f"{name}({param_types.get(name, 'String')})" for name in param_names)
+ description = f"These are all parameter definitions for report '{report_name}', total {len(params)} parameters. Parameters: {param_list}."
+
+ chunks.append(JRXMLChunk(
+ chunk_id=chunk_id,
+ chunk_type="parameters",
+ human_description=description,
+ raw_xml=params_xml,
+ context=f"Report '{report_name}' parameter definitions",
+ metadata={"parameter_names": param_names, "parameter_types": param_types, "default_values": default_values, "count": len(params)}
+ ))
+ return chunks
+
+ # ==================== Fields ====================
+
+ def _extract_field_chunks(self, chunk_id: int, root: ET.Element, report_name: str) -> List[JRXMLChunk]:
+ chunks = []
+ fields = root.findall("field")
+ if not fields:
+ return chunks
+
+ if len(fields) <= 5:
+ fields_xml = "\n".join([ET.tostring(f, encoding="unicode") for f in fields])
+ field_names = [f.attrib.get("name", "") for f in fields]
+ field_types = {f.attrib.get("name", ""): f.attrib.get("class", "java.lang.String") for f in fields}
+
+ # Extract field expression properties
+ field_exprs = {}
+ for f in fields:
+ fname = f.attrib.get("name", "")
+ for prop in f.findall("property"):
+ pname = prop.attrib.get("name", "")
+ if "field.expression" in pname:
+ field_exprs[fname] = {"property": pname, "value": prop.attrib.get("value", "")}
+
+ field_list = ", ".join(f"{name}({field_types.get(name, 'String')})" for name in field_names)
+ description = f"These are all field definitions for report '{report_name}', total {len(fields)} fields. Fields: {field_list}."
+
+ chunks.append(JRXMLChunk(
+ chunk_id=chunk_id,
+ chunk_type="fields",
+ human_description=description,
+ raw_xml=fields_xml,
+ context=f"Report '{report_name}' field definitions",
+ metadata={"field_names": field_names, "field_types": field_types, "field_expressions": field_exprs, "count": len(fields)}
+ ))
+ else:
+ for i, field in enumerate(fields):
+ field_name = field.attrib.get("name", f"field_{i}")
+ field_class = field.attrib.get("class", "java.lang.String")
+ field_xml = ET.tostring(field, encoding="unicode")
+
+ # Check for field expression property
+ field_expr = None
+ for prop in field.findall("property"):
+ pname = prop.attrib.get("name", "")
+ if "field.expression" in pname:
+ field_expr = {"property": pname, "value": prop.attrib.get("value", "")}
+ break
+
+ desc = f"Field definition for report '{report_name}': {field_name}, type: {field_class}"
+ if field_expr:
+ desc += f", expression: {field_expr['value']}"
+
+ chunks.append(JRXMLChunk(
+ chunk_id=chunk_id + i,
+ chunk_type="field",
+ human_description=desc,
+ raw_xml=field_xml,
+ context=f"Report '{report_name}' field '{field_name}'",
+ metadata={"field_name": field_name, "field_class": field_class, "field_expression": field_expr}
+ ))
+ return chunks
+
+ # ==================== Sort Fields ====================
+
+ def _extract_sortfield_chunks(self, chunk_id: int, root: ET.Element, report_name: str) -> List[JRXMLChunk]:
+ chunks = []
+ sortfields = root.findall("sortField")
+
+ if not sortfields:
+ return chunks
+
+ sortfield_info = []
+ for sf in sortfields:
+ name = sf.attrib.get("name", "")
+ order = sf.attrib.get("order", "Ascending")
+ sortfield_info.append({"name": name, "order": order})
+
+ sortfields_xml = "\n".join([ET.tostring(sf, encoding="unicode") for sf in sortfields])
+ description = f"These are sort field definitions for report '{report_name}', total {len(sortfields)} fields. Sorts: {', '.join(s['name'] + ' (' + s['order'] + ')' for s in sortfield_info)}."
+
+ chunks.append(JRXMLChunk(
+ chunk_id=chunk_id,
+ chunk_type="sortFields",
+ human_description=description,
+ raw_xml=sortfields_xml,
+ context=f"Report '{report_name}' sort field definitions",
+ metadata={"sortFields": sortfield_info, "count": len(sortfields)}
+ ))
+ return chunks
+
+ # ==================== Filter Expression ====================
+
+ def _extract_filter_chunks(self, chunk_id: int, root: ET.Element, report_name: str) -> List[JRXMLChunk]:
+ chunks = []
+ filter_elem = root.find("filterExpression")
+
+ if filter_elem is None:
+ return chunks
+
+ filter_xml = ET.tostring(filter_elem, encoding="unicode")
+ filter_text = filter_elem.text.strip() if filter_elem.text else ""
+
+ description = f"This is the filter expression for report '{report_name}': {filter_text[:200]}{'...' if len(filter_text) > 200 else ''}"
+
+ chunks.append(JRXMLChunk(
+ chunk_id=chunk_id,
+ chunk_type="filterExpression",
+ human_description=description,
+ raw_xml=filter_xml,
+ context=f"Report '{report_name}' filter expression",
+ metadata={"filter_expression": filter_text}
+ ))
+ return chunks
+
+ # ==================== Variables ====================
+
+ def _extract_variable_chunks(self, chunk_id: int, root: ET.Element, report_name: str) -> List[JRXMLChunk]:
+ chunks = []
+ variables = root.findall("variable")
+ if not variables:
+ return chunks
+
+ variables_by_reset = {}
+ for v in variables:
+ reset_type = v.attrib.get("resetType", "Report")
+ if reset_type not in variables_by_reset:
+ variables_by_reset[reset_type] = []
+ variables_by_reset[reset_type].append(v)
+
+ for reset_type, vars_list in variables_by_reset.items():
+ var_names = [v.attrib.get("name", "") for v in vars_list]
+ var_types = {v.attrib.get("name", ""): v.attrib.get("class", "java.lang.Object") for v in vars_list}
+ var_calcs = {v.attrib.get("name", ""): v.attrib.get("calculation", "Nothing") for v in vars_list}
+
+ expressions = {}
+ for v in vars_list:
+ name = v.attrib.get("name", "")
+ expr_elem = v.find("expression")
+ if expr_elem is not None and expr_elem.text:
+ expressions[name] = {"type": "expression", "value": expr_elem.text.strip()}
+ else:
+ init_expr_elem = v.find("initialValueExpression")
+ if init_expr_elem is not None and init_expr_elem.text:
+ expressions[name] = {"type": "initialValue", "value": init_expr_elem.text.strip()}
+
+ var_list = ", ".join(f"{n}({var_types.get(n, 'Object')}, {var_calcs.get(n, 'Nothing')})" for n in var_names)
+ description = f"These are variable definitions for report '{report_name}' (resetType={reset_type}), total {len(vars_list)} variables. Variables: {var_list}."
+
+ variables_xml = "\n".join([ET.tostring(v, encoding="unicode") for v in vars_list])
+
+ chunks.append(JRXMLChunk(
+ chunk_id=chunk_id,
+ chunk_type=f"variables_{reset_type.lower()}",
+ human_description=description,
+ raw_xml=variables_xml,
+ context=f"Report '{report_name}' variable definitions ({reset_type} level reset)",
+ metadata={"variable_names": var_names, "variable_types": var_types, "variable_calculations": var_calcs, "reset_type": reset_type, "expressions": expressions, "count": len(vars_list)}
+ ))
+ return chunks
+
+ # ==================== Styles ====================
+
+ def _extract_style_chunks(self, chunk_id: int, root: ET.Element, report_name: str) -> List[JRXMLChunk]:
+ chunks = []
+ styles = root.findall("style")
+ if not styles:
+ return chunks
+
+ styles_xml = "\n".join([ET.tostring(s, encoding="unicode") for s in styles])
+ style_names = [s.attrib.get("name", "") for s in styles]
+ default_style = [s.attrib.get("name", "") for s in styles if s.attrib.get("default") == "true"]
+ has_conditional = any(s.find("conditionalStyle") is not None for s in styles)
+
+ desc_parts = [f"These are style definitions for report '{report_name}', total {len(styles)} styles.", f"Styles: {', '.join(style_names)}."]
+ if default_style:
+ desc_parts.append(f"Default style: {default_style[0]}.")
+ if has_conditional:
+ desc_parts.append("Contains conditional styles.")
+ description = " ".join(desc_parts)
+
+ chunks.append(JRXMLChunk(
+ chunk_id=chunk_id,
+ chunk_type="styles",
+ human_description=description,
+ raw_xml=styles_xml,
+ context=f"Report '{report_name}' style definitions",
+ metadata={"style_names": style_names, "default_style": default_style[0] if default_style else None, "has_conditional_styles": has_conditional, "count": len(styles)}
+ ))
+ return chunks
+
+ # ==================== Dataset ====================
+
+ def _extract_dataset_chunks(self, chunk_id: int, root: ET.Element, report_name: str) -> List[JRXMLChunk]:
+ chunks = []
+ datasets = root.findall("dataset")
+
+ for i, dataset in enumerate(datasets):
+ dataset_name = dataset.attrib.get("name", f"dataset_{i}")
+ ds_query = dataset.find("query")
+ ds_fields = dataset.findall("field")
+ ds_params = dataset.findall("parameter")
+
+ query_text = ""
+ query_lang = ""
+ if ds_query is not None:
+ query_lang = ds_query.attrib.get("language", "").lower()
+ if ds_query.text:
+ query_text = ds_query.text.strip()
+
+ field_names = [f.attrib.get("name", "") for f in ds_fields]
+ param_names = [p.attrib.get("name", "") for p in ds_params]
+ dataset_xml = ET.tostring(dataset, encoding="unicode")
+
+ # Check for data adapter property
+ ds_props = {}
+ for prop in dataset.findall("property"):
+ pname = prop.attrib.get("name", "")
+ pvalue = prop.attrib.get("value", "")
+ if "adapter" in pname.lower() or "source" in pname.lower():
+ ds_props[pname] = pvalue
+
+ query_preview = query_text[:150] + ("..." if len(query_text) > 150 else "")
+ query_part = f"Query ({query_lang}): {query_preview}" if query_text else f"Query language: {query_lang}" if query_lang else "No query."
+ desc_parts = [f"This is dataset '{dataset_name}' definition for report '{report_name}'.", f"Contains {len(ds_fields)} fields: {', '.join(field_names) if field_names else 'none'}.", f"Contains {len(ds_params)} parameters: {', '.join(param_names) if param_names else 'none'}.", query_part]
+ description = " ".join(desc_parts)
+
+ chunks.append(JRXMLChunk(
+ chunk_id=chunk_id + i,
+ chunk_type="dataset",
+ human_description=description,
+ raw_xml=dataset_xml,
+ context=f"Report '{report_name}' dataset '{dataset_name}'",
+ metadata={"dataset_name": dataset_name, "field_names": field_names, "parameter_names": param_names, "query": query_text, "query_language": query_lang, "properties": ds_props}
+ ))
+ return chunks
+
+ # ==================== Groups ====================
+
+ def _extract_group_chunks(self, chunk_id: int, root: ET.Element, report_name: str) -> List[JRXMLChunk]:
+ chunks = []
+ groups = root.findall("group")
+ if not groups:
+ return chunks
+
+ for i, group in enumerate(groups):
+ group_name = group.attrib.get("name", f"group_{i}")
+ group_xml = ET.tostring(group, encoding="unicode")
+ expr_elem = group.find("expression")
+ expr_text = expr_elem.text.strip() if expr_elem is not None and expr_elem.text else ""
+ has_header = group.find("groupHeader") is not None
+ has_footer = group.find("groupFooter") is not None
+ min_height = group.attrib.get("minHeightToStartNewPage", "0")
+ start_new_column = group.attrib.get("startNewColumn", "false")
+ reprint_header = group.attrib.get("reprintHeaderOnEachPage", "false")
+
+ desc_parts = [f"This is group '{group_name}' definition for report '{report_name}'.", f"Group expression: {expr_text}.", f"Has groupHeader: {'Yes' if has_header else 'No'}, has groupFooter: {'Yes' if has_footer else 'No'}.", f"Min height: {min_height}, start new column: {start_new_column}, reprint header: {reprint_header}."]
+ description = " ".join(desc_parts)
+
+ chunks.append(JRXMLChunk(
+ chunk_id=chunk_id + i,
+ chunk_type="group",
+ human_description=description,
+ raw_xml=group_xml,
+ context=f"Report '{report_name}' group '{group_name}'",
+ metadata={"group_name": group_name, "expression": expr_text, "has_header": has_header, "has_footer": has_footer, "minHeightToStartNewPage": min_height, "startNewColumn": start_new_column, "reprintHeaderOnEachPage": reprint_header}
+ ))
+ return chunks
+
+ # ==================== Bands ====================
+
+ def _extract_standard_band_chunks(self, chunk_id: int, root: ET.Element, report_name: str) -> List[JRXMLChunk]:
+ chunks = []
+
+ for band_name in self.STANDARD_BANDS:
+ band_elem = root.find(band_name)
+ current_id = chunk_id # 使用局部变量跟踪ID
+ for band_name in self.STANDARD_BANDS:
+ band_elem = root.find(band_name)
+ if band_elem is None:
+ continue
+
+ band_height = band_elem.attrib.get("height", "0")
+ band_xml = ET.tostring(band_elem, encoding="unicode")
+
+ # Get all direct children (elements with kind attribute, frames, etc.)
+ elements = band_elem.findall("element")
+ element_kinds = {}
+ visible_texts = []
+
+ for elem in elements:
+ kind = elem.attrib.get("kind", "unknown")
+ element_kinds[kind] = element_kinds.get(kind, 0) + 1
+
+ if kind == "staticText":
+ text_node = elem.find("text")
+ if text_node is not None and text_node.text:
+ visible_texts.append(text_node.text.strip())
+ elif kind == "textField":
+ expr_node = elem.find("expression")
+ if expr_node is not None and expr_node.text:
+ visible_texts.append("${" + expr_node.text.strip() + "}")
+
+ # Check for nested band elements (detail bands can have nested bands)
+ nested_bands = band_elem.findall("band")
+ frames = band_elem.findall("frame")
+ element_groups = band_elem.findall("elementGroup")
+
+ # Check for splitType
+ split_type = band_elem.attrib.get("splitType", "Stretch")
+
+ elem_counts_str = ", ".join(f"{count}x {kind}" for kind, count in element_kinds.items())
+ desc_parts = [f"This is the '{band_name}' band of report '{report_name}', height: {band_height} pixels, splitType: {split_type}.", f"Contains {len(elements)} elements: {elem_counts_str}."]
+
+ # Add nested band info
+ if nested_bands:
+ nested_info = ", ".join(f"nested band (h={b.attrib.get('height', '0')})" for b in nested_bands)
+ desc_parts.append(f"Contains {len(nested_bands)} nested bands: {nested_info}.")
+
+ if visible_texts:
+ preview = "; ".join(visible_texts[:3])
+ if len(visible_texts) > 3:
+ preview += f" ... and {len(visible_texts)} more texts"
+ desc_parts.append(f"Visible text samples: {preview}")
+ description = " ".join(desc_parts)
+
+ if len(band_xml) > self.max_chunk_size:
+ sub_chunks = self._split_band_elements(band_elem, band_name, report_name, chunk_id)
+ chunks.extend(sub_chunks)
+ chunk_id += len(sub_chunks)
+ else:
+ chunks.append(JRXMLChunk(
+ chunk_id=chunk_id,
+ chunk_type=f"band_{band_name}",
+ human_description=description,
+ raw_xml=band_xml,
+ context=f"Report '{report_name}' {band_name} band",
+ metadata={"band_name": band_name, "band_height": band_height, "split_type": split_type, "element_counts": element_kinds, "element_count": len(elements), "nested_band_count": len(nested_bands), "frame_count": len(frames), "element_group_count": len(element_groups), "visible_texts": visible_texts[:10]}
+ ))
+ current_id += 1
+ return chunks
+
+ def _split_band_elements(self, band: ET.Element, band_name: str, report_name: str, start_id: int) -> List[JRXMLChunk]:
+ chunks = []
+
+ for i, elem in enumerate(list(band)):
+ elem_xml = ET.tostring(elem, encoding="unicode")
+ elem_tag = elem.tag
+
+ if elem_tag == "element":
+ elem_kind = elem.attrib.get("kind", "unknown")
+ desc_parts = [f"'{band_name}' band of report '{report_name}': {elem_kind} element"]
+
+ if elem_kind == "staticText":
+ text_node = elem.find("text")
+ text_content = text_node.text if text_node is not None and text_node.text else ""
+ text_preview = text_content[:50] + ("..." if len(text_content) > 50 else "")
+ desc_parts.append(f"Text: '{text_preview}'")
+ elif elem_kind == "textField":
+ expr = elem.find("expression")
+ expr_text = expr.text if expr is not None and expr.text else ""
+ expr_preview = expr_text[:80] + ("..." if len(expr_text) > 80 else "")
+ desc_parts.append(f"Expression: {expr_preview}")
+ elif elem_kind == "image":
+ expr = elem.find("expression")
+ if expr is not None and expr.text:
+ desc_parts.append(f"Image: {expr.text[:50]}")
+ elif elem_kind == "subreport":
+ expr = elem.find("expression")
+ if expr is not None and expr.text:
+ desc_parts.append(f"Subreport: {expr.text[:50]}")
+ elif elem_kind == "chart":
+ chart_type = elem.attrib.get("chartType", "unknown")
+ desc_parts.append(f"Chart type: {chart_type}")
+ elif elem_kind == "crosstab":
+ desc_parts.append("Crosstab")
+
+ x, y = elem.attrib.get("x", "0"), elem.attrib.get("y", "0")
+ w, h = elem.attrib.get("width", "0"), elem.attrib.get("height", "0")
+ desc_parts.append(f"Position: ({x}, {y}), Size: {w}x{h}")
+ description = ", ".join(desc_parts) + "."
+
+ chunks.append(JRXMLChunk(
+ chunk_id=start_id + i,
+ chunk_type=f"element_{elem_kind}",
+ human_description=description,
+ raw_xml=elem_xml,
+ context=f"Report '{report_name}' {band_name} band",
+ metadata={"band_name": band_name, "element_kind": elem_kind, "attributes": dict(elem.attrib)}
+ ))
+ elif elem_tag in ("frame", "elementGroup"):
+ desc_parts = [f"'{band_name}' band of report '{report_name}': {elem_tag} container"]
+ x, y = elem.attrib.get("x", "0"), elem.attrib.get("y", "0")
+ w, h = elem.attrib.get("width", "0"), elem.attrib.get("height", "0")
+ desc_parts.append(f"Position: ({x}, {y}), Size: {w}x{h}")
+ description = ", ".join(desc_parts) + "."
+
+ chunks.append(JRXMLChunk(
+ chunk_id=start_id + i,
+ chunk_type=f"container_{elem_tag}",
+ human_description=description,
+ raw_xml=elem_xml,
+ context=f"Report '{report_name}' {band_name} band",
+ metadata={"band_name": band_name, "container_type": elem_tag, "attributes": dict(elem.attrib)}
+ ))
+ elif elem_tag == "band":
+ # Nested band
+ nested_height = elem.attrib.get("height", "0")
+ desc_parts = [f"'{band_name}' band of report '{report_name}': nested band element"]
+ desc_parts.append(f"Height: {nested_height}")
+ description = ", ".join(desc_parts) + "."
+
+ chunks.append(JRXMLChunk(
+ chunk_id=start_id + i,
+ chunk_type="nested_band",
+ human_description=description,
+ raw_xml=elem_xml,
+ context=f"Report '{report_name}' {band_name} band",
+ metadata={"band_name": band_name, "nested_height": nested_height, "element_tag": elem_tag}
+ ))
+ else:
+ description = f"'{band_name}' band of report '{report_name}': {elem_tag} style element."
+ chunks.append(JRXMLChunk(
+ chunk_id=start_id + i,
+ chunk_type=f"style_element_{elem_tag}",
+ human_description=description,
+ raw_xml=elem_xml,
+ context=f"Report '{report_name}' {band_name} band",
+ metadata={"band_name": band_name, "element_tag": elem_tag}
+ ))
+ return chunks
+
+ # ==================== Charts ====================
+
+ def _extract_chart_chunks(self, chunk_id: int, root: ET.Element, report_name: str) -> List[JRXMLChunk]:
+ chunks = []
+ for i, chart in enumerate(root.findall(".//element[@kind='chart']")):
+ chart_type = chart.attrib.get("chartType", "unknown")
+ chart_xml = ET.tostring(chart, encoding="unicode")
+
+ dataset = chart.find("dataset")
+ dataset_info = {}
+ if dataset is not None:
+ dataset_info["kind"] = dataset.attrib.get("kind", "unknown")
+ series_list = []
+ for series in dataset.findall(".//series"):
+ key_expr = series.find("keyExpression")
+ value_expr = series.find("valueExpression")
+ series_info = {"key": key_expr.text.strip() if key_expr is not None and key_expr.text else "", "value": value_expr.text.strip() if value_expr is not None and value_expr.text else ""}
+ series_list.append(series_info)
+ dataset_info["series"] = series_list
+
+ plot = chart.find("plot")
+ plot_info = {}
+ if plot is not None:
+ plot_info["labelFormat"] = plot.attrib.get("labelFormat", "")
+ plot_info["legendLabelFormat"] = plot.attrib.get("legendLabelFormat", "")
+
+ description = f"This is a chart element in report '{report_name}', type: {chart_type}. Dataset kind: {dataset_info.get('kind', 'unknown')}. Label format: {plot_info.get('labelFormat', 'N/A')}."
+
+ chunks.append(JRXMLChunk(
+ chunk_id=chunk_id + i,
+ chunk_type="chart",
+ human_description=description,
+ raw_xml=chart_xml,
+ context=f"Report '{report_name}' chart",
+ metadata={"chart_type": chart_type, "dataset": dataset_info, "plot": plot_info, "attributes": dict(chart.attrib)}
+ ))
+ return chunks
+
+ # ==================== Crosstabs ====================
+
+ def _extract_crosstab_chunks(self, chunk_id: int, root: ET.Element, report_name: str) -> List[JRXMLChunk]:
+ chunks = []
+ for i, crosstab in enumerate(root.findall(".//element[@kind='crosstab']")):
+ crosstab_xml = ET.tostring(crosstab, encoding="unicode")
+
+ row_groups = []
+ for rg in crosstab.findall("rowGroup"):
+ name = rg.attrib.get("name", "")
+ width = rg.attrib.get("width", "")
+ total_position = rg.attrib.get("totalPosition", "None")
+ bucket_expr = rg.find("bucket/expression")
+ bucket_text = bucket_expr.text.strip() if bucket_expr is not None and bucket_expr.text else ""
+ row_groups.append({"name": name, "width": width, "totalPosition": total_position, "bucket": bucket_text})
+
+ col_groups = []
+ for cg in crosstab.findall("columnGroup"):
+ name = cg.attrib.get("name", "")
+ height = cg.attrib.get("height", "")
+ total_position = cg.attrib.get("totalPosition", "None")
+ bucket_expr = cg.find("bucket/expression")
+ bucket_text = bucket_expr.text.strip() if bucket_expr is not None and bucket_expr.text else ""
+ col_groups.append({"name": name, "height": height, "totalPosition": total_position, "bucket": bucket_text})
+
+ measures = []
+ for m in crosstab.findall("measure"):
+ name = m.attrib.get("name", "")
+ calc = m.attrib.get("calculation", "Nothing")
+ class_type = m.attrib.get("class", "java.lang.Object")
+ expr_elem = m.find("expression")
+ expr_text = expr_elem.text.strip() if expr_elem is not None and expr_elem.text else ""
+ measures.append({"name": name, "calculation": calc, "class": class_type, "expression": expr_text})
+
+ desc_parts = [f"This is a crosstab element in report '{report_name}'.", f"Row groups: {len(row_groups)} - {', '.join(rg['name'] for rg in row_groups)}.", f"Column groups: {len(col_groups)} - {', '.join(cg['name'] for cg in col_groups)}.", f"Measures: {len(measures)} - {', '.join(m['name'] for m in measures)}."]
+ description = " ".join(desc_parts)
+
+ chunks.append(JRXMLChunk(
+ chunk_id=chunk_id + i,
+ chunk_type="crosstab",
+ human_description=description,
+ raw_xml=crosstab_xml,
+ context=f"Report '{report_name}' crosstab",
+ metadata={"row_groups": row_groups, "column_groups": col_groups, "measures": measures, "attributes": dict(crosstab.attrib)}
+ ))
+ return chunks
+
+ # ==================== Subreports ====================
+
+ def _extract_subreport_chunks(self, chunk_id: int, root: ET.Element, report_name: str) -> List[JRXMLChunk]:
+ chunks = []
+ for i, subreport in enumerate(root.findall(".//element[@kind='subreport']")):
+ subreport_xml = ET.tostring(subreport, encoding="unicode")
+
+ expr_elem = subreport.find("expression")
+ expr_text = expr_elem.text.strip() if expr_elem is not None and expr_elem.text else ""
+
+ conn_elem = subreport.find("connectionExpression")
+ conn_text = conn_elem.text.strip() if conn_elem is not None and conn_elem.text else ""
+
+ return_values = []
+ for rv in subreport.findall("returnValue"):
+ return_values.append({"toVariable": rv.attrib.get("toVariable", ""), "subreportVariable": rv.attrib.get("subreportVariable", ""), "calculation": rv.attrib.get("calculation", "Nothing")})
+
+ sub_params = []
+ for sp in subreport.findall("parameter"):
+ pname = sp.attrib.get("name", "")
+ pexpr = sp.find("expression")
+ ptext = pexpr.text.strip() if pexpr is not None and pexpr.text else ""
+ sub_params.append({"name": pname, "expression": ptext})
+
+ # Check for data source expression
+ ds_expr = subreport.find("dataSourceExpression")
+ ds_text = ds_expr.text.strip() if ds_expr is not None and ds_expr.text else ""
+
+ desc_parts = [f"This is a subreport element in report '{report_name}'.", f"Subreport: {expr_text}."]
+ if conn_text:
+ desc_parts.append(f"Connection: {conn_text}.")
+ if ds_text:
+ desc_parts.append(f"Data source expression: {ds_text[:80]}.")
+ if return_values:
+ desc_parts.append(f"Return value mappings: {len(return_values)}.")
+ if sub_params:
+ param_names = ", ".join(p["name"] for p in sub_params)
+ desc_parts.append(f"Subreport parameters: {len(sub_params)} - {param_names}.")
+ description = " ".join(desc_parts)
+
+ chunks.append(JRXMLChunk(
+ chunk_id=chunk_id + i,
+ chunk_type="subreport",
+ human_description=description,
+ raw_xml=subreport_xml,
+ context=f"Report '{report_name}' subreport",
+ metadata={"expression": expr_text, "connectionExpression": conn_text, "dataSourceExpression": ds_text, "returnValues": return_values, "parameters": sub_params, "attributes": dict(subreport.attrib)}
+ ))
+ return chunks
+
+ # ==================== Components ====================
+
+ def _extract_component_chunks(self, chunk_id: int, root: ET.Element, report_name: str) -> List[JRXMLChunk]:
+ """Extract component elements like lists"""
+ chunks = []
+
+ # Find all component elements
+ for i, component in enumerate(root.findall(".//element[@kind='component']")):
+ component_xml = ET.tostring(component, encoding="unicode")
+ component_kind = component.attrib.get("component", {}).get("kind", "unknown") if component.attrib.get("component") else "unknown"
+
+ # Get the nested component definition
+ nested_component = component.find("component")
+ if nested_component is not None:
+ nested_kind = nested_component.attrib.get("kind", "")
+
+ # Extract datasetRun info
+ dataset_runs = nested_component.findall("datasetRun")
+ dataset_run_info = []
+ for dr in dataset_runs:
+ sub_ds = dr.attrib.get("subDataset", "")
+ ds_expr = dr.find("dataSourceExpression")
+ ds_text = ds_expr.text.strip() if ds_expr is not None and ds_expr.text else ""
+ dataset_run_info.append({"subDataset": sub_ds, "dataSourceExpression": ds_text})
+
+ # Extract contents
+ contents = nested_component.find("contents")
+ contents_height = contents.attrib.get("height", "0") if contents is not None else "0"
+ contents_width = contents.attrib.get("width", "0") if contents is not None else "0"
+
+ desc_parts = [f"This is a component element in report '{report_name}'.", f"Component kind: {nested_kind}.", f"Contains {len(dataset_run_info)} datasetRun(s)."]
+ if dataset_run_info:
+ for dr_info in dataset_run_info:
+ if dr_info["subDataset"]:
+ desc_parts.append(f"SubDataset: {dr_info['subDataset']}.")
+ desc_parts.append(f"Content size: {contents_width}x{contents_height}.")
+ description = " ".join(desc_parts)
+
+ chunks.append(JRXMLChunk(
+ chunk_id=chunk_id + i,
+ chunk_type="component",
+ human_description=description,
+ raw_xml=component_xml,
+ context=f"Report '{report_name}' component",
+ metadata={"component_kind": nested_kind, "dataset_runs": dataset_run_info, "contents_height": contents_height, "contents_width": contents_width, "attributes": dict(component.attrib)}
+ ))
+
+ return chunks
+
+
+# =====================================================
+# Utility Functions
+# =====================================================
+
+def save_chunks_to_json(chunks: List[Dict], output_path: str):
+ with open(output_path, "w", encoding="utf-8") as f:
+ json.dump(chunks, f, ensure_ascii=False, indent=2)
+ print(f"Saved {len(chunks)} chunks to {output_path}")
+
+
+def chunks_to_langchain_documents(chunks: List[Dict]):
+ from langchain.schema import Document
+ docs = []
+ for chunk in chunks:
+ docs.append(Document(page_content=chunk["human_description"], metadata={"chunk_id": chunk["chunk_id"], "chunk_type": chunk["chunk_type"], "raw_xml": chunk["raw_xml"], "context": chunk["context"], **chunk.get("metadata", {})}))
+ return docs
+
+
+def print_chunk_summary(chunks: List[Dict]):
+ """Print summary of chunks by type"""
+ type_counts = {}
+ for chunk in chunks:
+ chunk_type = chunk["chunk_type"]
+ type_counts[chunk_type] = type_counts.get(chunk_type, 0) + 1
+
+ print("\nChunk Type Summary:")
+ for chunk_type, count in sorted(type_counts.items()):
+ print(f" {chunk_type}: {count}")
+
+
+# =====================================================
+# Main Entry Point
+# =====================================================
+
+if __name__ == "__main__":
+ import sys
+
+ chunker = JRXMLSemanticChunker(max_chunk_size=2000)
+
+ if len(sys.argv) > 1:
+ path = sys.argv[1]
+ if os.path.isdir(path):
+ all_chunks = chunker.chunk_directory(path)
+ output_path = os.path.join(os.path.dirname(path.rstrip("/\\")) if os.path.dirname(path) else ".", os.path.basename(path.rstrip("/\\")) + "_chunks.json")
+ save_chunks_to_json(all_chunks, output_path)
+ print_chunk_summary(all_chunks)
+ else:
+ chunks = chunker.chunk_file(path)
+ output_path = path.replace(".jrxml", "_chunks.json")
+ save_chunks_to_json(chunks, output_path)
+
+ print(f"\n{'='*60}")
+ print("Chunking Results Preview")
+ print(f"{'='*60}")
+ for chunk in chunks[:10]:
+ print(f"\n[Chunk {chunk['chunk_id']}] Type: {chunk['chunk_type']}")
+ print(f"Description: {chunk['human_description'][:120]}...")
+ print(f"XML length: {len(chunk['raw_xml'])} chars")
+ if len(chunks) > 10:
+ print(f"\n... and {len(chunks) - 10} more chunks")
+
+ print_chunk_summary(chunks)
+
+ try:
+ langchain_docs = chunks_to_langchain_documents(chunks)
+ print(f"\nGenerated {len(langchain_docs)} LangChain Documents")
+ except ImportError:
+ print("\nNote: langchain not installed, skipping Document conversion")
+ else:
+ print("=" * 60)
+ print("JRXML Semantic Chunking v3.0")
+ print("=" * 60)
+ print("\nUsage: python jrxml_chunker.py ")
+ print("\nData source types supported:")
+ print(" - SQL/JDBC, HQL/Hibernate, XPath/XML")
+ print(" - JSON, JSONQL, CSV")
+ print(" - Data Adapters (Excel, XML, HTTP)")
+ print(" - Bean Collection, Empty Data Source")
+
+
diff --git a/jrxml_chunker_output/all_chunks.json b/jrxml_chunker_output/all_chunks.json
new file mode 100644
index 0000000..c80083f
--- /dev/null
+++ b/jrxml_chunker_output/all_chunks.json
@@ -0,0 +1,333524 @@
+[
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'AccessibleReport'. Page size: 595 x 842 portrait. Contains 0 standard bands with content: none. Defines 0 fields: none. Defines 0 parameters: none. Defines 0 variables: none. Defines 1 groups: Group1. Contains 2 crosstabs.",
+ "raw_xml": "",
+ "context": "Report 'AccessibleReport' overall structure overview",
+ "metadata": {
+ "report_name": "AccessibleReport",
+ "bands": [],
+ "field_count": 0,
+ "parameter_count": 0,
+ "variable_count": 0,
+ "group_count": 1,
+ "chart_count": 0,
+ "crosstab_count": 2,
+ "subreport_count": 0,
+ "datasource": {
+ "type": null,
+ "source": null,
+ "query_language": null,
+ "properties": {
+ "net.sf.jasperreports.text.save.line.breaks": "true",
+ "net.sf.jasperreports.crosstab.interactive": "true",
+ "net.sf.jasperreports.components.table.interactive": "true",
+ "net.sf.jasperreports.export.html.accessible": "true",
+ "net.sf.jasperreports.export.pdf.tagged": "true",
+ "net.sf.jasperreports.export.pdf.tag.language": "EN-US",
+ "net.sf.jasperreports.export.pdf.metadata.title": "Accessible Report",
+ "net.sf.jasperreports.export.pdf.display.metadata.title": "true",
+ "net.sf.jasperreports.components.table.accessible": "true"
+ }
+ },
+ "attributes": {
+ "name": "AccessibleReport",
+ "language": "java",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "whenNoDataType": "AllSectionsNoDetail",
+ "columnWidth": "515",
+ "leftMargin": "40",
+ "rightMargin": "40",
+ "topMargin": "50",
+ "bottomMargin": "50",
+ "uuid": "02314e1d-cb29-4cf3-a904-092a9d3e5312"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "dataset",
+ "human_description": "This is dataset 'CrosstabDataset' definition for report 'AccessibleReport'. Contains 4 fields: Category, Type, Year, Quantity. Contains 0 parameters: none. No query.",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AccessibleReport' dataset 'CrosstabDataset'",
+ "metadata": {
+ "dataset_name": "CrosstabDataset",
+ "field_names": [
+ "Category",
+ "Type",
+ "Year",
+ "Quantity"
+ ],
+ "parameter_names": [],
+ "query": "",
+ "query_language": "",
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "Sample DB",
+ "net.sf.jasperreports.data.adapter": "data/ProductsCsvDataAdapter.jrdax"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "dataset",
+ "human_description": "This is dataset 'TableDataset' definition for report 'AccessibleReport'. Contains 8 fields: id, name, address, city, state, latitude, longitude, moveInDate. Contains 0 parameters: none. No query.",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\tid\n\t\t\n\t\t\n\t\t\tname\n\t\t\n\t\t\n\t\t\tstreet address\n\t\t\n\t\t\n\t\t\tcity\n\t\t\n\t\t\n\t\t\tstate\n\t\t\n\t\t\n\t\t\tlatitude\n\t\t\n\t\t\n\t\t\tlongitude\n\t\t\n\t\t\n\t\t\tmoveInDate\n\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AccessibleReport' dataset 'TableDataset'",
+ "metadata": {
+ "dataset_name": "TableDataset",
+ "field_names": [
+ "id",
+ "name",
+ "address",
+ "city",
+ "state",
+ "latitude",
+ "longitude",
+ "moveInDate"
+ ],
+ "parameter_names": [],
+ "query": "",
+ "query_language": "",
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "Sample DB",
+ "net.sf.jasperreports.data.adapter": "data/PersonsCsvDataAdapter.jrdax"
+ }
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'AccessibleReport', total 15 styles. Styles: Sans_Normal, Description, Heading1, Heading2, Crosstab_RowHeader, Crosstab_ColumnHeader, Crosstab_ColumnHeader_Text, Crosstab_RowGroupTotal, Crosstab_Total, Crosstab_TotalColumnHeader, Crosstab_TotalColumnHeader_Text, Crosstab_Detail, Table_TH, Table_TH_Text, Table_TD. Default style: Sans_Normal.",
+ "raw_xml": "\n\t\n\n\t\n\n\t\n\n\t\n\n\t\n\n\t\n\n\t\n\n\t\n\n\t\n\n\t\n\n\t\n\n\t\n\n\t\n\n\t\n\n\t",
+ "context": "Report 'AccessibleReport' style definitions",
+ "metadata": {
+ "style_names": [
+ "Sans_Normal",
+ "Description",
+ "Heading1",
+ "Heading2",
+ "Crosstab_RowHeader",
+ "Crosstab_ColumnHeader",
+ "Crosstab_ColumnHeader_Text",
+ "Crosstab_RowGroupTotal",
+ "Crosstab_Total",
+ "Crosstab_TotalColumnHeader",
+ "Crosstab_TotalColumnHeader_Text",
+ "Crosstab_Detail",
+ "Table_TH",
+ "Table_TH_Text",
+ "Table_TD"
+ ],
+ "default_style": "Sans_Normal",
+ "has_conditional_styles": false,
+ "count": 15
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "group",
+ "human_description": "This is group 'Group1' definition for report 'AccessibleReport'. Group expression: . Has groupHeader: Yes, has groupFooter: No. Min height: 0, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"This is a sequence of level 1 and level 2 headings.\"\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"Fruit\"\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"In botany, a fruit is the seed-bearing structure in flowering plants.\"\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"Apples\"\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"An apple is an edible fruit produced by an apple tree (Malus domestica).\"\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"Bananas\"\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"A banana is an elongated, edible fruit produced by several kinds of large herbaceous flowering plants in the genus Musa.\"\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"Vegetables\"\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"Vegetables are parts of plants that are consumed by humans or other animals as food.\"\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"Cucumbers\"\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"Cucumber (Cucumis sativus) is a widely-cultivated creeping vine plant in the Cucurbitaceae family that bears usually cylindrical fruits, which are used as vegetables.\"\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"This is a bulleted list with two levels.\"\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"<ul><li>Fruit<ol><li>Apples</li><li>Bananas</li><li>Pears</li></ol></li><li>Vegetables<ol><li>Cucumber</li><li>Lettuce</li><li>Tomatoes</li></ol></li></ul>\"\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"This is an image.\"\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"dukesign.jpg\"\n\t\t\t\t\t\"The Dukesign Image\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"This is a crosstab without a header cell at its the top left corner.\"\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{Category}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Category}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\"Category Total\"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{Type}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Type}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\"Type Total\"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{Year}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Year}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\"Year Total\"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t$F{Quantity}\n\t\t\t\t\t\n\t\t\t\t\t| \n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"This is a crosstab having a header cell at its the top left corner.\"\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Category\"\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Type\"\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{Category}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Category}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\"Category Total\"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{Type}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Type}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\"Type Total\"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{Year}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Year}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\"Year Total\"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t$F{Quantity}\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"This is a table having a column group header that wraps the third and fourth column headers.\"\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\"ID\"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t$F{id}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\"Name\"\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t$F{name}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\"Address\"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\"Street\"\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t$F{address}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\"City\"\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t$F{city}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\"Account Type\"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t$F{state}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\"Move-In Date\"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t$F{moveInDate}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"This is a simple table without any column header grouping.\"\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\"ID\"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t$F{id}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\"Name\"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t$F{name}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\"Street\"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t$F{address}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\"City\"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t$F{city}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\"Account Type\"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t$F{state}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\"Move-In Date\"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t$F{moveInDate}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AccessibleReport' group 'Group1'",
+ "metadata": {
+ "group_name": "Group1",
+ "expression": "",
+ "has_header": true,
+ "has_footer": false,
+ "minHeightToStartNewPage": "0",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_background",
+ "human_description": "This is the 'background' band of report 'AccessibleReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: .",
+ "raw_xml": "\n",
+ "context": "Report 'AccessibleReport' background band",
+ "metadata": {
+ "band_name": "background",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_background",
+ "human_description": "This is the 'background' band of report 'AccessibleReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: .",
+ "raw_xml": "\n",
+ "context": "Report 'AccessibleReport' background band",
+ "metadata": {
+ "band_name": "background",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_background",
+ "human_description": "This is the 'background' band of report 'AccessibleReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: .",
+ "raw_xml": "\n",
+ "context": "Report 'AccessibleReport' background band",
+ "metadata": {
+ "band_name": "background",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_background",
+ "human_description": "This is the 'background' band of report 'AccessibleReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: .",
+ "raw_xml": "\n",
+ "context": "Report 'AccessibleReport' background band",
+ "metadata": {
+ "band_name": "background",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_background",
+ "human_description": "This is the 'background' band of report 'AccessibleReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: .",
+ "raw_xml": "\n",
+ "context": "Report 'AccessibleReport' background band",
+ "metadata": {
+ "band_name": "background",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_background",
+ "human_description": "This is the 'background' band of report 'AccessibleReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: .",
+ "raw_xml": "\n",
+ "context": "Report 'AccessibleReport' background band",
+ "metadata": {
+ "band_name": "background",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_background",
+ "human_description": "This is the 'background' band of report 'AccessibleReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: .",
+ "raw_xml": "\n",
+ "context": "Report 'AccessibleReport' background band",
+ "metadata": {
+ "band_name": "background",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_background",
+ "human_description": "This is the 'background' band of report 'AccessibleReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: .",
+ "raw_xml": "\n",
+ "context": "Report 'AccessibleReport' background band",
+ "metadata": {
+ "band_name": "background",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_background",
+ "human_description": "This is the 'background' band of report 'AccessibleReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: .",
+ "raw_xml": "\n",
+ "context": "Report 'AccessibleReport' background band",
+ "metadata": {
+ "band_name": "background",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_background",
+ "human_description": "This is the 'background' band of report 'AccessibleReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: .",
+ "raw_xml": "\n",
+ "context": "Report 'AccessibleReport' background band",
+ "metadata": {
+ "band_name": "background",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "crosstab",
+ "human_description": "This is a crosstab element in report 'AccessibleReport'. Row groups: 2 - Category, Type. Column groups: 1 - Year. Measures: 1 - Quantity_MEASURE.",
+ "raw_xml": "\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{Category}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Category}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\"Category Total\"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{Type}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Type}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\"Type Total\"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{Year}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Year}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\"Year Total\"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t$F{Quantity}\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\n\t\t\t\t",
+ "context": "Report 'AccessibleReport' crosstab",
+ "metadata": {
+ "row_groups": [
+ {
+ "name": "Category",
+ "width": "70",
+ "totalPosition": "End",
+ "bucket": "$F{Category}"
+ },
+ {
+ "name": "Type",
+ "width": "60",
+ "totalPosition": "End",
+ "bucket": "$F{Type}"
+ }
+ ],
+ "column_groups": [
+ {
+ "name": "Year",
+ "height": "10",
+ "totalPosition": "End",
+ "bucket": "$F{Year}"
+ }
+ ],
+ "measures": [
+ {
+ "name": "Quantity_MEASURE",
+ "calculation": "Sum",
+ "class": "java.lang.Integer",
+ "expression": "$F{Quantity}"
+ }
+ ],
+ "attributes": {
+ "kind": "crosstab",
+ "uuid": "bd692f7b-a38d-41e3-a7f1-0762e26ae74e",
+ "x": "0",
+ "y": "0",
+ "width": "510",
+ "height": "30"
+ }
+ }
+ },
+ {
+ "chunk_id": 16,
+ "chunk_type": "crosstab",
+ "human_description": "This is a crosstab element in report 'AccessibleReport'. Row groups: 2 - Category, Type. Column groups: 1 - Year. Measures: 1 - Quantity_MEASURE.",
+ "raw_xml": "\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Category\"\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Type\"\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{Category}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Category}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\"Category Total\"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{Type}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Type}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\"Type Total\"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{Year}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Year}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\"Year Total\"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t$F{Quantity}\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t$V{Quantity_MEASURE}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t | \n\t\t\t\t\n\t\t\t\t",
+ "context": "Report 'AccessibleReport' crosstab",
+ "metadata": {
+ "row_groups": [
+ {
+ "name": "Category",
+ "width": "70",
+ "totalPosition": "End",
+ "bucket": "$F{Category}"
+ },
+ {
+ "name": "Type",
+ "width": "60",
+ "totalPosition": "End",
+ "bucket": "$F{Type}"
+ }
+ ],
+ "column_groups": [
+ {
+ "name": "Year",
+ "height": "10",
+ "totalPosition": "End",
+ "bucket": "$F{Year}"
+ }
+ ],
+ "measures": [
+ {
+ "name": "Quantity_MEASURE",
+ "calculation": "Sum",
+ "class": "java.lang.Integer",
+ "expression": "$F{Quantity}"
+ }
+ ],
+ "attributes": {
+ "kind": "crosstab",
+ "uuid": "dc45d523-d168-4907-b9f5-309d373cf476",
+ "x": "0",
+ "y": "0",
+ "width": "510",
+ "height": "30"
+ }
+ }
+ },
+ {
+ "chunk_id": 17,
+ "chunk_type": "component",
+ "human_description": "This is a component element in report 'AccessibleReport'. Component kind: table. Contains 1 datasetRun(s). SubDataset: TableDataset. Content size: 0x0.",
+ "raw_xml": "\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\"ID\"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t$F{id}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\"Name\"\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t$F{name}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\"Address\"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\"Street\"\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t$F{address}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\"City\"\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t$F{city}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\"Account Type\"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t$F{state}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\"Move-In Date\"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t$F{moveInDate}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'AccessibleReport' component",
+ "metadata": {
+ "component_kind": "table",
+ "dataset_runs": [
+ {
+ "subDataset": "TableDataset",
+ "dataSourceExpression": ""
+ }
+ ],
+ "contents_height": "0",
+ "contents_width": "0",
+ "attributes": {
+ "kind": "component",
+ "uuid": "257ba0eb-37d3-4b3a-a79f-46c5c7afec56",
+ "x": "0",
+ "y": "0",
+ "width": "500",
+ "height": "30"
+ }
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "component",
+ "human_description": "This is a component element in report 'AccessibleReport'. Component kind: table. Contains 1 datasetRun(s). SubDataset: TableDataset. Content size: 0x0.",
+ "raw_xml": "\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\"ID\"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t$F{id}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\"Name\"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t$F{name}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\"Street\"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t$F{address}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\"City\"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t$F{city}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\"Account Type\"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t$F{state}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\"Move-In Date\"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t$F{moveInDate}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'AccessibleReport' component",
+ "metadata": {
+ "component_kind": "table",
+ "dataset_runs": [
+ {
+ "subDataset": "TableDataset",
+ "dataSourceExpression": ""
+ }
+ ],
+ "contents_height": "0",
+ "contents_width": "0",
+ "attributes": {
+ "kind": "component",
+ "uuid": "94672486-6f12-4aff-9820-b222f6266dad",
+ "x": "0",
+ "y": "0",
+ "width": "500",
+ "height": "30"
+ }
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'AddressesReport'. Page size: 595 x 842 portrait. Contains 3 standard bands with content: title, detail, pageFooter. Defines 7 fields: id, firstName, lastName, street, city, documentId, documentTotal. Defines 2 parameters: ReportTitle, CityFilter. Defines 1 variables: addressTotal. Defines 1 groups: AddressGroup. Data source type: Hibernate/HQL. Source: hibernate/data/HibernateDataAdapter.jrdax. Query language: hql.",
+ "raw_xml": "",
+ "context": "Report 'AddressesReport' overall structure overview",
+ "metadata": {
+ "report_name": "AddressesReport",
+ "bands": [
+ "title",
+ "detail",
+ "pageFooter"
+ ],
+ "field_count": 7,
+ "parameter_count": 2,
+ "variable_count": 1,
+ "group_count": 1,
+ "chart_count": 0,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "Hibernate/HQL",
+ "source": "hibernate/data/HibernateDataAdapter.jrdax",
+ "query_language": "hql",
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "hibernate/data/HibernateDataAdapter.jrdax"
+ }
+ },
+ "attributes": {
+ "name": "AddressesReport",
+ "language": "java",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "whenNoDataType": "AllSectionsNoDetail",
+ "columnWidth": "515",
+ "leftMargin": "40",
+ "rightMargin": "40",
+ "topMargin": "50",
+ "bottomMargin": "50",
+ "uuid": "f050e3db-0847-4912-9c16-d6b157484813"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'AddressesReport'. Data adapter: hibernate/data/HibernateDataAdapter.jrdax.",
+ "raw_xml": "",
+ "context": "Report 'AddressesReport' data source configuration",
+ "metadata": {
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "hibernate/data/HibernateDataAdapter.jrdax"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "query",
+ "human_description": "This is the data query for report 'AddressesReport'. Language: HQL. Query: select address as address, document.id as documentId, document.total as documentTotal\n\t\t\tfrom Address as address join address.documents as document\n\t\t\twhere city not in ($P{CityFilter})\n\t\t\torder by address.city, address.lastName, address.firstName, address.id",
+ "raw_xml": "select address as address, document.id as documentId, document.total as documentTotal\n\t\t\tfrom Address as address join address.documents as document\n\t\t\twhere city not in ($P{CityFilter})\n\t\t\torder by address.city, address.lastName, address.firstName, address.id\n\t",
+ "context": "Report 'AddressesReport' data query",
+ "metadata": {
+ "query_language": "hql",
+ "full_sql": "select address as address, document.id as documentId, document.total as documentTotal\n\t\t\tfrom Address as address join address.documents as document\n\t\t\twhere city not in ($P{CityFilter})\n\t\t\torder by address.city, address.lastName, address.firstName, address.id"
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "parameters",
+ "human_description": "These are all parameter definitions for report 'AddressesReport', total 2 parameters. Parameters: ReportTitle(java.lang.String), CityFilter(java.util.List).",
+ "raw_xml": "\n\t\t\"Address Report\"\n\t\n\t\n\n\t\tArrays.asList(\"Boston\",\"Chicago\",\"Oslo\")\n\t\n\t",
+ "context": "Report 'AddressesReport' parameter definitions",
+ "metadata": {
+ "parameter_names": [
+ "ReportTitle",
+ "CityFilter"
+ ],
+ "parameter_types": {
+ "ReportTitle": "java.lang.String",
+ "CityFilter": "java.util.List"
+ },
+ "default_values": {
+ "ReportTitle": "\"Address Report\"",
+ "CityFilter": "Arrays.asList(\"Boston\",\"Chicago\",\"Oslo\")"
+ },
+ "count": 2
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'AddressesReport': id, type: java.lang.Long",
+ "raw_xml": "\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' field 'id'",
+ "metadata": {
+ "field_name": "id",
+ "field_class": "java.lang.Long",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'AddressesReport': firstName, type: java.lang.String",
+ "raw_xml": "\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' field 'firstName'",
+ "metadata": {
+ "field_name": "firstName",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 6,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'AddressesReport': lastName, type: java.lang.String",
+ "raw_xml": "\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' field 'lastName'",
+ "metadata": {
+ "field_name": "lastName",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'AddressesReport': street, type: java.lang.String",
+ "raw_xml": "\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' field 'street'",
+ "metadata": {
+ "field_name": "street",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 8,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'AddressesReport': city, type: java.lang.String",
+ "raw_xml": "\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' field 'city'",
+ "metadata": {
+ "field_name": "city",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'AddressesReport': documentId, type: java.lang.Long",
+ "raw_xml": "\n\t",
+ "context": "Report 'AddressesReport' field 'documentId'",
+ "metadata": {
+ "field_name": "documentId",
+ "field_class": "java.lang.Long",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'AddressesReport': documentTotal, type: java.lang.Double",
+ "raw_xml": "\n\t",
+ "context": "Report 'AddressesReport' field 'documentTotal'",
+ "metadata": {
+ "field_name": "documentTotal",
+ "field_class": "java.lang.Double",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 11,
+ "chunk_type": "variables_group",
+ "human_description": "These are variable definitions for report 'AddressesReport' (resetType=Group), total 1 variables. Variables: addressTotal(java.lang.Double, Sum).",
+ "raw_xml": "\n\t\t$F{documentTotal}\n\t\n\t",
+ "context": "Report 'AddressesReport' variable definitions (Group level reset)",
+ "metadata": {
+ "variable_names": [
+ "addressTotal"
+ ],
+ "variable_types": {
+ "addressTotal": "java.lang.Double"
+ },
+ "variable_calculations": {
+ "addressTotal": "Sum"
+ },
+ "reset_type": "Group",
+ "expressions": {
+ "addressTotal": {
+ "type": "expression",
+ "value": "$F{documentTotal}"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 12,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'AddressesReport', total 4 styles. Styles: Sans_Normal, Sans_Normal_Small, Sans_Bold, Sans_Italic. Default style: Sans_Normal.",
+ "raw_xml": "\n\t\n\n\t\n\n\t\n\n\t",
+ "context": "Report 'AddressesReport' style definitions",
+ "metadata": {
+ "style_names": [
+ "Sans_Normal",
+ "Sans_Normal_Small",
+ "Sans_Bold",
+ "Sans_Italic"
+ ],
+ "default_style": "Sans_Normal",
+ "has_conditional_styles": false,
+ "count": 4
+ }
+ },
+ {
+ "chunk_id": 13,
+ "chunk_type": "group",
+ "human_description": "This is group 'AddressGroup' definition for report 'AddressesReport'. Group expression: $F{id}. Has groupHeader: Yes, has groupFooter: Yes. Min height: 0, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t$F{id}\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t$F{firstName} + \" \" + $F{lastName} + \" (ID: \" + $F{id} + \")\"\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t$F{street} + \",\" + $F{city}\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tTotal\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{AddressGroup_COUNT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{addressTotal}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' group 'AddressGroup'",
+ "metadata": {
+ "group_name": "AddressGroup",
+ "expression": "$F{id}",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "0",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AddressesReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x line, 1x textField. Visible text samples: ${$P{ReportTitle}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AddressesReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tDocument ID\n\t\t\t\n\t\t\t\n\t\t\t\t$F{documentId}\n\t\t\t\n\t\t\t\n\t\t\t\tDocument Total\n\t\t\t\n\t\t\t\n\t\t\t\t$F{documentTotal}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AddressesReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t!$P{IS_IGNORE_PAGINATION}\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'AddressesReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AddressesReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x line, 1x textField. Visible text samples: ${$P{ReportTitle}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AddressesReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tDocument ID\n\t\t\t\n\t\t\t\n\t\t\t\t$F{documentId}\n\t\t\t\n\t\t\t\n\t\t\t\tDocument Total\n\t\t\t\n\t\t\t\n\t\t\t\t$F{documentTotal}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AddressesReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t!$P{IS_IGNORE_PAGINATION}\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'AddressesReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AddressesReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x line, 1x textField. Visible text samples: ${$P{ReportTitle}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AddressesReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tDocument ID\n\t\t\t\n\t\t\t\n\t\t\t\t$F{documentId}\n\t\t\t\n\t\t\t\n\t\t\t\tDocument Total\n\t\t\t\n\t\t\t\n\t\t\t\t$F{documentTotal}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AddressesReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t!$P{IS_IGNORE_PAGINATION}\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'AddressesReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AddressesReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x line, 1x textField. Visible text samples: ${$P{ReportTitle}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AddressesReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tDocument ID\n\t\t\t\n\t\t\t\n\t\t\t\t$F{documentId}\n\t\t\t\n\t\t\t\n\t\t\t\tDocument Total\n\t\t\t\n\t\t\t\n\t\t\t\t$F{documentTotal}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AddressesReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t!$P{IS_IGNORE_PAGINATION}\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'AddressesReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AddressesReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x line, 1x textField. Visible text samples: ${$P{ReportTitle}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AddressesReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tDocument ID\n\t\t\t\n\t\t\t\n\t\t\t\t$F{documentId}\n\t\t\t\n\t\t\t\n\t\t\t\tDocument Total\n\t\t\t\n\t\t\t\n\t\t\t\t$F{documentTotal}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AddressesReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t!$P{IS_IGNORE_PAGINATION}\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'AddressesReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AddressesReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x line, 1x textField. Visible text samples: ${$P{ReportTitle}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AddressesReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tDocument ID\n\t\t\t\n\t\t\t\n\t\t\t\t$F{documentId}\n\t\t\t\n\t\t\t\n\t\t\t\tDocument Total\n\t\t\t\n\t\t\t\n\t\t\t\t$F{documentTotal}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AddressesReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t!$P{IS_IGNORE_PAGINATION}\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'AddressesReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AddressesReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x line, 1x textField. Visible text samples: ${$P{ReportTitle}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AddressesReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tDocument ID\n\t\t\t\n\t\t\t\n\t\t\t\t$F{documentId}\n\t\t\t\n\t\t\t\n\t\t\t\tDocument Total\n\t\t\t\n\t\t\t\n\t\t\t\t$F{documentTotal}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AddressesReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t!$P{IS_IGNORE_PAGINATION}\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'AddressesReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AddressesReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x line, 1x textField. Visible text samples: ${$P{ReportTitle}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AddressesReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tDocument ID\n\t\t\t\n\t\t\t\n\t\t\t\t$F{documentId}\n\t\t\t\n\t\t\t\n\t\t\t\tDocument Total\n\t\t\t\n\t\t\t\n\t\t\t\t$F{documentTotal}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AddressesReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t!$P{IS_IGNORE_PAGINATION}\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'AddressesReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AddressesReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x line, 1x textField. Visible text samples: ${$P{ReportTitle}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AddressesReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tDocument ID\n\t\t\t\n\t\t\t\n\t\t\t\t$F{documentId}\n\t\t\t\n\t\t\t\n\t\t\t\tDocument Total\n\t\t\t\n\t\t\t\n\t\t\t\t$F{documentTotal}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AddressesReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t!$P{IS_IGNORE_PAGINATION}\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'AddressesReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AddressesReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x line, 1x textField. Visible text samples: ${$P{ReportTitle}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AddressesReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tDocument ID\n\t\t\t\n\t\t\t\n\t\t\t\t$F{documentId}\n\t\t\t\n\t\t\t\n\t\t\t\tDocument Total\n\t\t\t\n\t\t\t\n\t\t\t\t$F{documentTotal}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressesReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AddressesReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t!$P{IS_IGNORE_PAGINATION}\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'AddressesReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'AddressReport'. Page size: 175 x 842 portrait. Contains 7 standard bands with content: title, pageHeader, columnHeader, detail, columnFooter, pageFooter, summary. Defines 4 fields: Id, FirstName, LastName, Street. Defines 1 parameters: City. Defines 0 variables: none. Defines 0 groups: none. Data source type: JDBC/SQL. Query language: sql.",
+ "raw_xml": "",
+ "context": "Report 'AddressReport' overall structure overview",
+ "metadata": {
+ "report_name": "AddressReport",
+ "bands": [
+ "title",
+ "pageHeader",
+ "columnHeader",
+ "detail",
+ "columnFooter",
+ "pageFooter",
+ "summary"
+ ],
+ "field_count": 4,
+ "parameter_count": 1,
+ "variable_count": 0,
+ "group_count": 0,
+ "chart_count": 0,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "JDBC/SQL",
+ "source": null,
+ "query_language": "sql",
+ "properties": {}
+ },
+ "attributes": {
+ "name": "AddressReport",
+ "language": "java",
+ "pageWidth": "175",
+ "pageHeight": "842",
+ "columnWidth": "175",
+ "leftMargin": "0",
+ "rightMargin": "0",
+ "topMargin": "0",
+ "bottomMargin": "0",
+ "uuid": "05b12350-122c-46de-8bb3-2d58fcf1acc6"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "query",
+ "human_description": "This is the data query for report 'AddressReport'. Language: SQL. Query: SELECT * FROM Address WHERE City = $P{City}",
+ "raw_xml": "SELECT * FROM Address WHERE City = $P{City}\n\t",
+ "context": "Report 'AddressReport' data query",
+ "metadata": {
+ "query_language": "sql",
+ "full_sql": "SELECT * FROM Address WHERE City = $P{City}"
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "parameters",
+ "human_description": "These are all parameter definitions for report 'AddressReport', total 1 parameters. Parameters: City(java.lang.String).",
+ "raw_xml": "\n\t",
+ "context": "Report 'AddressReport' parameter definitions",
+ "metadata": {
+ "parameter_names": [
+ "City"
+ ],
+ "parameter_types": {
+ "City": "java.lang.String"
+ },
+ "default_values": {},
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "fields",
+ "human_description": "These are all field definitions for report 'AddressReport', total 4 fields. Fields: Id(java.lang.Integer), FirstName(java.lang.String), LastName(java.lang.String), Street(java.lang.String).",
+ "raw_xml": "\n\t\n\n\t\n\n\t\n\n\t",
+ "context": "Report 'AddressReport' field definitions",
+ "metadata": {
+ "field_names": [
+ "Id",
+ "FirstName",
+ "LastName",
+ "Street"
+ ],
+ "field_types": {
+ "Id": "java.lang.Integer",
+ "FirstName": "java.lang.String",
+ "LastName": "java.lang.String",
+ "Street": "java.lang.String"
+ },
+ "field_expressions": {},
+ "count": 4
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'AddressReport', total 3 styles. Styles: Sans_Normal, Sans_Bold, Sans_Italic. Default style: Sans_Normal.",
+ "raw_xml": "\n\t\n\n\t\n\n\t",
+ "context": "Report 'AddressReport' style definitions",
+ "metadata": {
+ "style_names": [
+ "Sans_Normal",
+ "Sans_Bold",
+ "Sans_Italic"
+ ],
+ "default_style": "Sans_Normal",
+ "has_conditional_styles": false,
+ "count": 3
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 2 elements: 1x staticText, 1x textField. Visible text samples: Title; ${\"Addresses in \" + $P{City}}",
+ "raw_xml": "\n\t\t\n\t\t\tTitle\n\t\t\n\t\t\n\t\t\t\"Addresses in \" + $P{City}\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1,
+ "textField": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Title",
+ "${\"Addresses in \" + $P{City}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tID\n\t\t\t\n\t\t\t\n\t\t\t\tName\n\t\t\t\n\t\t\t\n\t\t\t\tStreet\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AddressReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=14).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{Id}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{FirstName} + \" \" + $F{LastName}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Street}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tSummary\n\t\t\t\n\t\t\t\n\t\t\t\tCount :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{REPORT_COUNT}\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'AddressReport' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tPage Footer\n\t\t\t\n\t\t\t\n\t\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of \"\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Column Footer",
+ "raw_xml": "\n\t\t\n\t\t\tColumn Footer\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Column Footer"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Page Header",
+ "raw_xml": "\n\t\t\n\t\t\tPage Header\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Page Header"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 2 elements: 1x staticText, 1x textField. Visible text samples: Title; ${\"Addresses in \" + $P{City}}",
+ "raw_xml": "\n\t\t\n\t\t\tTitle\n\t\t\n\t\t\n\t\t\t\"Addresses in \" + $P{City}\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1,
+ "textField": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Title",
+ "${\"Addresses in \" + $P{City}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tID\n\t\t\t\n\t\t\t\n\t\t\t\tName\n\t\t\t\n\t\t\t\n\t\t\t\tStreet\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AddressReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=14).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{Id}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{FirstName} + \" \" + $F{LastName}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Street}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tSummary\n\t\t\t\n\t\t\t\n\t\t\t\tCount :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{REPORT_COUNT}\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'AddressReport' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tPage Footer\n\t\t\t\n\t\t\t\n\t\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of \"\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Column Footer",
+ "raw_xml": "\n\t\t\n\t\t\tColumn Footer\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Column Footer"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Page Header",
+ "raw_xml": "\n\t\t\n\t\t\tPage Header\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Page Header"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 2 elements: 1x staticText, 1x textField. Visible text samples: Title; ${\"Addresses in \" + $P{City}}",
+ "raw_xml": "\n\t\t\n\t\t\tTitle\n\t\t\n\t\t\n\t\t\t\"Addresses in \" + $P{City}\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1,
+ "textField": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Title",
+ "${\"Addresses in \" + $P{City}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tID\n\t\t\t\n\t\t\t\n\t\t\t\tName\n\t\t\t\n\t\t\t\n\t\t\t\tStreet\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AddressReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=14).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{Id}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{FirstName} + \" \" + $F{LastName}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Street}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tSummary\n\t\t\t\n\t\t\t\n\t\t\t\tCount :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{REPORT_COUNT}\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'AddressReport' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tPage Footer\n\t\t\t\n\t\t\t\n\t\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of \"\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Column Footer",
+ "raw_xml": "\n\t\t\n\t\t\tColumn Footer\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Column Footer"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Page Header",
+ "raw_xml": "\n\t\t\n\t\t\tPage Header\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Page Header"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 2 elements: 1x staticText, 1x textField. Visible text samples: Title; ${\"Addresses in \" + $P{City}}",
+ "raw_xml": "\n\t\t\n\t\t\tTitle\n\t\t\n\t\t\n\t\t\t\"Addresses in \" + $P{City}\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1,
+ "textField": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Title",
+ "${\"Addresses in \" + $P{City}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tID\n\t\t\t\n\t\t\t\n\t\t\t\tName\n\t\t\t\n\t\t\t\n\t\t\t\tStreet\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AddressReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=14).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{Id}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{FirstName} + \" \" + $F{LastName}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Street}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tSummary\n\t\t\t\n\t\t\t\n\t\t\t\tCount :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{REPORT_COUNT}\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'AddressReport' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tPage Footer\n\t\t\t\n\t\t\t\n\t\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of \"\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Column Footer",
+ "raw_xml": "\n\t\t\n\t\t\tColumn Footer\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Column Footer"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Page Header",
+ "raw_xml": "\n\t\t\n\t\t\tPage Header\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Page Header"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 2 elements: 1x staticText, 1x textField. Visible text samples: Title; ${\"Addresses in \" + $P{City}}",
+ "raw_xml": "\n\t\t\n\t\t\tTitle\n\t\t\n\t\t\n\t\t\t\"Addresses in \" + $P{City}\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1,
+ "textField": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Title",
+ "${\"Addresses in \" + $P{City}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tID\n\t\t\t\n\t\t\t\n\t\t\t\tName\n\t\t\t\n\t\t\t\n\t\t\t\tStreet\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AddressReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=14).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{Id}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{FirstName} + \" \" + $F{LastName}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Street}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tSummary\n\t\t\t\n\t\t\t\n\t\t\t\tCount :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{REPORT_COUNT}\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'AddressReport' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tPage Footer\n\t\t\t\n\t\t\t\n\t\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of \"\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Column Footer",
+ "raw_xml": "\n\t\t\n\t\t\tColumn Footer\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Column Footer"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Page Header",
+ "raw_xml": "\n\t\t\n\t\t\tPage Header\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Page Header"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 2 elements: 1x staticText, 1x textField. Visible text samples: Title; ${\"Addresses in \" + $P{City}}",
+ "raw_xml": "\n\t\t\n\t\t\tTitle\n\t\t\n\t\t\n\t\t\t\"Addresses in \" + $P{City}\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1,
+ "textField": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Title",
+ "${\"Addresses in \" + $P{City}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tID\n\t\t\t\n\t\t\t\n\t\t\t\tName\n\t\t\t\n\t\t\t\n\t\t\t\tStreet\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AddressReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=14).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{Id}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{FirstName} + \" \" + $F{LastName}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Street}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tSummary\n\t\t\t\n\t\t\t\n\t\t\t\tCount :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{REPORT_COUNT}\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'AddressReport' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tPage Footer\n\t\t\t\n\t\t\t\n\t\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of \"\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Column Footer",
+ "raw_xml": "\n\t\t\n\t\t\tColumn Footer\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Column Footer"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Page Header",
+ "raw_xml": "\n\t\t\n\t\t\tPage Header\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Page Header"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 2 elements: 1x staticText, 1x textField. Visible text samples: Title; ${\"Addresses in \" + $P{City}}",
+ "raw_xml": "\n\t\t\n\t\t\tTitle\n\t\t\n\t\t\n\t\t\t\"Addresses in \" + $P{City}\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1,
+ "textField": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Title",
+ "${\"Addresses in \" + $P{City}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tID\n\t\t\t\n\t\t\t\n\t\t\t\tName\n\t\t\t\n\t\t\t\n\t\t\t\tStreet\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AddressReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=14).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{Id}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{FirstName} + \" \" + $F{LastName}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Street}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tSummary\n\t\t\t\n\t\t\t\n\t\t\t\tCount :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{REPORT_COUNT}\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'AddressReport' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tPage Footer\n\t\t\t\n\t\t\t\n\t\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of \"\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Column Footer",
+ "raw_xml": "\n\t\t\n\t\t\tColumn Footer\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Column Footer"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Page Header",
+ "raw_xml": "\n\t\t\n\t\t\tPage Header\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Page Header"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 2 elements: 1x staticText, 1x textField. Visible text samples: Title; ${\"Addresses in \" + $P{City}}",
+ "raw_xml": "\n\t\t\n\t\t\tTitle\n\t\t\n\t\t\n\t\t\t\"Addresses in \" + $P{City}\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1,
+ "textField": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Title",
+ "${\"Addresses in \" + $P{City}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tID\n\t\t\t\n\t\t\t\n\t\t\t\tName\n\t\t\t\n\t\t\t\n\t\t\t\tStreet\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AddressReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=14).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{Id}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{FirstName} + \" \" + $F{LastName}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Street}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tSummary\n\t\t\t\n\t\t\t\n\t\t\t\tCount :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{REPORT_COUNT}\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'AddressReport' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tPage Footer\n\t\t\t\n\t\t\t\n\t\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of \"\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Column Footer",
+ "raw_xml": "\n\t\t\n\t\t\tColumn Footer\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Column Footer"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Page Header",
+ "raw_xml": "\n\t\t\n\t\t\tPage Header\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Page Header"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 2 elements: 1x staticText, 1x textField. Visible text samples: Title; ${\"Addresses in \" + $P{City}}",
+ "raw_xml": "\n\t\t\n\t\t\tTitle\n\t\t\n\t\t\n\t\t\t\"Addresses in \" + $P{City}\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1,
+ "textField": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Title",
+ "${\"Addresses in \" + $P{City}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tID\n\t\t\t\n\t\t\t\n\t\t\t\tName\n\t\t\t\n\t\t\t\n\t\t\t\tStreet\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AddressReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=14).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{Id}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{FirstName} + \" \" + $F{LastName}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Street}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tSummary\n\t\t\t\n\t\t\t\n\t\t\t\tCount :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{REPORT_COUNT}\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'AddressReport' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tPage Footer\n\t\t\t\n\t\t\t\n\t\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of \"\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Column Footer",
+ "raw_xml": "\n\t\t\n\t\t\tColumn Footer\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Column Footer"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Page Header",
+ "raw_xml": "\n\t\t\n\t\t\tPage Header\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Page Header"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 2 elements: 1x staticText, 1x textField. Visible text samples: Title; ${\"Addresses in \" + $P{City}}",
+ "raw_xml": "\n\t\t\n\t\t\tTitle\n\t\t\n\t\t\n\t\t\t\"Addresses in \" + $P{City}\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1,
+ "textField": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Title",
+ "${\"Addresses in \" + $P{City}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tID\n\t\t\t\n\t\t\t\n\t\t\t\tName\n\t\t\t\n\t\t\t\n\t\t\t\tStreet\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AddressReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=14).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{Id}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{FirstName} + \" \" + $F{LastName}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Street}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tSummary\n\t\t\t\n\t\t\t\n\t\t\t\tCount :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{REPORT_COUNT}\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'AddressReport' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tPage Footer\n\t\t\t\n\t\t\t\n\t\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of \"\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Column Footer",
+ "raw_xml": "\n\t\t\n\t\t\tColumn Footer\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Column Footer"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'AddressReport', height: 14 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Page Header",
+ "raw_xml": "\n\t\t\n\t\t\tPage Header\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AddressReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "14",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Page Header"
+ ]
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'AllChartsReport'. Page size: 595 x 842 portrait. Contains 0 standard bands with content: none. Defines 0 fields: none. Defines 18 parameters: categoryDatasource1, categoryDatasource2, categoryDatasource3, categoryDatasource4, categoryDatasource5, categoryDatasource6, categoryDatasource7, pieDatasource1, pieDatasource2, timePeriodDatasource1, timeSeriesDatasource1, timeSeriesDatasource2, timeSeriesDatasource3, xyDatasource1, xyDatasource2, xyDatasource3, xyDatasource4, xyDatasource5. Defines 0 variables: none. Defines 1 groups: Charts. Data source type: DataAdapter. Source: One Empty Record. Contains 19 charts.",
+ "raw_xml": "",
+ "context": "Report 'AllChartsReport' overall structure overview",
+ "metadata": {
+ "report_name": "AllChartsReport",
+ "bands": [],
+ "field_count": 0,
+ "parameter_count": 18,
+ "variable_count": 0,
+ "group_count": 1,
+ "chart_count": 19,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "DataAdapter",
+ "source": "One Empty Record",
+ "query_language": null,
+ "properties": {
+ "net.sf.jasperreports.export.xls.ignore.graphics": "false",
+ "com.jaspersoft.studio.data.defaultdataadapter": "One Empty Record",
+ "net.sf.jasperreports.image.dpi": "150",
+ "net.sf.jasperreports.chart.theme": "eye.candy.sixties"
+ }
+ },
+ "attributes": {
+ "name": "AllChartsReport",
+ "language": "java",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "whenNoDataType": "AllSectionsNoDetail",
+ "columnWidth": "555",
+ "leftMargin": "20",
+ "rightMargin": "20",
+ "topMargin": "20",
+ "bottomMargin": "20",
+ "resourceBundle": "AllCharts",
+ "whenResourceMissingType": "Key",
+ "uuid": "bce0058f-ad1c-4b93-9d6b-6289cc922a3c"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "dataset",
+ "human_description": "This is dataset 'categoryDataset' definition for report 'AllChartsReport'. Contains 3 fields: full_name, amount, sales_state. Contains 0 parameters: none. No query.",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\t$F{amount}\n\t\t\n\t\t\n\t\t\t$F{full_name}\n\t\t\n\t\t\n\t\t\t$F{sales_state}\n\t\t\n\t\n\t",
+ "context": "Report 'AllChartsReport' dataset 'categoryDataset'",
+ "metadata": {
+ "dataset_name": "categoryDataset",
+ "field_names": [
+ "full_name",
+ "amount",
+ "sales_state"
+ ],
+ "parameter_names": [],
+ "query": "",
+ "query_language": "",
+ "properties": {}
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "dataset",
+ "human_description": "This is dataset 'pieDataset' definition for report 'AllChartsReport'. Contains 2 fields: amount, sales_state. Contains 0 parameters: none. No query.",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\n\t\t\t$F{amount}\n\t\t\n\t\t\n\t\t\t$F{sales_state}\n\t\t\n\t\n\t",
+ "context": "Report 'AllChartsReport' dataset 'pieDataset'",
+ "metadata": {
+ "dataset_name": "pieDataset",
+ "field_names": [
+ "amount",
+ "sales_state"
+ ],
+ "parameter_names": [],
+ "query": "",
+ "query_language": "",
+ "properties": {}
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "dataset",
+ "human_description": "This is dataset 'xyDataset' definition for report 'AllChartsReport'. Contains 3 fields: amount, probability, sales_state. Contains 0 parameters: none. No query.",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\t$F{sales_state}\n\t\t\n\t\t\n\t\t\t$F{probability}\n\t\t\n\t\t\n\t\t\t$F{amount}\n\t\t\n\t\n\t",
+ "context": "Report 'AllChartsReport' dataset 'xyDataset'",
+ "metadata": {
+ "dataset_name": "xyDataset",
+ "field_names": [
+ "amount",
+ "probability",
+ "sales_state"
+ ],
+ "parameter_names": [],
+ "query": "",
+ "query_language": "",
+ "properties": {}
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "dataset",
+ "human_description": "This is dataset 'timeSeriesDataset' definition for report 'AllChartsReport'. Contains 3 fields: amount, date_closed, sales_stage. Contains 0 parameters: none. No query.",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\t$F{amount}\n\t\t\n\t\t\n\t\t\t$F{sales_stage}\n\t\t\n\t\t\n\t\t\t$F{date_closed}.getMonth()\n\t\t\n\t\n\t",
+ "context": "Report 'AllChartsReport' dataset 'timeSeriesDataset'",
+ "metadata": {
+ "dataset_name": "timeSeriesDataset",
+ "field_names": [
+ "amount",
+ "date_closed",
+ "sales_stage"
+ ],
+ "parameter_names": [],
+ "query": "",
+ "query_language": "",
+ "properties": {}
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "dataset",
+ "human_description": "This is dataset 'timePeriodDataset' definition for report 'AllChartsReport'. Contains 6 fields: amount, start_year, start_month, close_year, close_month, sales_state. Contains 0 parameters: none. No query.",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\tnew Date($F{start_year} - 1900, $F{start_month}, 1)\n\t\t\n\t\t\n\t\t\tnew Date($F{close_year} - 1900, $F{close_month}, 1)\n\t\t\n\t\n\t",
+ "context": "Report 'AllChartsReport' dataset 'timePeriodDataset'",
+ "metadata": {
+ "dataset_name": "timePeriodDataset",
+ "field_names": [
+ "amount",
+ "start_year",
+ "start_month",
+ "close_year",
+ "close_month",
+ "sales_state"
+ ],
+ "parameter_names": [],
+ "query": "",
+ "query_language": "",
+ "properties": {}
+ }
+ },
+ {
+ "chunk_id": 6,
+ "chunk_type": "dataset",
+ "human_description": "This is dataset 'meterDataset' definition for report 'AllChartsReport'. Contains 0 fields: none. Contains 0 parameters: none. No query.",
+ "raw_xml": "\n\t",
+ "context": "Report 'AllChartsReport' dataset 'meterDataset'",
+ "metadata": {
+ "dataset_name": "meterDataset",
+ "field_names": [],
+ "parameter_names": [],
+ "query": "",
+ "query_language": "",
+ "properties": {}
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'AllChartsReport'. Data adapter: One Empty Record.",
+ "raw_xml": "",
+ "context": "Report 'AllChartsReport' data source configuration",
+ "metadata": {
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "One Empty Record"
+ }
+ }
+ },
+ {
+ "chunk_id": 8,
+ "chunk_type": "parameters",
+ "human_description": "These are all parameter definitions for report 'AllChartsReport', total 18 parameters. Parameters: categoryDatasource1(net.sf.jasperreports.engine.data.JRCsvDataSource), categoryDatasource2(net.sf.jasperreports.engine.data.JRCsvDataSource), categoryDatasource3(net.sf.jasperreports.engine.data.JRCsvDataSource), categoryDatasource4(net.sf.jasperreports.engine.data.JRCsvDataSource), categoryDatasource5(net.sf.jasperreports.engine.data.JRCsvDataSource), categoryDatasource6(net.sf.jasperreports.engine.data.JRCsvDataSource), categoryDatasource7(net.sf.jasperreports.engine.data.JRCsvDataSource), pieDatasource1(net.sf.jasperreports.engine.data.JRCsvDataSource), pieDatasource2(net.sf.jasperreports.engine.data.JRCsvDataSource), timePeriodDatasource1(net.sf.jasperreports.engine.data.JRCsvDataSource), timeSeriesDatasource1(net.sf.jasperreports.engine.data.JRCsvDataSource), timeSeriesDatasource2(net.sf.jasperreports.engine.data.JRCsvDataSource), timeSeriesDatasource3(net.sf.jasperreports.engine.data.JRCsvDataSource), xyDatasource1(net.sf.jasperreports.engine.data.JRCsvDataSource), xyDatasource2(net.sf.jasperreports.engine.data.JRCsvDataSource), xyDatasource3(net.sf.jasperreports.engine.data.JRCsvDataSource), xyDatasource4(net.sf.jasperreports.engine.data.JRCsvDataSource), xyDatasource5(net.sf.jasperreports.engine.data.JRCsvDataSource).",
+ "raw_xml": "\n\t\tnet.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createCategoryDatasource()\n\t\n\t\n\n\t\tnet.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createCategoryDatasource()\n\t\n\t\n\n\t\tnet.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createCategoryDatasource()\n\t\n\t\n\n\t\tnet.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createCategoryDatasource()\n\t\n\t\n\n\t\tnet.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createCategoryDatasource()\n\t\n\t\n\n\t\tnet.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createCategoryDatasource()\n\t\n\t\n\n\t\tnet.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createCategoryDatasource()\n\t\n\t\n\n\t\tnet.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createPieDatasource()\n\t\n\t\n\n\t\tnet.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createPieDatasource()\n\t\n\t\n\n\t\t\n\t\tnet.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createTimePeriodDatasource()\n\t\n\t\n\n\t\tnet.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createTimeSeriesDatasource()\n\t\n\t\n\n\t\tnet.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createTimeSeriesDatasource()\n\t\n\t\n\n\t\tnet.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createTimeSeriesDatasource()\n\t\n\t\n\n\t\tnet.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createXYDatasource()\n\t\n\t\n\n\t\tnet.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createXYDatasource()\n\t\n\t\n\n\t\tnet.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createXYDatasource()\n\t\n\t\n\n\t\tnet.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createXYDatasource()\n\t\n\t\n\n\t\tnet.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createXYDatasource()\n\t\n\t",
+ "context": "Report 'AllChartsReport' parameter definitions",
+ "metadata": {
+ "parameter_names": [
+ "categoryDatasource1",
+ "categoryDatasource2",
+ "categoryDatasource3",
+ "categoryDatasource4",
+ "categoryDatasource5",
+ "categoryDatasource6",
+ "categoryDatasource7",
+ "pieDatasource1",
+ "pieDatasource2",
+ "timePeriodDatasource1",
+ "timeSeriesDatasource1",
+ "timeSeriesDatasource2",
+ "timeSeriesDatasource3",
+ "xyDatasource1",
+ "xyDatasource2",
+ "xyDatasource3",
+ "xyDatasource4",
+ "xyDatasource5"
+ ],
+ "parameter_types": {
+ "categoryDatasource1": "net.sf.jasperreports.engine.data.JRCsvDataSource",
+ "categoryDatasource2": "net.sf.jasperreports.engine.data.JRCsvDataSource",
+ "categoryDatasource3": "net.sf.jasperreports.engine.data.JRCsvDataSource",
+ "categoryDatasource4": "net.sf.jasperreports.engine.data.JRCsvDataSource",
+ "categoryDatasource5": "net.sf.jasperreports.engine.data.JRCsvDataSource",
+ "categoryDatasource6": "net.sf.jasperreports.engine.data.JRCsvDataSource",
+ "categoryDatasource7": "net.sf.jasperreports.engine.data.JRCsvDataSource",
+ "pieDatasource1": "net.sf.jasperreports.engine.data.JRCsvDataSource",
+ "pieDatasource2": "net.sf.jasperreports.engine.data.JRCsvDataSource",
+ "timePeriodDatasource1": "net.sf.jasperreports.engine.data.JRCsvDataSource",
+ "timeSeriesDatasource1": "net.sf.jasperreports.engine.data.JRCsvDataSource",
+ "timeSeriesDatasource2": "net.sf.jasperreports.engine.data.JRCsvDataSource",
+ "timeSeriesDatasource3": "net.sf.jasperreports.engine.data.JRCsvDataSource",
+ "xyDatasource1": "net.sf.jasperreports.engine.data.JRCsvDataSource",
+ "xyDatasource2": "net.sf.jasperreports.engine.data.JRCsvDataSource",
+ "xyDatasource3": "net.sf.jasperreports.engine.data.JRCsvDataSource",
+ "xyDatasource4": "net.sf.jasperreports.engine.data.JRCsvDataSource",
+ "xyDatasource5": "net.sf.jasperreports.engine.data.JRCsvDataSource"
+ },
+ "default_values": {
+ "categoryDatasource1": "net.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createCategoryDatasource()",
+ "categoryDatasource2": "net.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createCategoryDatasource()",
+ "categoryDatasource3": "net.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createCategoryDatasource()",
+ "categoryDatasource4": "net.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createCategoryDatasource()",
+ "categoryDatasource5": "net.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createCategoryDatasource()",
+ "categoryDatasource6": "net.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createCategoryDatasource()",
+ "categoryDatasource7": "net.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createCategoryDatasource()",
+ "pieDatasource1": "net.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createPieDatasource()",
+ "pieDatasource2": "net.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createPieDatasource()",
+ "timePeriodDatasource1": "net.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createTimePeriodDatasource()",
+ "timeSeriesDatasource1": "net.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createTimeSeriesDatasource()",
+ "timeSeriesDatasource2": "net.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createTimeSeriesDatasource()",
+ "timeSeriesDatasource3": "net.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createTimeSeriesDatasource()",
+ "xyDatasource1": "net.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createXYDatasource()",
+ "xyDatasource2": "net.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createXYDatasource()",
+ "xyDatasource3": "net.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createXYDatasource()",
+ "xyDatasource4": "net.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createXYDatasource()",
+ "xyDatasource5": "net.sf.jasperreports.samples.chartthemes.ChartThemesUtil.createXYDatasource()"
+ },
+ "count": 18
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "group",
+ "human_description": "This is group 'Charts' definition for report 'AllChartsReport'. Group expression: . Has groupHeader: Yes, has groupFooter: No. Min height: 0, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"Bar Chart\"\n\t\t\t\t\t\"Chart Displaying Bars\"\n\t\t\t\t\t\"Bar Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{categoryDatasource1}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{full_name}\n\t\t\t\t\t\t\t$V{personAmount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Name\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"Stacked Bar Chart\"\n\t\t\t\t\t\"Chart Displaying Stacked Bars\"\n\t\t\t\t\t\"Stacked Bar Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{categoryDatasource2}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{full_name}\n\t\t\t\t\t\t\t$V{personAmount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Name\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"Bar 3D Chart\"\n\t\t\t\t\t\"Chart Displaying 3D Bars\"\n\t\t\t\t\t\"Bar 3D Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{categoryDatasource3}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{full_name}\n\t\t\t\t\t\t\t$V{personAmount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Name\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"Stacked Bar 3D Chart\"\n\t\t\t\t\t\"Chart Displaying Stacked 3D Bars\"\n\t\t\t\t\t\"Stacked Bar 3D Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{categoryDatasource4}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{full_name}\n\t\t\t\t\t\t\t$V{personAmount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Name\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"Pie Chart\"\n\t\t\t\t\t\"Chart Displaying Pie\"\n\t\t\t\t\t\"Pie Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{pieDatasource1}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$V{personAmount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"Pie 3D Chart\"\n\t\t\t\t\t\"Chart Displaying 3D Pie\"\n\t\t\t\t\t\"Pie 3D Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{pieDatasource2}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$V{personAmount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"Area Chart\"\n\t\t\t\t\t\"Chart Displaying Areas\"\n\t\t\t\t\t\"Area Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{categoryDatasource5}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{full_name}\n\t\t\t\t\t\t\t$V{personAmount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Name\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"Stacked Area Chart\"\n\t\t\t\t\t\"Chart Displaying Stacked Areas\"\n\t\t\t\t\t\"Stacked Area Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{categoryDatasource6}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{full_name}\n\t\t\t\t\t\t\t$V{personAmount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Name\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"Line Chart\"\n\t\t\t\t\t\"Chart Displaying Lines\"\n\t\t\t\t\t\"Line Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{categoryDatasource7}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{full_name}\n\t\t\t\t\t\t\t$V{personAmount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Name\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"XY Line Chart\"\n\t\t\t\t\t\"Chart Displaying Lines\"\n\t\t\t\t\t\"XY Line Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{xyDatasource1}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{probability}\n\t\t\t\t\t\t\t$F{amount} + $F{amount} * Math.sin($V{REPORT_COUNT} * Math.log(1 + $V{REPORT_COUNT}))\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Probability\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"XY Bar Chart\"\n\t\t\t\t\t\"Chart Displaying Bars\"\n\t\t\t\t\t\"XY Bar Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{xyDatasource2}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{probability}\n\t\t\t\t\t\t\t$F{amount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Probability\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"Time Period Bar Chart\"\n\t\t\t\t\t\"Chart Displaying Time Period Bars\"\n\t\t\t\t\t\"Time Period Bar Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{timePeriodDatasource1}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$V{startDate}\n\t\t\t\t\t\t\t$V{closeDate}\n\t\t\t\t\t\t\t$F{amount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Time\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"Time Series Bar Chart\"\n\t\t\t\t\t\"Chart Displaying Time Series Bars\"\n\t\t\t\t\t\"Time Series Bar Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{timeSeriesDatasource1}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_stage}\n\t\t\t\t\t\t\t$F{date_closed}\n\t\t\t\t\t\t\t$V{monthAmount}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Time\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"XY Area Chart\"\n\t\t\t\t\t\"Chart Displaying Areas\"\n\t\t\t\t\t\"XY Area Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{xyDatasource3}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{probability}\n\t\t\t\t\t\t\t$F{amount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Probability\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"Scatter Chart\"\n\t\t\t\t\t\"Chart Displaying Scattered Dots\"\n\t\t\t\t\t\"Scatter Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{xyDatasource4}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{probability}\n\t\t\t\t\t\t\t200000 + 200000 * Math.sin($V{REPORT_COUNT} * Math.log(1 + $V{REPORT_COUNT}))\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Probability\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"Bubble Chart\"\n\t\t\t\t\t\"Chart Displaying Bubbles\"\n\t\t\t\t\t\"Bubble Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{xyDatasource5}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{probability}\n\t\t\t\t\t\t\t200000 + 200000 * Math.sin($V{REPORT_COUNT} * Math.log(1 + $V{REPORT_COUNT}))\n\t\t\t\t\t\t\t25000 + 20000 * Math.sin($F{probability} * Math.log(1 + $F{amount}))\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Probability\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"Time Series Chart\"\n\t\t\t\t\t\"Chart Displaying Time Series\"\n\t\t\t\t\t\"Time Series Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{timeSeriesDatasource2}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_stage}\n\t\t\t\t\t\t\t$F{date_closed}\n\t\t\t\t\t\t\t$V{monthAmount}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Time\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"High Low Chart\"\n\t\t\t\t\t\"Chart Displaying High Low Open Close Series\"\n\t\t\t\t\t\"High Low Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{timeSeriesDatasource3}\n\t\t\t\t\t\t\n\t\t\t\t\t\t$F{sales_stage}\n\t\t\t\t\t\t$F{date_closed}\n\t\t\t\t\t\t$V{monthAmount} + $V{monthAmount} * 0.6d\n\t\t\t\t\t\t$V{monthAmount} - $V{monthAmount} * 0.6d\n\t\t\t\t\t\t$V{monthAmount} - $V{monthAmount} * 0.3d\n\t\t\t\t\t\t$V{monthAmount} + $V{monthAmount} * 0.4d\n\t\t\t\t\t\t$V{monthAmount} / 2d\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Time\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"Meter Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tnew JREmptyDataSource()\n\t\t\t\t\t\t\n\t\t\t\t\t\t7500.0d\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t0.0d\n\t\t\t\t\t\t\t17500.0d\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t0.0d\n\t\t\t\t\t\t\t\t2000.0d\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t2000.0d\n\t\t\t\t\t\t\t\t12000.0d\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t12000.0d\n\t\t\t\t\t\t\t\t17500.0d\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t$R{dial.label}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'AllChartsReport' group 'Charts'",
+ "metadata": {
+ "group_name": "Charts",
+ "expression": "",
+ "has_header": true,
+ "has_footer": false,
+ "minHeightToStartNewPage": "0",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'AllChartsReport', type: bar. Dataset kind: category. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\"Bar Chart\"\n\t\t\t\t\t\"Chart Displaying Bars\"\n\t\t\t\t\t\"Bar Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{categoryDatasource1}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{full_name}\n\t\t\t\t\t\t\t$V{personAmount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Name\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'AllChartsReport' chart",
+ "metadata": {
+ "chart_type": "bar",
+ "dataset": {
+ "kind": "category",
+ "series": [
+ {
+ "key": "",
+ "value": "$V{personAmount}"
+ }
+ ]
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "bar",
+ "uuid": "a962938e-0a96-45ca-a4dc-0d0f381d6dd8",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "300",
+ "evaluationTime": "Report"
+ }
+ }
+ },
+ {
+ "chunk_id": 11,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'AllChartsReport', type: stackedBar. Dataset kind: category. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\"Stacked Bar Chart\"\n\t\t\t\t\t\"Chart Displaying Stacked Bars\"\n\t\t\t\t\t\"Stacked Bar Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{categoryDatasource2}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{full_name}\n\t\t\t\t\t\t\t$V{personAmount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Name\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'AllChartsReport' chart",
+ "metadata": {
+ "chart_type": "stackedBar",
+ "dataset": {
+ "kind": "category",
+ "series": [
+ {
+ "key": "",
+ "value": "$V{personAmount}"
+ }
+ ]
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "stackedBar",
+ "uuid": "9a2e40d8-5139-401c-a13e-4cf9cd4c7bd9",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "300",
+ "evaluationTime": "Report"
+ }
+ }
+ },
+ {
+ "chunk_id": 12,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'AllChartsReport', type: bar3D. Dataset kind: category. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\"Bar 3D Chart\"\n\t\t\t\t\t\"Chart Displaying 3D Bars\"\n\t\t\t\t\t\"Bar 3D Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{categoryDatasource3}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{full_name}\n\t\t\t\t\t\t\t$V{personAmount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Name\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'AllChartsReport' chart",
+ "metadata": {
+ "chart_type": "bar3D",
+ "dataset": {
+ "kind": "category",
+ "series": [
+ {
+ "key": "",
+ "value": "$V{personAmount}"
+ }
+ ]
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "bar3D",
+ "uuid": "b79ba290-5550-453c-839e-20b70f942097",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "300",
+ "evaluationTime": "Report"
+ }
+ }
+ },
+ {
+ "chunk_id": 13,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'AllChartsReport', type: stackedBar3D. Dataset kind: category. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\"Stacked Bar 3D Chart\"\n\t\t\t\t\t\"Chart Displaying Stacked 3D Bars\"\n\t\t\t\t\t\"Stacked Bar 3D Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{categoryDatasource4}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{full_name}\n\t\t\t\t\t\t\t$V{personAmount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Name\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'AllChartsReport' chart",
+ "metadata": {
+ "chart_type": "stackedBar3D",
+ "dataset": {
+ "kind": "category",
+ "series": [
+ {
+ "key": "",
+ "value": "$V{personAmount}"
+ }
+ ]
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "stackedBar3D",
+ "uuid": "64af8687-e101-41e5-9165-e647d4fc6f72",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "300",
+ "evaluationTime": "Report"
+ }
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'AllChartsReport', type: pie. Dataset kind: pie. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\"Pie Chart\"\n\t\t\t\t\t\"Chart Displaying Pie\"\n\t\t\t\t\t\"Pie Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{pieDatasource1}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$V{personAmount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'AllChartsReport' chart",
+ "metadata": {
+ "chart_type": "pie",
+ "dataset": {
+ "kind": "pie",
+ "series": [
+ {
+ "key": "$F{sales_state}",
+ "value": "$V{personAmount}"
+ }
+ ]
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "pie",
+ "uuid": "5128466d-126b-454f-a510-d3288118bda8",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "300",
+ "evaluationTime": "Report"
+ }
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'AllChartsReport', type: pie3D. Dataset kind: pie. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\"Pie 3D Chart\"\n\t\t\t\t\t\"Chart Displaying 3D Pie\"\n\t\t\t\t\t\"Pie 3D Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{pieDatasource2}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$V{personAmount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'AllChartsReport' chart",
+ "metadata": {
+ "chart_type": "pie3D",
+ "dataset": {
+ "kind": "pie",
+ "series": [
+ {
+ "key": "$F{sales_state}",
+ "value": "$V{personAmount}"
+ }
+ ]
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "pie3D",
+ "uuid": "7a425c8b-03a7-4814-b86f-32f4a64ca9ca",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "300",
+ "evaluationTime": "Report"
+ }
+ }
+ },
+ {
+ "chunk_id": 16,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'AllChartsReport', type: area. Dataset kind: category. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\"Area Chart\"\n\t\t\t\t\t\"Chart Displaying Areas\"\n\t\t\t\t\t\"Area Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{categoryDatasource5}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{full_name}\n\t\t\t\t\t\t\t$V{personAmount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Name\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'AllChartsReport' chart",
+ "metadata": {
+ "chart_type": "area",
+ "dataset": {
+ "kind": "category",
+ "series": [
+ {
+ "key": "",
+ "value": "$V{personAmount}"
+ }
+ ]
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "area",
+ "uuid": "7ae04d87-1a4b-4dcc-904a-459efa6a5e9e",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "300",
+ "evaluationTime": "Report"
+ }
+ }
+ },
+ {
+ "chunk_id": 17,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'AllChartsReport', type: stackedArea. Dataset kind: category. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\"Stacked Area Chart\"\n\t\t\t\t\t\"Chart Displaying Stacked Areas\"\n\t\t\t\t\t\"Stacked Area Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{categoryDatasource6}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{full_name}\n\t\t\t\t\t\t\t$V{personAmount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Name\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'AllChartsReport' chart",
+ "metadata": {
+ "chart_type": "stackedArea",
+ "dataset": {
+ "kind": "category",
+ "series": [
+ {
+ "key": "",
+ "value": "$V{personAmount}"
+ }
+ ]
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "stackedArea",
+ "uuid": "34033fa6-6f79-47f3-a74a-d33019d3939a",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "300",
+ "evaluationTime": "Report"
+ }
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'AllChartsReport', type: line. Dataset kind: category. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\"Line Chart\"\n\t\t\t\t\t\"Chart Displaying Lines\"\n\t\t\t\t\t\"Line Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{categoryDatasource7}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{full_name}\n\t\t\t\t\t\t\t$V{personAmount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Name\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'AllChartsReport' chart",
+ "metadata": {
+ "chart_type": "line",
+ "dataset": {
+ "kind": "category",
+ "series": [
+ {
+ "key": "",
+ "value": "$V{personAmount}"
+ }
+ ]
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "line",
+ "uuid": "2136200f-9bc5-4997-ab90-927983c1e1f4",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "300",
+ "evaluationTime": "Report"
+ }
+ }
+ },
+ {
+ "chunk_id": 19,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'AllChartsReport', type: xyLine. Dataset kind: xy. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\"XY Line Chart\"\n\t\t\t\t\t\"Chart Displaying Lines\"\n\t\t\t\t\t\"XY Line Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{xyDatasource1}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{probability}\n\t\t\t\t\t\t\t$F{amount} + $F{amount} * Math.sin($V{REPORT_COUNT} * Math.log(1 + $V{REPORT_COUNT}))\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Probability\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'AllChartsReport' chart",
+ "metadata": {
+ "chart_type": "xyLine",
+ "dataset": {
+ "kind": "xy",
+ "series": [
+ {
+ "key": "",
+ "value": ""
+ }
+ ]
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "xyLine",
+ "uuid": "82e1a762-637c-4508-ab62-167cb116792b",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "300",
+ "evaluationTime": "Report"
+ }
+ }
+ },
+ {
+ "chunk_id": 20,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'AllChartsReport', type: xyBar. Dataset kind: xy. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\"XY Bar Chart\"\n\t\t\t\t\t\"Chart Displaying Bars\"\n\t\t\t\t\t\"XY Bar Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{xyDatasource2}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{probability}\n\t\t\t\t\t\t\t$F{amount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Probability\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'AllChartsReport' chart",
+ "metadata": {
+ "chart_type": "xyBar",
+ "dataset": {
+ "kind": "xy",
+ "series": [
+ {
+ "key": "",
+ "value": ""
+ }
+ ]
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "xyBar",
+ "uuid": "b059b4e1-e3ff-4b8d-a60f-d9e3968a6579",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "300",
+ "evaluationTime": "Report"
+ }
+ }
+ },
+ {
+ "chunk_id": 21,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'AllChartsReport', type: xyBar. Dataset kind: timePeriod. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\"Time Period Bar Chart\"\n\t\t\t\t\t\"Chart Displaying Time Period Bars\"\n\t\t\t\t\t\"Time Period Bar Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{timePeriodDatasource1}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$V{startDate}\n\t\t\t\t\t\t\t$V{closeDate}\n\t\t\t\t\t\t\t$F{amount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Time\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'AllChartsReport' chart",
+ "metadata": {
+ "chart_type": "xyBar",
+ "dataset": {
+ "kind": "timePeriod",
+ "series": [
+ {
+ "key": "",
+ "value": "$F{amount}"
+ }
+ ]
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "xyBar",
+ "uuid": "22ed5a99-76c6-4f44-bf9a-08b51b22b3b8",
+ "positionType": "Float",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "300",
+ "evaluationTime": "Report"
+ }
+ }
+ },
+ {
+ "chunk_id": 22,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'AllChartsReport', type: xyBar. Dataset kind: timeSeries. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\"Time Series Bar Chart\"\n\t\t\t\t\t\"Chart Displaying Time Series Bars\"\n\t\t\t\t\t\"Time Series Bar Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{timeSeriesDatasource1}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_stage}\n\t\t\t\t\t\t\t$F{date_closed}\n\t\t\t\t\t\t\t$V{monthAmount}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Time\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'AllChartsReport' chart",
+ "metadata": {
+ "chart_type": "xyBar",
+ "dataset": {
+ "kind": "timeSeries",
+ "series": [
+ {
+ "key": "",
+ "value": "$V{monthAmount}"
+ }
+ ]
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "xyBar",
+ "uuid": "83049a18-ca0c-401e-964a-078dfd387835",
+ "positionType": "Float",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "300",
+ "evaluationTime": "Report"
+ }
+ }
+ },
+ {
+ "chunk_id": 23,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'AllChartsReport', type: xyArea. Dataset kind: xy. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\"XY Area Chart\"\n\t\t\t\t\t\"Chart Displaying Areas\"\n\t\t\t\t\t\"XY Area Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{xyDatasource3}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{probability}\n\t\t\t\t\t\t\t$F{amount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Probability\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'AllChartsReport' chart",
+ "metadata": {
+ "chart_type": "xyArea",
+ "dataset": {
+ "kind": "xy",
+ "series": [
+ {
+ "key": "",
+ "value": ""
+ }
+ ]
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "xyArea",
+ "uuid": "aa29ada5-eb52-4da4-afd8-0eead898b254",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "300",
+ "evaluationTime": "Report"
+ }
+ }
+ },
+ {
+ "chunk_id": 24,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'AllChartsReport', type: scatter. Dataset kind: xy. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\"Scatter Chart\"\n\t\t\t\t\t\"Chart Displaying Scattered Dots\"\n\t\t\t\t\t\"Scatter Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{xyDatasource4}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{probability}\n\t\t\t\t\t\t\t200000 + 200000 * Math.sin($V{REPORT_COUNT} * Math.log(1 + $V{REPORT_COUNT}))\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Probability\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'AllChartsReport' chart",
+ "metadata": {
+ "chart_type": "scatter",
+ "dataset": {
+ "kind": "xy",
+ "series": [
+ {
+ "key": "",
+ "value": ""
+ }
+ ]
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "scatter",
+ "uuid": "c00c701f-9028-4850-8a78-97cf69cc419e",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "300",
+ "evaluationTime": "Report"
+ }
+ }
+ },
+ {
+ "chunk_id": 25,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'AllChartsReport', type: bubble. Dataset kind: xyz. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\"Bubble Chart\"\n\t\t\t\t\t\"Chart Displaying Bubbles\"\n\t\t\t\t\t\"Bubble Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{xyDatasource5}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{probability}\n\t\t\t\t\t\t\t200000 + 200000 * Math.sin($V{REPORT_COUNT} * Math.log(1 + $V{REPORT_COUNT}))\n\t\t\t\t\t\t\t25000 + 20000 * Math.sin($F{probability} * Math.log(1 + $F{amount}))\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Probability\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'AllChartsReport' chart",
+ "metadata": {
+ "chart_type": "bubble",
+ "dataset": {
+ "kind": "xyz",
+ "series": [
+ {
+ "key": "",
+ "value": ""
+ }
+ ]
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "bubble",
+ "uuid": "0300dec8-1d84-47b4-9f5e-2d82926a67db",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "300",
+ "evaluationTime": "Report"
+ }
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'AllChartsReport', type: timeSeries. Dataset kind: timeSeries. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\"Time Series Chart\"\n\t\t\t\t\t\"Chart Displaying Time Series\"\n\t\t\t\t\t\"Time Series Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{timeSeriesDatasource2}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_stage}\n\t\t\t\t\t\t\t$F{date_closed}\n\t\t\t\t\t\t\t$V{monthAmount}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Time\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'AllChartsReport' chart",
+ "metadata": {
+ "chart_type": "timeSeries",
+ "dataset": {
+ "kind": "timeSeries",
+ "series": [
+ {
+ "key": "",
+ "value": "$V{monthAmount}"
+ }
+ ]
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "timeSeries",
+ "uuid": "ef0f13a3-d82d-469d-a3ab-58b507f90748",
+ "positionType": "Float",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "300",
+ "evaluationTime": "Report"
+ }
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'AllChartsReport', type: highLow. Dataset kind: highLow. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\"High Low Chart\"\n\t\t\t\t\t\"Chart Displaying High Low Open Close Series\"\n\t\t\t\t\t\"High Low Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$P{timeSeriesDatasource3}\n\t\t\t\t\t\t\n\t\t\t\t\t\t$F{sales_stage}\n\t\t\t\t\t\t$F{date_closed}\n\t\t\t\t\t\t$V{monthAmount} + $V{monthAmount} * 0.6d\n\t\t\t\t\t\t$V{monthAmount} - $V{monthAmount} * 0.6d\n\t\t\t\t\t\t$V{monthAmount} - $V{monthAmount} * 0.3d\n\t\t\t\t\t\t$V{monthAmount} + $V{monthAmount} * 0.4d\n\t\t\t\t\t\t$V{monthAmount} / 2d\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Time\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'AllChartsReport' chart",
+ "metadata": {
+ "chart_type": "highLow",
+ "dataset": {
+ "kind": "highLow",
+ "series": []
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "highLow",
+ "uuid": "63c4e075-81d8-4c3c-bf87-f61a3dcd8844",
+ "positionType": "Float",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "300",
+ "evaluationTime": "Report"
+ }
+ }
+ },
+ {
+ "chunk_id": 28,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'AllChartsReport', type: meter. Dataset kind: value. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\"Meter Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tnew JREmptyDataSource()\n\t\t\t\t\t\t\n\t\t\t\t\t\t7500.0d\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t0.0d\n\t\t\t\t\t\t\t17500.0d\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t0.0d\n\t\t\t\t\t\t\t\t2000.0d\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t2000.0d\n\t\t\t\t\t\t\t\t12000.0d\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t12000.0d\n\t\t\t\t\t\t\t\t17500.0d\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t$R{dial.label}\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'AllChartsReport' chart",
+ "metadata": {
+ "chart_type": "meter",
+ "dataset": {
+ "kind": "value",
+ "series": []
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "meter",
+ "uuid": "e7769b20-76d2-4dcb-8fb9-a9b2258e01e5",
+ "positionType": "Float",
+ "x": "125",
+ "y": "0",
+ "width": "300",
+ "height": "300",
+ "showLegend": "false"
+ }
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'AreaChartReport'. Page size: 595 x 842 portrait. Contains 5 standard bands with content: title, columnHeader, detail, columnFooter, pageFooter. Defines 14 fields: ShippedDate, ShipCountry, RequiredDate, CustomerID, OrderID, ShipName, ShipVia, ShipPostalCode, OrderDate, ShipCity, ShipAddress, EmployeeID, ShipRegion, Freight. Defines 2 parameters: ReportTitle, MaxOrderID. Defines 11 variables: FirstLetter, FirstLetterCount, FirstLetterMin, FirstLetterMax, FreightSumChartGroup, FreightSumCountryGroup, FreightSumColumn, FreightSumPage, FreightSumReport, DateHighestCountryGroup, RegionCountCountryGroup. Defines 3 groups: ChartGroup, FirstLetterGroup, CountryGroup. Data source type: JDBC/SQL. Source: Sample DB. Query language: sql. Contains 1 charts.",
+ "raw_xml": "",
+ "context": "Report 'AreaChartReport' overall structure overview",
+ "metadata": {
+ "report_name": "AreaChartReport",
+ "bands": [
+ "title",
+ "columnHeader",
+ "detail",
+ "columnFooter",
+ "pageFooter"
+ ],
+ "field_count": 14,
+ "parameter_count": 2,
+ "variable_count": 11,
+ "group_count": 3,
+ "chart_count": 1,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "JDBC/SQL",
+ "source": "Sample DB",
+ "query_language": "sql",
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "Sample DB",
+ "net.sf.jasperreports.chart.render.type": "svg",
+ "net.sf.jasperreports.image.dpi": "150"
+ }
+ },
+ "attributes": {
+ "name": "AreaChartReport",
+ "language": "java",
+ "columnCount": "2",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "columnWidth": "270",
+ "columnSpacing": "15",
+ "leftMargin": "20",
+ "rightMargin": "20",
+ "topMargin": "30",
+ "bottomMargin": "30",
+ "uuid": "558426ec-9014-4e13-988f-e689b8ea83dc"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'AreaChartReport'. Data adapter: Sample DB.",
+ "raw_xml": "",
+ "context": "Report 'AreaChartReport' data source configuration",
+ "metadata": {
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "Sample DB"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "query",
+ "human_description": "This is the data query for report 'AreaChartReport'. Language: SQL. Query: SELECT * FROM Orders WHERE OrderID <= $P{MaxOrderID} ORDER BY ShipCountry",
+ "raw_xml": "SELECT * FROM Orders WHERE OrderID <= $P{MaxOrderID} ORDER BY ShipCountry\n\t",
+ "context": "Report 'AreaChartReport' data query",
+ "metadata": {
+ "query_language": "sql",
+ "full_sql": "SELECT * FROM Orders WHERE OrderID <= $P{MaxOrderID} ORDER BY ShipCountry"
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "parameters",
+ "human_description": "These are all parameter definitions for report 'AreaChartReport', total 2 parameters. Parameters: ReportTitle(java.lang.String), MaxOrderID(java.lang.Integer).",
+ "raw_xml": "\n\t\t\"Area Chart Report\"\n\t\n\t\n\n\t\t12500\n\t\n\t",
+ "context": "Report 'AreaChartReport' parameter definitions",
+ "metadata": {
+ "parameter_names": [
+ "ReportTitle",
+ "MaxOrderID"
+ ],
+ "parameter_types": {
+ "ReportTitle": "java.lang.String",
+ "MaxOrderID": "java.lang.Integer"
+ },
+ "default_values": {
+ "ReportTitle": "\"Area Chart Report\"",
+ "MaxOrderID": "12500"
+ },
+ "count": 2
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'AreaChartReport': ShippedDate, type: java.sql.Timestamp",
+ "raw_xml": "\n\t",
+ "context": "Report 'AreaChartReport' field 'ShippedDate'",
+ "metadata": {
+ "field_name": "ShippedDate",
+ "field_class": "java.sql.Timestamp",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'AreaChartReport': ShipCountry, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'AreaChartReport' field 'ShipCountry'",
+ "metadata": {
+ "field_name": "ShipCountry",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 6,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'AreaChartReport': RequiredDate, type: java.sql.Timestamp",
+ "raw_xml": "\n\t",
+ "context": "Report 'AreaChartReport' field 'RequiredDate'",
+ "metadata": {
+ "field_name": "RequiredDate",
+ "field_class": "java.sql.Timestamp",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'AreaChartReport': CustomerID, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'AreaChartReport' field 'CustomerID'",
+ "metadata": {
+ "field_name": "CustomerID",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 8,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'AreaChartReport': OrderID, type: java.lang.Integer",
+ "raw_xml": "\n\t",
+ "context": "Report 'AreaChartReport' field 'OrderID'",
+ "metadata": {
+ "field_name": "OrderID",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'AreaChartReport': ShipName, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'AreaChartReport' field 'ShipName'",
+ "metadata": {
+ "field_name": "ShipName",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'AreaChartReport': ShipVia, type: java.lang.Integer",
+ "raw_xml": "\n\t",
+ "context": "Report 'AreaChartReport' field 'ShipVia'",
+ "metadata": {
+ "field_name": "ShipVia",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 11,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'AreaChartReport': ShipPostalCode, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'AreaChartReport' field 'ShipPostalCode'",
+ "metadata": {
+ "field_name": "ShipPostalCode",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 12,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'AreaChartReport': OrderDate, type: java.sql.Timestamp",
+ "raw_xml": "\n\t",
+ "context": "Report 'AreaChartReport' field 'OrderDate'",
+ "metadata": {
+ "field_name": "OrderDate",
+ "field_class": "java.sql.Timestamp",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 13,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'AreaChartReport': ShipCity, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'AreaChartReport' field 'ShipCity'",
+ "metadata": {
+ "field_name": "ShipCity",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'AreaChartReport': ShipAddress, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'AreaChartReport' field 'ShipAddress'",
+ "metadata": {
+ "field_name": "ShipAddress",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'AreaChartReport': EmployeeID, type: java.lang.Integer",
+ "raw_xml": "\n\t",
+ "context": "Report 'AreaChartReport' field 'EmployeeID'",
+ "metadata": {
+ "field_name": "EmployeeID",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 16,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'AreaChartReport': ShipRegion, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'AreaChartReport' field 'ShipRegion'",
+ "metadata": {
+ "field_name": "ShipRegion",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 17,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'AreaChartReport': Freight, type: java.lang.Double",
+ "raw_xml": "\n\t",
+ "context": "Report 'AreaChartReport' field 'Freight'",
+ "metadata": {
+ "field_name": "Freight",
+ "field_class": "java.lang.Double",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_none",
+ "human_description": "These are variable definitions for report 'AreaChartReport' (resetType=None), total 1 variables. Variables: FirstLetter(java.lang.String, Nothing).",
+ "raw_xml": "\n\t\t$F{ShipCountry}.substring(0, 1).toUpperCase()\n\t\n\t",
+ "context": "Report 'AreaChartReport' variable definitions (None level reset)",
+ "metadata": {
+ "variable_names": [
+ "FirstLetter"
+ ],
+ "variable_types": {
+ "FirstLetter": "java.lang.String"
+ },
+ "variable_calculations": {
+ "FirstLetter": "Nothing"
+ },
+ "reset_type": "None",
+ "expressions": {
+ "FirstLetter": {
+ "type": "expression",
+ "value": "$F{ShipCountry}.substring(0, 1).toUpperCase()"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_group",
+ "human_description": "These are variable definitions for report 'AreaChartReport' (resetType=Group), total 7 variables. Variables: FirstLetterCount(java.lang.Integer, Count), FirstLetterMin(java.lang.String, Lowest), FirstLetterMax(java.lang.String, Highest), FreightSumChartGroup(java.lang.Double, Sum), FreightSumCountryGroup(java.lang.Double, Sum), DateHighestCountryGroup(java.sql.Timestamp, Highest), RegionCountCountryGroup(java.lang.Integer, Count).",
+ "raw_xml": "\n\t\tBoolean.TRUE\n\t\n\t\n\n\t\t$V{FirstLetter}\n\t\n\t\n\n\t\t$V{FirstLetter}\n\t\n\t\n\n\t\t$F{Freight}\n\t\n\t\n\n\t\t$F{Freight}\n\t\n\t\n\n\t\t$F{OrderDate}\n\t\n\t\n\n\t\t$F{ShipRegion}\n\t\n\t",
+ "context": "Report 'AreaChartReport' variable definitions (Group level reset)",
+ "metadata": {
+ "variable_names": [
+ "FirstLetterCount",
+ "FirstLetterMin",
+ "FirstLetterMax",
+ "FreightSumChartGroup",
+ "FreightSumCountryGroup",
+ "DateHighestCountryGroup",
+ "RegionCountCountryGroup"
+ ],
+ "variable_types": {
+ "FirstLetterCount": "java.lang.Integer",
+ "FirstLetterMin": "java.lang.String",
+ "FirstLetterMax": "java.lang.String",
+ "FreightSumChartGroup": "java.lang.Double",
+ "FreightSumCountryGroup": "java.lang.Double",
+ "DateHighestCountryGroup": "java.sql.Timestamp",
+ "RegionCountCountryGroup": "java.lang.Integer"
+ },
+ "variable_calculations": {
+ "FirstLetterCount": "Count",
+ "FirstLetterMin": "Lowest",
+ "FirstLetterMax": "Highest",
+ "FreightSumChartGroup": "Sum",
+ "FreightSumCountryGroup": "Sum",
+ "DateHighestCountryGroup": "Highest",
+ "RegionCountCountryGroup": "Count"
+ },
+ "reset_type": "Group",
+ "expressions": {
+ "FirstLetterCount": {
+ "type": "expression",
+ "value": "Boolean.TRUE"
+ },
+ "FirstLetterMin": {
+ "type": "expression",
+ "value": "$V{FirstLetter}"
+ },
+ "FirstLetterMax": {
+ "type": "expression",
+ "value": "$V{FirstLetter}"
+ },
+ "FreightSumChartGroup": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ },
+ "FreightSumCountryGroup": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ },
+ "DateHighestCountryGroup": {
+ "type": "expression",
+ "value": "$F{OrderDate}"
+ },
+ "RegionCountCountryGroup": {
+ "type": "expression",
+ "value": "$F{ShipRegion}"
+ }
+ },
+ "count": 7
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_column",
+ "human_description": "These are variable definitions for report 'AreaChartReport' (resetType=Column), total 1 variables. Variables: FreightSumColumn(java.lang.Double, Sum).",
+ "raw_xml": "\n\t\t$F{Freight}\n\t\n\t",
+ "context": "Report 'AreaChartReport' variable definitions (Column level reset)",
+ "metadata": {
+ "variable_names": [
+ "FreightSumColumn"
+ ],
+ "variable_types": {
+ "FreightSumColumn": "java.lang.Double"
+ },
+ "variable_calculations": {
+ "FreightSumColumn": "Sum"
+ },
+ "reset_type": "Column",
+ "expressions": {
+ "FreightSumColumn": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_page",
+ "human_description": "These are variable definitions for report 'AreaChartReport' (resetType=Page), total 1 variables. Variables: FreightSumPage(java.lang.Double, Sum).",
+ "raw_xml": "\n\t\t$F{Freight}\n\t\n\t",
+ "context": "Report 'AreaChartReport' variable definitions (Page level reset)",
+ "metadata": {
+ "variable_names": [
+ "FreightSumPage"
+ ],
+ "variable_types": {
+ "FreightSumPage": "java.lang.Double"
+ },
+ "variable_calculations": {
+ "FreightSumPage": "Sum"
+ },
+ "reset_type": "Page",
+ "expressions": {
+ "FreightSumPage": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_report",
+ "human_description": "These are variable definitions for report 'AreaChartReport' (resetType=Report), total 1 variables. Variables: FreightSumReport(java.lang.Double, Sum).",
+ "raw_xml": "\n\t\t$F{Freight}\n\t\n\t",
+ "context": "Report 'AreaChartReport' variable definitions (Report level reset)",
+ "metadata": {
+ "variable_names": [
+ "FreightSumReport"
+ ],
+ "variable_types": {
+ "FreightSumReport": "java.lang.Double"
+ },
+ "variable_calculations": {
+ "FreightSumReport": "Sum"
+ },
+ "reset_type": "Report",
+ "expressions": {
+ "FreightSumReport": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 23,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'AreaChartReport', total 5 styles. Styles: Sans_Normal, Sans_Bold, Sans_Italic, Serif_Normal, Serif_Bold. Default style: Sans_Normal.",
+ "raw_xml": "\n\t\n\n\t\n\n\t\n\n\t\n\n\t",
+ "context": "Report 'AreaChartReport' style definitions",
+ "metadata": {
+ "style_names": [
+ "Sans_Normal",
+ "Sans_Bold",
+ "Sans_Italic",
+ "Serif_Normal",
+ "Serif_Bold"
+ ],
+ "default_style": "Sans_Normal",
+ "has_conditional_styles": false,
+ "count": 5
+ }
+ },
+ {
+ "chunk_id": 24,
+ "chunk_type": "group",
+ "human_description": "This is group 'ChartGroup' definition for report 'AreaChartReport'. Group expression: ($V{FirstLetterCount} - 1) / 3. Has groupHeader: Yes, has groupFooter: Yes. Min height: 200, start new column: true, reprint header: false.",
+ "raw_xml": "\n\t\t($V{FirstLetterCount} - 1) / 3\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\tCountries Starting With Letter :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FirstLetterMin}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tto\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FirstLetterMax}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Double Freight\"\n\t\t\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\t\t\t$V{FreightSumCountryGroup} * 2d\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Normal Freight\"\n\t\t\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\t\t\t$V{FreightSumCountryGroup}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Half Freight\"\n\t\t\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\t\t\t$V{FreightSumCountryGroup} / 2d\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tCount :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{ChartGroup_COUNT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tTotal :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FreightSumChartGroup}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' group 'ChartGroup'",
+ "metadata": {
+ "group_name": "ChartGroup",
+ "expression": "($V{FirstLetterCount} - 1) / 3",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "200",
+ "startNewColumn": "true",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 25,
+ "chunk_type": "group",
+ "human_description": "This is group 'FirstLetterGroup' definition for report 'AreaChartReport'. Group expression: $V{FirstLetter}. Has groupHeader: No, has groupFooter: No. Min height: 0, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t$V{FirstLetter}\n\t\n\t",
+ "context": "Report 'AreaChartReport' group 'FirstLetterGroup'",
+ "metadata": {
+ "group_name": "FirstLetterGroup",
+ "expression": "$V{FirstLetter}",
+ "has_header": false,
+ "has_footer": false,
+ "minHeightToStartNewPage": "0",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "group",
+ "human_description": "This is group 'CountryGroup' definition for report 'AreaChartReport'. Group expression: $F{ShipCountry}. Has groupHeader: Yes, has groupFooter: Yes. Min height: 0, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t$F{ShipCountry}\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{DateHighestCountryGroup}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tCount :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{CountryGroup_COUNT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tTotal :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FreightSumCountryGroup}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' group 'CountryGroup'",
+ "metadata": {
+ "group_name": "CountryGroup",
+ "expression": "$F{ShipCountry}",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "0",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AreaChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Area Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tArea Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Area Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'AreaChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AreaChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AreaChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'AreaChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'AreaChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AreaChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Area Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tArea Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Area Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'AreaChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AreaChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AreaChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'AreaChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'AreaChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AreaChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Area Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tArea Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Area Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'AreaChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AreaChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AreaChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'AreaChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'AreaChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AreaChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Area Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tArea Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Area Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'AreaChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AreaChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AreaChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'AreaChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'AreaChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AreaChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Area Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tArea Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Area Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'AreaChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AreaChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AreaChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'AreaChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'AreaChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AreaChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Area Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tArea Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Area Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'AreaChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AreaChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AreaChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'AreaChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'AreaChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AreaChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Area Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tArea Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Area Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'AreaChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AreaChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AreaChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'AreaChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'AreaChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AreaChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Area Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tArea Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Area Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'AreaChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AreaChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AreaChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'AreaChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'AreaChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AreaChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Area Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tArea Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Area Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'AreaChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AreaChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AreaChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'AreaChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'AreaChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'AreaChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Area Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tArea Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Area Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'AreaChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'AreaChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'AreaChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'AreaChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'AreaChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'AreaChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 77,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'AreaChartReport', type: area. Dataset kind: category. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Double Freight\"\n\t\t\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\t\t\t$V{FreightSumCountryGroup} * 2d\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Normal Freight\"\n\t\t\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\t\t\t$V{FreightSumCountryGroup}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Half Freight\"\n\t\t\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\t\t\t$V{FreightSumCountryGroup} / 2d\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'AreaChartReport' chart",
+ "metadata": {
+ "chart_type": "area",
+ "dataset": {
+ "kind": "category",
+ "series": [
+ {
+ "key": "",
+ "value": "$V{FreightSumCountryGroup} * 2d"
+ },
+ {
+ "key": "",
+ "value": "$V{FreightSumCountryGroup}"
+ },
+ {
+ "key": "",
+ "value": "$V{FreightSumCountryGroup} / 2d"
+ }
+ ]
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "area",
+ "uuid": "bc61ee5b-15dc-43be-9d0f-b99965f962b3",
+ "positionType": "Float",
+ "x": "0",
+ "y": "50",
+ "width": "270",
+ "height": "175",
+ "evaluationTime": "Group",
+ "evaluationGroup": "ChartGroup"
+ }
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'Bar3DChartReport'. Page size: 595 x 842 portrait. Contains 5 standard bands with content: title, columnHeader, detail, columnFooter, pageFooter. Defines 14 fields: ShippedDate, ShipCountry, RequiredDate, CustomerID, OrderID, ShipName, ShipVia, ShipPostalCode, OrderDate, ShipCity, ShipAddress, EmployeeID, ShipRegion, Freight. Defines 2 parameters: ReportTitle, MaxOrderID. Defines 11 variables: FirstLetter, FirstLetterCount, FirstLetterMin, FirstLetterMax, FreightSumChartGroup, FreightSumCountryGroup, FreightSumColumn, FreightSumPage, FreightSumReport, DateHighestCountryGroup, RegionCountCountryGroup. Defines 3 groups: ChartGroup, FirstLetterGroup, CountryGroup. Data source type: JDBC/SQL. Source: Sample DB. Query language: sql. Contains 1 charts.",
+ "raw_xml": "",
+ "context": "Report 'Bar3DChartReport' overall structure overview",
+ "metadata": {
+ "report_name": "Bar3DChartReport",
+ "bands": [
+ "title",
+ "columnHeader",
+ "detail",
+ "columnFooter",
+ "pageFooter"
+ ],
+ "field_count": 14,
+ "parameter_count": 2,
+ "variable_count": 11,
+ "group_count": 3,
+ "chart_count": 1,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "JDBC/SQL",
+ "source": "Sample DB",
+ "query_language": "sql",
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "Sample DB",
+ "net.sf.jasperreports.chart.render.type": "svg",
+ "net.sf.jasperreports.image.dpi": "150"
+ }
+ },
+ "attributes": {
+ "name": "Bar3DChartReport",
+ "language": "java",
+ "columnCount": "2",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "columnWidth": "270",
+ "columnSpacing": "15",
+ "leftMargin": "20",
+ "rightMargin": "20",
+ "topMargin": "30",
+ "bottomMargin": "30",
+ "uuid": "090c22e4-1924-482c-8c1d-b4460e68d01f"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'Bar3DChartReport'. Data adapter: Sample DB.",
+ "raw_xml": "",
+ "context": "Report 'Bar3DChartReport' data source configuration",
+ "metadata": {
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "Sample DB"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "query",
+ "human_description": "This is the data query for report 'Bar3DChartReport'. Language: SQL. Query: SELECT * FROM Orders WHERE OrderID <= $P{MaxOrderID} ORDER BY ShipCountry",
+ "raw_xml": "SELECT * FROM Orders WHERE OrderID <= $P{MaxOrderID} ORDER BY ShipCountry\n\t",
+ "context": "Report 'Bar3DChartReport' data query",
+ "metadata": {
+ "query_language": "sql",
+ "full_sql": "SELECT * FROM Orders WHERE OrderID <= $P{MaxOrderID} ORDER BY ShipCountry"
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "parameters",
+ "human_description": "These are all parameter definitions for report 'Bar3DChartReport', total 2 parameters. Parameters: ReportTitle(java.lang.String), MaxOrderID(java.lang.Integer).",
+ "raw_xml": "\n\t\t\"Bar 3D Chart Report\"\n\t\n\t\n\n\t\t12500\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' parameter definitions",
+ "metadata": {
+ "parameter_names": [
+ "ReportTitle",
+ "MaxOrderID"
+ ],
+ "parameter_types": {
+ "ReportTitle": "java.lang.String",
+ "MaxOrderID": "java.lang.Integer"
+ },
+ "default_values": {
+ "ReportTitle": "\"Bar 3D Chart Report\"",
+ "MaxOrderID": "12500"
+ },
+ "count": 2
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'Bar3DChartReport': ShippedDate, type: java.sql.Timestamp",
+ "raw_xml": "\n\t",
+ "context": "Report 'Bar3DChartReport' field 'ShippedDate'",
+ "metadata": {
+ "field_name": "ShippedDate",
+ "field_class": "java.sql.Timestamp",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'Bar3DChartReport': ShipCountry, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'Bar3DChartReport' field 'ShipCountry'",
+ "metadata": {
+ "field_name": "ShipCountry",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 6,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'Bar3DChartReport': RequiredDate, type: java.sql.Timestamp",
+ "raw_xml": "\n\t",
+ "context": "Report 'Bar3DChartReport' field 'RequiredDate'",
+ "metadata": {
+ "field_name": "RequiredDate",
+ "field_class": "java.sql.Timestamp",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'Bar3DChartReport': CustomerID, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'Bar3DChartReport' field 'CustomerID'",
+ "metadata": {
+ "field_name": "CustomerID",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 8,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'Bar3DChartReport': OrderID, type: java.lang.Integer",
+ "raw_xml": "\n\t",
+ "context": "Report 'Bar3DChartReport' field 'OrderID'",
+ "metadata": {
+ "field_name": "OrderID",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'Bar3DChartReport': ShipName, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'Bar3DChartReport' field 'ShipName'",
+ "metadata": {
+ "field_name": "ShipName",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'Bar3DChartReport': ShipVia, type: java.lang.Integer",
+ "raw_xml": "\n\t",
+ "context": "Report 'Bar3DChartReport' field 'ShipVia'",
+ "metadata": {
+ "field_name": "ShipVia",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 11,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'Bar3DChartReport': ShipPostalCode, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'Bar3DChartReport' field 'ShipPostalCode'",
+ "metadata": {
+ "field_name": "ShipPostalCode",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 12,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'Bar3DChartReport': OrderDate, type: java.sql.Timestamp",
+ "raw_xml": "\n\t",
+ "context": "Report 'Bar3DChartReport' field 'OrderDate'",
+ "metadata": {
+ "field_name": "OrderDate",
+ "field_class": "java.sql.Timestamp",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 13,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'Bar3DChartReport': ShipCity, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'Bar3DChartReport' field 'ShipCity'",
+ "metadata": {
+ "field_name": "ShipCity",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'Bar3DChartReport': ShipAddress, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'Bar3DChartReport' field 'ShipAddress'",
+ "metadata": {
+ "field_name": "ShipAddress",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'Bar3DChartReport': EmployeeID, type: java.lang.Integer",
+ "raw_xml": "\n\t",
+ "context": "Report 'Bar3DChartReport' field 'EmployeeID'",
+ "metadata": {
+ "field_name": "EmployeeID",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 16,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'Bar3DChartReport': ShipRegion, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'Bar3DChartReport' field 'ShipRegion'",
+ "metadata": {
+ "field_name": "ShipRegion",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 17,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'Bar3DChartReport': Freight, type: java.lang.Double",
+ "raw_xml": "\n\t",
+ "context": "Report 'Bar3DChartReport' field 'Freight'",
+ "metadata": {
+ "field_name": "Freight",
+ "field_class": "java.lang.Double",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_none",
+ "human_description": "These are variable definitions for report 'Bar3DChartReport' (resetType=None), total 1 variables. Variables: FirstLetter(java.lang.String, Nothing).",
+ "raw_xml": "\n\t\t$F{ShipCountry}.substring(0, 1).toUpperCase()\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' variable definitions (None level reset)",
+ "metadata": {
+ "variable_names": [
+ "FirstLetter"
+ ],
+ "variable_types": {
+ "FirstLetter": "java.lang.String"
+ },
+ "variable_calculations": {
+ "FirstLetter": "Nothing"
+ },
+ "reset_type": "None",
+ "expressions": {
+ "FirstLetter": {
+ "type": "expression",
+ "value": "$F{ShipCountry}.substring(0, 1).toUpperCase()"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_group",
+ "human_description": "These are variable definitions for report 'Bar3DChartReport' (resetType=Group), total 7 variables. Variables: FirstLetterCount(java.lang.Integer, Count), FirstLetterMin(java.lang.String, Lowest), FirstLetterMax(java.lang.String, Highest), FreightSumChartGroup(java.lang.Double, Sum), FreightSumCountryGroup(java.lang.Double, Sum), DateHighestCountryGroup(java.sql.Timestamp, Highest), RegionCountCountryGroup(java.lang.Integer, Count).",
+ "raw_xml": "\n\t\tBoolean.TRUE\n\t\n\t\n\n\t\t$V{FirstLetter}\n\t\n\t\n\n\t\t$V{FirstLetter}\n\t\n\t\n\n\t\t$F{Freight}\n\t\n\t\n\n\t\t$F{Freight}\n\t\n\t\n\n\t\t$F{OrderDate}\n\t\n\t\n\n\t\t$F{ShipRegion}\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' variable definitions (Group level reset)",
+ "metadata": {
+ "variable_names": [
+ "FirstLetterCount",
+ "FirstLetterMin",
+ "FirstLetterMax",
+ "FreightSumChartGroup",
+ "FreightSumCountryGroup",
+ "DateHighestCountryGroup",
+ "RegionCountCountryGroup"
+ ],
+ "variable_types": {
+ "FirstLetterCount": "java.lang.Integer",
+ "FirstLetterMin": "java.lang.String",
+ "FirstLetterMax": "java.lang.String",
+ "FreightSumChartGroup": "java.lang.Double",
+ "FreightSumCountryGroup": "java.lang.Double",
+ "DateHighestCountryGroup": "java.sql.Timestamp",
+ "RegionCountCountryGroup": "java.lang.Integer"
+ },
+ "variable_calculations": {
+ "FirstLetterCount": "Count",
+ "FirstLetterMin": "Lowest",
+ "FirstLetterMax": "Highest",
+ "FreightSumChartGroup": "Sum",
+ "FreightSumCountryGroup": "Sum",
+ "DateHighestCountryGroup": "Highest",
+ "RegionCountCountryGroup": "Count"
+ },
+ "reset_type": "Group",
+ "expressions": {
+ "FirstLetterCount": {
+ "type": "expression",
+ "value": "Boolean.TRUE"
+ },
+ "FirstLetterMin": {
+ "type": "expression",
+ "value": "$V{FirstLetter}"
+ },
+ "FirstLetterMax": {
+ "type": "expression",
+ "value": "$V{FirstLetter}"
+ },
+ "FreightSumChartGroup": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ },
+ "FreightSumCountryGroup": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ },
+ "DateHighestCountryGroup": {
+ "type": "expression",
+ "value": "$F{OrderDate}"
+ },
+ "RegionCountCountryGroup": {
+ "type": "expression",
+ "value": "$F{ShipRegion}"
+ }
+ },
+ "count": 7
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_column",
+ "human_description": "These are variable definitions for report 'Bar3DChartReport' (resetType=Column), total 1 variables. Variables: FreightSumColumn(java.lang.Double, Sum).",
+ "raw_xml": "\n\t\t$F{Freight}\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' variable definitions (Column level reset)",
+ "metadata": {
+ "variable_names": [
+ "FreightSumColumn"
+ ],
+ "variable_types": {
+ "FreightSumColumn": "java.lang.Double"
+ },
+ "variable_calculations": {
+ "FreightSumColumn": "Sum"
+ },
+ "reset_type": "Column",
+ "expressions": {
+ "FreightSumColumn": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_page",
+ "human_description": "These are variable definitions for report 'Bar3DChartReport' (resetType=Page), total 1 variables. Variables: FreightSumPage(java.lang.Double, Sum).",
+ "raw_xml": "\n\t\t$F{Freight}\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' variable definitions (Page level reset)",
+ "metadata": {
+ "variable_names": [
+ "FreightSumPage"
+ ],
+ "variable_types": {
+ "FreightSumPage": "java.lang.Double"
+ },
+ "variable_calculations": {
+ "FreightSumPage": "Sum"
+ },
+ "reset_type": "Page",
+ "expressions": {
+ "FreightSumPage": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_report",
+ "human_description": "These are variable definitions for report 'Bar3DChartReport' (resetType=Report), total 1 variables. Variables: FreightSumReport(java.lang.Double, Sum).",
+ "raw_xml": "\n\t\t$F{Freight}\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' variable definitions (Report level reset)",
+ "metadata": {
+ "variable_names": [
+ "FreightSumReport"
+ ],
+ "variable_types": {
+ "FreightSumReport": "java.lang.Double"
+ },
+ "variable_calculations": {
+ "FreightSumReport": "Sum"
+ },
+ "reset_type": "Report",
+ "expressions": {
+ "FreightSumReport": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 23,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'Bar3DChartReport', total 5 styles. Styles: Sans_Normal, Sans_Bold, Sans_Italic, Serif_Normal, Serif_Bold. Default style: Sans_Normal.",
+ "raw_xml": "\n\t\n\n\t\n\n\t\n\n\t\n\n\t",
+ "context": "Report 'Bar3DChartReport' style definitions",
+ "metadata": {
+ "style_names": [
+ "Sans_Normal",
+ "Sans_Bold",
+ "Sans_Italic",
+ "Serif_Normal",
+ "Serif_Bold"
+ ],
+ "default_style": "Sans_Normal",
+ "has_conditional_styles": false,
+ "count": 5
+ }
+ },
+ {
+ "chunk_id": 24,
+ "chunk_type": "group",
+ "human_description": "This is group 'ChartGroup' definition for report 'Bar3DChartReport'. Group expression: ($V{FirstLetterCount} - 1) / 3. Has groupHeader: Yes, has groupFooter: Yes. Min height: 200, start new column: true, reprint header: false.",
+ "raw_xml": "\n\t\t($V{FirstLetterCount} - 1) / 3\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tCountries Starting With Letter :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FirstLetterMin}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tto\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FirstLetterMax}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Double Freight\"\n\t\t\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\t\t\t$V{FreightSumCountryGroup} * 2d\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Normal Freight\"\n\t\t\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\t\t\t$V{FreightSumCountryGroup}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Half Freight\"\n\t\t\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\t\t\t$V{FreightSumCountryGroup} / 2d\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tCount :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{ChartGroup_COUNT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tTotal :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FreightSumChartGroup}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' group 'ChartGroup'",
+ "metadata": {
+ "group_name": "ChartGroup",
+ "expression": "($V{FirstLetterCount} - 1) / 3",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "200",
+ "startNewColumn": "true",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 25,
+ "chunk_type": "group",
+ "human_description": "This is group 'FirstLetterGroup' definition for report 'Bar3DChartReport'. Group expression: $V{FirstLetter}. Has groupHeader: No, has groupFooter: No. Min height: 0, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t$V{FirstLetter}\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' group 'FirstLetterGroup'",
+ "metadata": {
+ "group_name": "FirstLetterGroup",
+ "expression": "$V{FirstLetter}",
+ "has_header": false,
+ "has_footer": false,
+ "minHeightToStartNewPage": "0",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "group",
+ "human_description": "This is group 'CountryGroup' definition for report 'Bar3DChartReport'. Group expression: $F{ShipCountry}. Has groupHeader: Yes, has groupFooter: Yes. Min height: 0, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t$F{ShipCountry}\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{DateHighestCountryGroup}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tCount :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{CountryGroup_COUNT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tTotal :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FreightSumCountryGroup}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' group 'CountryGroup'",
+ "metadata": {
+ "group_name": "CountryGroup",
+ "expression": "$F{ShipCountry}",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "0",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'Bar3DChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bar 3D Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBar 3D Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bar 3D Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'Bar3DChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'Bar3DChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'Bar3DChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'Bar3DChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'Bar3DChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'Bar3DChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bar 3D Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBar 3D Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bar 3D Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'Bar3DChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'Bar3DChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'Bar3DChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'Bar3DChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'Bar3DChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'Bar3DChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bar 3D Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBar 3D Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bar 3D Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'Bar3DChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'Bar3DChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'Bar3DChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'Bar3DChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'Bar3DChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'Bar3DChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bar 3D Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBar 3D Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bar 3D Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'Bar3DChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'Bar3DChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'Bar3DChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'Bar3DChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'Bar3DChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'Bar3DChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bar 3D Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBar 3D Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bar 3D Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'Bar3DChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'Bar3DChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'Bar3DChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'Bar3DChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'Bar3DChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'Bar3DChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bar 3D Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBar 3D Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bar 3D Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'Bar3DChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'Bar3DChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'Bar3DChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'Bar3DChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'Bar3DChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'Bar3DChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bar 3D Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBar 3D Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bar 3D Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'Bar3DChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'Bar3DChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'Bar3DChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'Bar3DChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'Bar3DChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'Bar3DChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bar 3D Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBar 3D Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bar 3D Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'Bar3DChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'Bar3DChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'Bar3DChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'Bar3DChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'Bar3DChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'Bar3DChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bar 3D Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBar 3D Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bar 3D Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'Bar3DChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'Bar3DChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'Bar3DChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'Bar3DChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'Bar3DChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'Bar3DChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bar 3D Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBar 3D Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bar 3D Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'Bar3DChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'Bar3DChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'Bar3DChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'Bar3DChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'Bar3DChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'Bar3DChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 77,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'Bar3DChartReport', type: bar3D. Dataset kind: category. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Double Freight\"\n\t\t\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\t\t\t$V{FreightSumCountryGroup} * 2d\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Normal Freight\"\n\t\t\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\t\t\t$V{FreightSumCountryGroup}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Half Freight\"\n\t\t\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\t\t\t$V{FreightSumCountryGroup} / 2d\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'Bar3DChartReport' chart",
+ "metadata": {
+ "chart_type": "bar3D",
+ "dataset": {
+ "kind": "category",
+ "series": [
+ {
+ "key": "",
+ "value": "$V{FreightSumCountryGroup} * 2d"
+ },
+ {
+ "key": "",
+ "value": "$V{FreightSumCountryGroup}"
+ },
+ {
+ "key": "",
+ "value": "$V{FreightSumCountryGroup} / 2d"
+ }
+ ]
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "bar3D",
+ "uuid": "26968ef1-9e5e-427a-90b7-6478ce6265d6",
+ "positionType": "Float",
+ "x": "0",
+ "y": "50",
+ "width": "270",
+ "height": "175",
+ "evaluationTime": "Group",
+ "evaluationGroup": "ChartGroup"
+ }
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'BarbecueReport'. Page size: 595 x 842 portrait. Contains 1 standard bands with content: title. Defines 0 fields: none. Defines 1 parameters: Code. Defines 0 variables: none. Defines 0 groups: none. Data source type: DataAdapter. Source: One Empty Record.",
+ "raw_xml": "",
+ "context": "Report 'BarbecueReport' overall structure overview",
+ "metadata": {
+ "report_name": "BarbecueReport",
+ "bands": [
+ "title"
+ ],
+ "field_count": 0,
+ "parameter_count": 1,
+ "variable_count": 0,
+ "group_count": 0,
+ "chart_count": 0,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "DataAdapter",
+ "source": "One Empty Record",
+ "query_language": null,
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "One Empty Record"
+ }
+ },
+ "attributes": {
+ "name": "BarbecueReport",
+ "language": "java",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "columnWidth": "515",
+ "leftMargin": "40",
+ "rightMargin": "40",
+ "topMargin": "50",
+ "bottomMargin": "50",
+ "uuid": "1d7cf054-80bc-4b63-933e-e2f7736c3e3f"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'BarbecueReport'. Data adapter: One Empty Record.",
+ "raw_xml": "",
+ "context": "Report 'BarbecueReport' data source configuration",
+ "metadata": {
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "One Empty Record"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "parameters",
+ "human_description": "These are all parameter definitions for report 'BarbecueReport', total 1 parameters. Parameters: Code(java.lang.String).",
+ "raw_xml": "\n\t\t\"01234567890\"\n\t\n\t",
+ "context": "Report 'BarbecueReport' parameter definitions",
+ "metadata": {
+ "parameter_names": [
+ "Code"
+ ],
+ "parameter_types": {
+ "Code": "java.lang.String"
+ },
+ "default_values": {
+ "Code": "\"01234567890\""
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "element_line",
+ "human_description": "'title' band of report 'BarbecueReport': line element, Position: (0, 0), Size: 515x1.",
+ "raw_xml": "\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "line",
+ "attributes": {
+ "kind": "line",
+ "uuid": "6ef683b5-e354-4fe0-a9df-8ac96bd9082a",
+ "x": "0",
+ "y": "0",
+ "width": "515",
+ "height": "1"
+ }
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'BarbecueReport': staticText element, Text: 'Barcode Sample', Position: (0, 10), Size: 515x30.",
+ "raw_xml": "\n\t\t\tBarcode Sample\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e2e11563-7a3c-41c0-a934-bf0fa76d505d",
+ "x": "0",
+ "y": "10",
+ "width": "515",
+ "height": "30",
+ "fontSize": "22.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'BarbecueReport': textField element, Expression: \"This sample uses Barbecue Version 1.5beta1\\n\" + \"\", Position: (0, 50), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"This sample uses Barbecue Version 1.5beta1\\n\" + \"\"\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "85dc966e-8084-4441-ba86-3926ef9b72cb",
+ "x": "0",
+ "y": "50",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 6,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'BarbecueReport': textField element, Expression: \"http://barbecue.sourceforge.net/\", Position: (0, 70), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"http://barbecue.sourceforge.net/\"\n\t\t\t\"http://barbecue.sourceforge.net/\"\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6e11e2f3-0ed2-4b0a-b063-4aabe40bdbd2",
+ "x": "0",
+ "y": "70",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "linkType": "Reference",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 100), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "ed79454e-21f5-4f98-9130-a44a512a7e51",
+ "x": "0",
+ "y": "100",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 8,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 160), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "a40ff8c2-0095-4e42-a18b-76e6afe0d290",
+ "x": "0",
+ "y": "160",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 220), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "9f4c02e5-65c8-4666-b20b-fcdabe863b6a",
+ "x": "0",
+ "y": "220",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 280), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "b566897b-ff4d-4a89-a9ed-de38db807f14",
+ "x": "0",
+ "y": "280",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 11,
+ "chunk_type": "element_line",
+ "human_description": "'title' band of report 'BarbecueReport': line element, Position: (0, 0), Size: 515x1.",
+ "raw_xml": "\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "line",
+ "attributes": {
+ "kind": "line",
+ "uuid": "6ef683b5-e354-4fe0-a9df-8ac96bd9082a",
+ "x": "0",
+ "y": "0",
+ "width": "515",
+ "height": "1"
+ }
+ }
+ },
+ {
+ "chunk_id": 12,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'BarbecueReport': staticText element, Text: 'Barcode Sample', Position: (0, 10), Size: 515x30.",
+ "raw_xml": "\n\t\t\tBarcode Sample\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e2e11563-7a3c-41c0-a934-bf0fa76d505d",
+ "x": "0",
+ "y": "10",
+ "width": "515",
+ "height": "30",
+ "fontSize": "22.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 13,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'BarbecueReport': textField element, Expression: \"This sample uses Barbecue Version 1.5beta1\\n\" + \"\", Position: (0, 50), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"This sample uses Barbecue Version 1.5beta1\\n\" + \"\"\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "85dc966e-8084-4441-ba86-3926ef9b72cb",
+ "x": "0",
+ "y": "50",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'BarbecueReport': textField element, Expression: \"http://barbecue.sourceforge.net/\", Position: (0, 70), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"http://barbecue.sourceforge.net/\"\n\t\t\t\"http://barbecue.sourceforge.net/\"\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6e11e2f3-0ed2-4b0a-b063-4aabe40bdbd2",
+ "x": "0",
+ "y": "70",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "linkType": "Reference",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 100), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "ed79454e-21f5-4f98-9130-a44a512a7e51",
+ "x": "0",
+ "y": "100",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 16,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 160), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "a40ff8c2-0095-4e42-a18b-76e6afe0d290",
+ "x": "0",
+ "y": "160",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 17,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 220), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "9f4c02e5-65c8-4666-b20b-fcdabe863b6a",
+ "x": "0",
+ "y": "220",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 280), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "b566897b-ff4d-4a89-a9ed-de38db807f14",
+ "x": "0",
+ "y": "280",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 19,
+ "chunk_type": "element_line",
+ "human_description": "'title' band of report 'BarbecueReport': line element, Position: (0, 0), Size: 515x1.",
+ "raw_xml": "\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "line",
+ "attributes": {
+ "kind": "line",
+ "uuid": "6ef683b5-e354-4fe0-a9df-8ac96bd9082a",
+ "x": "0",
+ "y": "0",
+ "width": "515",
+ "height": "1"
+ }
+ }
+ },
+ {
+ "chunk_id": 20,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'BarbecueReport': staticText element, Text: 'Barcode Sample', Position: (0, 10), Size: 515x30.",
+ "raw_xml": "\n\t\t\tBarcode Sample\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e2e11563-7a3c-41c0-a934-bf0fa76d505d",
+ "x": "0",
+ "y": "10",
+ "width": "515",
+ "height": "30",
+ "fontSize": "22.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 21,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'BarbecueReport': textField element, Expression: \"This sample uses Barbecue Version 1.5beta1\\n\" + \"\", Position: (0, 50), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"This sample uses Barbecue Version 1.5beta1\\n\" + \"\"\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "85dc966e-8084-4441-ba86-3926ef9b72cb",
+ "x": "0",
+ "y": "50",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 22,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'BarbecueReport': textField element, Expression: \"http://barbecue.sourceforge.net/\", Position: (0, 70), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"http://barbecue.sourceforge.net/\"\n\t\t\t\"http://barbecue.sourceforge.net/\"\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6e11e2f3-0ed2-4b0a-b063-4aabe40bdbd2",
+ "x": "0",
+ "y": "70",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "linkType": "Reference",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 23,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 100), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "ed79454e-21f5-4f98-9130-a44a512a7e51",
+ "x": "0",
+ "y": "100",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 24,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 160), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "a40ff8c2-0095-4e42-a18b-76e6afe0d290",
+ "x": "0",
+ "y": "160",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 25,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 220), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "9f4c02e5-65c8-4666-b20b-fcdabe863b6a",
+ "x": "0",
+ "y": "220",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 280), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "b566897b-ff4d-4a89-a9ed-de38db807f14",
+ "x": "0",
+ "y": "280",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "element_line",
+ "human_description": "'title' band of report 'BarbecueReport': line element, Position: (0, 0), Size: 515x1.",
+ "raw_xml": "\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "line",
+ "attributes": {
+ "kind": "line",
+ "uuid": "6ef683b5-e354-4fe0-a9df-8ac96bd9082a",
+ "x": "0",
+ "y": "0",
+ "width": "515",
+ "height": "1"
+ }
+ }
+ },
+ {
+ "chunk_id": 28,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'BarbecueReport': staticText element, Text: 'Barcode Sample', Position: (0, 10), Size: 515x30.",
+ "raw_xml": "\n\t\t\tBarcode Sample\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e2e11563-7a3c-41c0-a934-bf0fa76d505d",
+ "x": "0",
+ "y": "10",
+ "width": "515",
+ "height": "30",
+ "fontSize": "22.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 29,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'BarbecueReport': textField element, Expression: \"This sample uses Barbecue Version 1.5beta1\\n\" + \"\", Position: (0, 50), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"This sample uses Barbecue Version 1.5beta1\\n\" + \"\"\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "85dc966e-8084-4441-ba86-3926ef9b72cb",
+ "x": "0",
+ "y": "50",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 30,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'BarbecueReport': textField element, Expression: \"http://barbecue.sourceforge.net/\", Position: (0, 70), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"http://barbecue.sourceforge.net/\"\n\t\t\t\"http://barbecue.sourceforge.net/\"\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6e11e2f3-0ed2-4b0a-b063-4aabe40bdbd2",
+ "x": "0",
+ "y": "70",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "linkType": "Reference",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 31,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 100), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "ed79454e-21f5-4f98-9130-a44a512a7e51",
+ "x": "0",
+ "y": "100",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 32,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 160), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "a40ff8c2-0095-4e42-a18b-76e6afe0d290",
+ "x": "0",
+ "y": "160",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 33,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 220), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "9f4c02e5-65c8-4666-b20b-fcdabe863b6a",
+ "x": "0",
+ "y": "220",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 34,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 280), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "b566897b-ff4d-4a89-a9ed-de38db807f14",
+ "x": "0",
+ "y": "280",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 35,
+ "chunk_type": "element_line",
+ "human_description": "'title' band of report 'BarbecueReport': line element, Position: (0, 0), Size: 515x1.",
+ "raw_xml": "\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "line",
+ "attributes": {
+ "kind": "line",
+ "uuid": "6ef683b5-e354-4fe0-a9df-8ac96bd9082a",
+ "x": "0",
+ "y": "0",
+ "width": "515",
+ "height": "1"
+ }
+ }
+ },
+ {
+ "chunk_id": 36,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'BarbecueReport': staticText element, Text: 'Barcode Sample', Position: (0, 10), Size: 515x30.",
+ "raw_xml": "\n\t\t\tBarcode Sample\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e2e11563-7a3c-41c0-a934-bf0fa76d505d",
+ "x": "0",
+ "y": "10",
+ "width": "515",
+ "height": "30",
+ "fontSize": "22.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 37,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'BarbecueReport': textField element, Expression: \"This sample uses Barbecue Version 1.5beta1\\n\" + \"\", Position: (0, 50), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"This sample uses Barbecue Version 1.5beta1\\n\" + \"\"\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "85dc966e-8084-4441-ba86-3926ef9b72cb",
+ "x": "0",
+ "y": "50",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 38,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'BarbecueReport': textField element, Expression: \"http://barbecue.sourceforge.net/\", Position: (0, 70), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"http://barbecue.sourceforge.net/\"\n\t\t\t\"http://barbecue.sourceforge.net/\"\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6e11e2f3-0ed2-4b0a-b063-4aabe40bdbd2",
+ "x": "0",
+ "y": "70",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "linkType": "Reference",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 39,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 100), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "ed79454e-21f5-4f98-9130-a44a512a7e51",
+ "x": "0",
+ "y": "100",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 40,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 160), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "a40ff8c2-0095-4e42-a18b-76e6afe0d290",
+ "x": "0",
+ "y": "160",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 41,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 220), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "9f4c02e5-65c8-4666-b20b-fcdabe863b6a",
+ "x": "0",
+ "y": "220",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 42,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 280), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "b566897b-ff4d-4a89-a9ed-de38db807f14",
+ "x": "0",
+ "y": "280",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 43,
+ "chunk_type": "element_line",
+ "human_description": "'title' band of report 'BarbecueReport': line element, Position: (0, 0), Size: 515x1.",
+ "raw_xml": "\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "line",
+ "attributes": {
+ "kind": "line",
+ "uuid": "6ef683b5-e354-4fe0-a9df-8ac96bd9082a",
+ "x": "0",
+ "y": "0",
+ "width": "515",
+ "height": "1"
+ }
+ }
+ },
+ {
+ "chunk_id": 44,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'BarbecueReport': staticText element, Text: 'Barcode Sample', Position: (0, 10), Size: 515x30.",
+ "raw_xml": "\n\t\t\tBarcode Sample\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e2e11563-7a3c-41c0-a934-bf0fa76d505d",
+ "x": "0",
+ "y": "10",
+ "width": "515",
+ "height": "30",
+ "fontSize": "22.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 45,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'BarbecueReport': textField element, Expression: \"This sample uses Barbecue Version 1.5beta1\\n\" + \"\", Position: (0, 50), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"This sample uses Barbecue Version 1.5beta1\\n\" + \"\"\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "85dc966e-8084-4441-ba86-3926ef9b72cb",
+ "x": "0",
+ "y": "50",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 46,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'BarbecueReport': textField element, Expression: \"http://barbecue.sourceforge.net/\", Position: (0, 70), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"http://barbecue.sourceforge.net/\"\n\t\t\t\"http://barbecue.sourceforge.net/\"\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6e11e2f3-0ed2-4b0a-b063-4aabe40bdbd2",
+ "x": "0",
+ "y": "70",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "linkType": "Reference",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 47,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 100), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "ed79454e-21f5-4f98-9130-a44a512a7e51",
+ "x": "0",
+ "y": "100",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 48,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 160), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "a40ff8c2-0095-4e42-a18b-76e6afe0d290",
+ "x": "0",
+ "y": "160",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 49,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 220), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "9f4c02e5-65c8-4666-b20b-fcdabe863b6a",
+ "x": "0",
+ "y": "220",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 50,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 280), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "b566897b-ff4d-4a89-a9ed-de38db807f14",
+ "x": "0",
+ "y": "280",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 51,
+ "chunk_type": "element_line",
+ "human_description": "'title' band of report 'BarbecueReport': line element, Position: (0, 0), Size: 515x1.",
+ "raw_xml": "\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "line",
+ "attributes": {
+ "kind": "line",
+ "uuid": "6ef683b5-e354-4fe0-a9df-8ac96bd9082a",
+ "x": "0",
+ "y": "0",
+ "width": "515",
+ "height": "1"
+ }
+ }
+ },
+ {
+ "chunk_id": 52,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'BarbecueReport': staticText element, Text: 'Barcode Sample', Position: (0, 10), Size: 515x30.",
+ "raw_xml": "\n\t\t\tBarcode Sample\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e2e11563-7a3c-41c0-a934-bf0fa76d505d",
+ "x": "0",
+ "y": "10",
+ "width": "515",
+ "height": "30",
+ "fontSize": "22.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 53,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'BarbecueReport': textField element, Expression: \"This sample uses Barbecue Version 1.5beta1\\n\" + \"\", Position: (0, 50), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"This sample uses Barbecue Version 1.5beta1\\n\" + \"\"\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "85dc966e-8084-4441-ba86-3926ef9b72cb",
+ "x": "0",
+ "y": "50",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 54,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'BarbecueReport': textField element, Expression: \"http://barbecue.sourceforge.net/\", Position: (0, 70), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"http://barbecue.sourceforge.net/\"\n\t\t\t\"http://barbecue.sourceforge.net/\"\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6e11e2f3-0ed2-4b0a-b063-4aabe40bdbd2",
+ "x": "0",
+ "y": "70",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "linkType": "Reference",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 55,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 100), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "ed79454e-21f5-4f98-9130-a44a512a7e51",
+ "x": "0",
+ "y": "100",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 56,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 160), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "a40ff8c2-0095-4e42-a18b-76e6afe0d290",
+ "x": "0",
+ "y": "160",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 57,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 220), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "9f4c02e5-65c8-4666-b20b-fcdabe863b6a",
+ "x": "0",
+ "y": "220",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 58,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 280), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "b566897b-ff4d-4a89-a9ed-de38db807f14",
+ "x": "0",
+ "y": "280",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 59,
+ "chunk_type": "element_line",
+ "human_description": "'title' band of report 'BarbecueReport': line element, Position: (0, 0), Size: 515x1.",
+ "raw_xml": "\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "line",
+ "attributes": {
+ "kind": "line",
+ "uuid": "6ef683b5-e354-4fe0-a9df-8ac96bd9082a",
+ "x": "0",
+ "y": "0",
+ "width": "515",
+ "height": "1"
+ }
+ }
+ },
+ {
+ "chunk_id": 60,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'BarbecueReport': staticText element, Text: 'Barcode Sample', Position: (0, 10), Size: 515x30.",
+ "raw_xml": "\n\t\t\tBarcode Sample\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e2e11563-7a3c-41c0-a934-bf0fa76d505d",
+ "x": "0",
+ "y": "10",
+ "width": "515",
+ "height": "30",
+ "fontSize": "22.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 61,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'BarbecueReport': textField element, Expression: \"This sample uses Barbecue Version 1.5beta1\\n\" + \"\", Position: (0, 50), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"This sample uses Barbecue Version 1.5beta1\\n\" + \"\"\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "85dc966e-8084-4441-ba86-3926ef9b72cb",
+ "x": "0",
+ "y": "50",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 62,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'BarbecueReport': textField element, Expression: \"http://barbecue.sourceforge.net/\", Position: (0, 70), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"http://barbecue.sourceforge.net/\"\n\t\t\t\"http://barbecue.sourceforge.net/\"\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6e11e2f3-0ed2-4b0a-b063-4aabe40bdbd2",
+ "x": "0",
+ "y": "70",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "linkType": "Reference",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 63,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 100), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "ed79454e-21f5-4f98-9130-a44a512a7e51",
+ "x": "0",
+ "y": "100",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 64,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 160), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "a40ff8c2-0095-4e42-a18b-76e6afe0d290",
+ "x": "0",
+ "y": "160",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 65,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 220), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "9f4c02e5-65c8-4666-b20b-fcdabe863b6a",
+ "x": "0",
+ "y": "220",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 66,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 280), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "b566897b-ff4d-4a89-a9ed-de38db807f14",
+ "x": "0",
+ "y": "280",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 67,
+ "chunk_type": "element_line",
+ "human_description": "'title' band of report 'BarbecueReport': line element, Position: (0, 0), Size: 515x1.",
+ "raw_xml": "\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "line",
+ "attributes": {
+ "kind": "line",
+ "uuid": "6ef683b5-e354-4fe0-a9df-8ac96bd9082a",
+ "x": "0",
+ "y": "0",
+ "width": "515",
+ "height": "1"
+ }
+ }
+ },
+ {
+ "chunk_id": 68,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'BarbecueReport': staticText element, Text: 'Barcode Sample', Position: (0, 10), Size: 515x30.",
+ "raw_xml": "\n\t\t\tBarcode Sample\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e2e11563-7a3c-41c0-a934-bf0fa76d505d",
+ "x": "0",
+ "y": "10",
+ "width": "515",
+ "height": "30",
+ "fontSize": "22.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 69,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'BarbecueReport': textField element, Expression: \"This sample uses Barbecue Version 1.5beta1\\n\" + \"\", Position: (0, 50), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"This sample uses Barbecue Version 1.5beta1\\n\" + \"\"\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "85dc966e-8084-4441-ba86-3926ef9b72cb",
+ "x": "0",
+ "y": "50",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 70,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'BarbecueReport': textField element, Expression: \"http://barbecue.sourceforge.net/\", Position: (0, 70), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"http://barbecue.sourceforge.net/\"\n\t\t\t\"http://barbecue.sourceforge.net/\"\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6e11e2f3-0ed2-4b0a-b063-4aabe40bdbd2",
+ "x": "0",
+ "y": "70",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "linkType": "Reference",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 71,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 100), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "ed79454e-21f5-4f98-9130-a44a512a7e51",
+ "x": "0",
+ "y": "100",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 72,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 160), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "a40ff8c2-0095-4e42-a18b-76e6afe0d290",
+ "x": "0",
+ "y": "160",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 73,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 220), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "9f4c02e5-65c8-4666-b20b-fcdabe863b6a",
+ "x": "0",
+ "y": "220",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 74,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 280), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "b566897b-ff4d-4a89-a9ed-de38db807f14",
+ "x": "0",
+ "y": "280",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 75,
+ "chunk_type": "element_line",
+ "human_description": "'title' band of report 'BarbecueReport': line element, Position: (0, 0), Size: 515x1.",
+ "raw_xml": "\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "line",
+ "attributes": {
+ "kind": "line",
+ "uuid": "6ef683b5-e354-4fe0-a9df-8ac96bd9082a",
+ "x": "0",
+ "y": "0",
+ "width": "515",
+ "height": "1"
+ }
+ }
+ },
+ {
+ "chunk_id": 76,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'BarbecueReport': staticText element, Text: 'Barcode Sample', Position: (0, 10), Size: 515x30.",
+ "raw_xml": "\n\t\t\tBarcode Sample\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e2e11563-7a3c-41c0-a934-bf0fa76d505d",
+ "x": "0",
+ "y": "10",
+ "width": "515",
+ "height": "30",
+ "fontSize": "22.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 77,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'BarbecueReport': textField element, Expression: \"This sample uses Barbecue Version 1.5beta1\\n\" + \"\", Position: (0, 50), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"This sample uses Barbecue Version 1.5beta1\\n\" + \"\"\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "85dc966e-8084-4441-ba86-3926ef9b72cb",
+ "x": "0",
+ "y": "50",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 78,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'BarbecueReport': textField element, Expression: \"http://barbecue.sourceforge.net/\", Position: (0, 70), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"http://barbecue.sourceforge.net/\"\n\t\t\t\"http://barbecue.sourceforge.net/\"\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6e11e2f3-0ed2-4b0a-b063-4aabe40bdbd2",
+ "x": "0",
+ "y": "70",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "linkType": "Reference",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 79,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 100), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "ed79454e-21f5-4f98-9130-a44a512a7e51",
+ "x": "0",
+ "y": "100",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 80,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 160), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "a40ff8c2-0095-4e42-a18b-76e6afe0d290",
+ "x": "0",
+ "y": "160",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 81,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 220), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "9f4c02e5-65c8-4666-b20b-fcdabe863b6a",
+ "x": "0",
+ "y": "220",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 82,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'BarbecueReport': component element, Position: (0, 280), Size: 400x50.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'BarbecueReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "b566897b-ff4d-4a89-a9ed-de38db807f14",
+ "x": "0",
+ "y": "280",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 83,
+ "chunk_type": "component",
+ "human_description": "This is a component element in report 'BarbecueReport'. Component kind: barbecue. Contains 0 datasetRun(s). Content size: 0x0.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' component",
+ "metadata": {
+ "component_kind": "barbecue",
+ "dataset_runs": [],
+ "contents_height": "0",
+ "contents_width": "0",
+ "attributes": {
+ "kind": "component",
+ "uuid": "ed79454e-21f5-4f98-9130-a44a512a7e51",
+ "x": "0",
+ "y": "100",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 84,
+ "chunk_type": "component",
+ "human_description": "This is a component element in report 'BarbecueReport'. Component kind: barbecue. Contains 0 datasetRun(s). Content size: 0x0.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' component",
+ "metadata": {
+ "component_kind": "barbecue",
+ "dataset_runs": [],
+ "contents_height": "0",
+ "contents_width": "0",
+ "attributes": {
+ "kind": "component",
+ "uuid": "a40ff8c2-0095-4e42-a18b-76e6afe0d290",
+ "x": "0",
+ "y": "160",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 85,
+ "chunk_type": "component",
+ "human_description": "This is a component element in report 'BarbecueReport'. Component kind: barbecue. Contains 0 datasetRun(s). Content size: 0x0.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'BarbecueReport' component",
+ "metadata": {
+ "component_kind": "barbecue",
+ "dataset_runs": [],
+ "contents_height": "0",
+ "contents_width": "0",
+ "attributes": {
+ "kind": "component",
+ "uuid": "9f4c02e5-65c8-4666-b20b-fcdabe863b6a",
+ "x": "0",
+ "y": "220",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 86,
+ "chunk_type": "component",
+ "human_description": "This is a component element in report 'BarbecueReport'. Component kind: barbecue. Contains 0 datasetRun(s). Content size: 0x0.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$P{Code}\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'BarbecueReport' component",
+ "metadata": {
+ "component_kind": "barbecue",
+ "dataset_runs": [],
+ "contents_height": "0",
+ "contents_width": "0",
+ "attributes": {
+ "kind": "component",
+ "uuid": "b566897b-ff4d-4a89-a9ed-de38db807f14",
+ "x": "0",
+ "y": "280",
+ "width": "400",
+ "height": "50"
+ }
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'BarChartReport'. Page size: 595 x 842 portrait. Contains 5 standard bands with content: title, columnHeader, detail, columnFooter, pageFooter. Defines 14 fields: ShippedDate, ShipCountry, RequiredDate, CustomerID, OrderID, ShipName, ShipVia, ShipPostalCode, OrderDate, ShipCity, ShipAddress, EmployeeID, ShipRegion, Freight. Defines 2 parameters: ReportTitle, MaxOrderID. Defines 11 variables: FirstLetter, FirstLetterCount, FirstLetterMin, FirstLetterMax, FreightSumChartGroup, FreightSumCountryGroup, FreightSumColumn, FreightSumPage, FreightSumReport, DateHighestCountryGroup, RegionCountCountryGroup. Defines 3 groups: ChartGroup, FirstLetterGroup, CountryGroup. Data source type: JDBC/SQL. Source: Sample DB. Query language: sql. Contains 1 charts.",
+ "raw_xml": "",
+ "context": "Report 'BarChartReport' overall structure overview",
+ "metadata": {
+ "report_name": "BarChartReport",
+ "bands": [
+ "title",
+ "columnHeader",
+ "detail",
+ "columnFooter",
+ "pageFooter"
+ ],
+ "field_count": 14,
+ "parameter_count": 2,
+ "variable_count": 11,
+ "group_count": 3,
+ "chart_count": 1,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "JDBC/SQL",
+ "source": "Sample DB",
+ "query_language": "sql",
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "Sample DB",
+ "net.sf.jasperreports.chart.render.type": "svg",
+ "net.sf.jasperreports.image.dpi": "150"
+ }
+ },
+ "attributes": {
+ "name": "BarChartReport",
+ "language": "java",
+ "columnCount": "2",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "columnWidth": "270",
+ "columnSpacing": "15",
+ "leftMargin": "20",
+ "rightMargin": "20",
+ "topMargin": "30",
+ "bottomMargin": "30",
+ "uuid": "c1a45e09-476e-4a66-b581-cf2277f40a24"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'BarChartReport'. Data adapter: Sample DB.",
+ "raw_xml": "",
+ "context": "Report 'BarChartReport' data source configuration",
+ "metadata": {
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "Sample DB"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "query",
+ "human_description": "This is the data query for report 'BarChartReport'. Language: SQL. Query: SELECT * FROM Orders WHERE OrderID <= $P{MaxOrderID} ORDER BY ShipCountry",
+ "raw_xml": "SELECT * FROM Orders WHERE OrderID <= $P{MaxOrderID} ORDER BY ShipCountry\n\t",
+ "context": "Report 'BarChartReport' data query",
+ "metadata": {
+ "query_language": "sql",
+ "full_sql": "SELECT * FROM Orders WHERE OrderID <= $P{MaxOrderID} ORDER BY ShipCountry"
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "parameters",
+ "human_description": "These are all parameter definitions for report 'BarChartReport', total 2 parameters. Parameters: ReportTitle(java.lang.String), MaxOrderID(java.lang.Integer).",
+ "raw_xml": "\n\t\t\"Bar Chart Report\"\n\t\n\t\n\n\t\t12500\n\t\n\t",
+ "context": "Report 'BarChartReport' parameter definitions",
+ "metadata": {
+ "parameter_names": [
+ "ReportTitle",
+ "MaxOrderID"
+ ],
+ "parameter_types": {
+ "ReportTitle": "java.lang.String",
+ "MaxOrderID": "java.lang.Integer"
+ },
+ "default_values": {
+ "ReportTitle": "\"Bar Chart Report\"",
+ "MaxOrderID": "12500"
+ },
+ "count": 2
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BarChartReport': ShippedDate, type: java.sql.Timestamp",
+ "raw_xml": "\n\t",
+ "context": "Report 'BarChartReport' field 'ShippedDate'",
+ "metadata": {
+ "field_name": "ShippedDate",
+ "field_class": "java.sql.Timestamp",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BarChartReport': ShipCountry, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'BarChartReport' field 'ShipCountry'",
+ "metadata": {
+ "field_name": "ShipCountry",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 6,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BarChartReport': RequiredDate, type: java.sql.Timestamp",
+ "raw_xml": "\n\t",
+ "context": "Report 'BarChartReport' field 'RequiredDate'",
+ "metadata": {
+ "field_name": "RequiredDate",
+ "field_class": "java.sql.Timestamp",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BarChartReport': CustomerID, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'BarChartReport' field 'CustomerID'",
+ "metadata": {
+ "field_name": "CustomerID",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 8,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BarChartReport': OrderID, type: java.lang.Integer",
+ "raw_xml": "\n\t",
+ "context": "Report 'BarChartReport' field 'OrderID'",
+ "metadata": {
+ "field_name": "OrderID",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BarChartReport': ShipName, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'BarChartReport' field 'ShipName'",
+ "metadata": {
+ "field_name": "ShipName",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BarChartReport': ShipVia, type: java.lang.Integer",
+ "raw_xml": "\n\t",
+ "context": "Report 'BarChartReport' field 'ShipVia'",
+ "metadata": {
+ "field_name": "ShipVia",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 11,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BarChartReport': ShipPostalCode, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'BarChartReport' field 'ShipPostalCode'",
+ "metadata": {
+ "field_name": "ShipPostalCode",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 12,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BarChartReport': OrderDate, type: java.sql.Timestamp",
+ "raw_xml": "\n\t",
+ "context": "Report 'BarChartReport' field 'OrderDate'",
+ "metadata": {
+ "field_name": "OrderDate",
+ "field_class": "java.sql.Timestamp",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 13,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BarChartReport': ShipCity, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'BarChartReport' field 'ShipCity'",
+ "metadata": {
+ "field_name": "ShipCity",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BarChartReport': ShipAddress, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'BarChartReport' field 'ShipAddress'",
+ "metadata": {
+ "field_name": "ShipAddress",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BarChartReport': EmployeeID, type: java.lang.Integer",
+ "raw_xml": "\n\t",
+ "context": "Report 'BarChartReport' field 'EmployeeID'",
+ "metadata": {
+ "field_name": "EmployeeID",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 16,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BarChartReport': ShipRegion, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'BarChartReport' field 'ShipRegion'",
+ "metadata": {
+ "field_name": "ShipRegion",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 17,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BarChartReport': Freight, type: java.lang.Double",
+ "raw_xml": "\n\t",
+ "context": "Report 'BarChartReport' field 'Freight'",
+ "metadata": {
+ "field_name": "Freight",
+ "field_class": "java.lang.Double",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_none",
+ "human_description": "These are variable definitions for report 'BarChartReport' (resetType=None), total 1 variables. Variables: FirstLetter(java.lang.String, Nothing).",
+ "raw_xml": "\n\t\t$F{ShipCountry}.substring(0, 1).toUpperCase()\n\t\n\t",
+ "context": "Report 'BarChartReport' variable definitions (None level reset)",
+ "metadata": {
+ "variable_names": [
+ "FirstLetter"
+ ],
+ "variable_types": {
+ "FirstLetter": "java.lang.String"
+ },
+ "variable_calculations": {
+ "FirstLetter": "Nothing"
+ },
+ "reset_type": "None",
+ "expressions": {
+ "FirstLetter": {
+ "type": "expression",
+ "value": "$F{ShipCountry}.substring(0, 1).toUpperCase()"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_group",
+ "human_description": "These are variable definitions for report 'BarChartReport' (resetType=Group), total 7 variables. Variables: FirstLetterCount(java.lang.Integer, Count), FirstLetterMin(java.lang.String, Lowest), FirstLetterMax(java.lang.String, Highest), FreightSumChartGroup(java.lang.Double, Sum), FreightSumCountryGroup(java.lang.Double, Sum), DateHighestCountryGroup(java.sql.Timestamp, Highest), RegionCountCountryGroup(java.lang.Integer, Count).",
+ "raw_xml": "\n\t\tBoolean.TRUE\n\t\n\t\n\n\t\t$V{FirstLetter}\n\t\n\t\n\n\t\t$V{FirstLetter}\n\t\n\t\n\n\t\t$F{Freight}\n\t\n\t\n\n\t\t$F{Freight}\n\t\n\t\n\n\t\t$F{OrderDate}\n\t\n\t\n\n\t\t$F{ShipRegion}\n\t\n\t",
+ "context": "Report 'BarChartReport' variable definitions (Group level reset)",
+ "metadata": {
+ "variable_names": [
+ "FirstLetterCount",
+ "FirstLetterMin",
+ "FirstLetterMax",
+ "FreightSumChartGroup",
+ "FreightSumCountryGroup",
+ "DateHighestCountryGroup",
+ "RegionCountCountryGroup"
+ ],
+ "variable_types": {
+ "FirstLetterCount": "java.lang.Integer",
+ "FirstLetterMin": "java.lang.String",
+ "FirstLetterMax": "java.lang.String",
+ "FreightSumChartGroup": "java.lang.Double",
+ "FreightSumCountryGroup": "java.lang.Double",
+ "DateHighestCountryGroup": "java.sql.Timestamp",
+ "RegionCountCountryGroup": "java.lang.Integer"
+ },
+ "variable_calculations": {
+ "FirstLetterCount": "Count",
+ "FirstLetterMin": "Lowest",
+ "FirstLetterMax": "Highest",
+ "FreightSumChartGroup": "Sum",
+ "FreightSumCountryGroup": "Sum",
+ "DateHighestCountryGroup": "Highest",
+ "RegionCountCountryGroup": "Count"
+ },
+ "reset_type": "Group",
+ "expressions": {
+ "FirstLetterCount": {
+ "type": "expression",
+ "value": "Boolean.TRUE"
+ },
+ "FirstLetterMin": {
+ "type": "expression",
+ "value": "$V{FirstLetter}"
+ },
+ "FirstLetterMax": {
+ "type": "expression",
+ "value": "$V{FirstLetter}"
+ },
+ "FreightSumChartGroup": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ },
+ "FreightSumCountryGroup": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ },
+ "DateHighestCountryGroup": {
+ "type": "expression",
+ "value": "$F{OrderDate}"
+ },
+ "RegionCountCountryGroup": {
+ "type": "expression",
+ "value": "$F{ShipRegion}"
+ }
+ },
+ "count": 7
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_column",
+ "human_description": "These are variable definitions for report 'BarChartReport' (resetType=Column), total 1 variables. Variables: FreightSumColumn(java.lang.Double, Sum).",
+ "raw_xml": "\n\t\t$F{Freight}\n\t\n\t",
+ "context": "Report 'BarChartReport' variable definitions (Column level reset)",
+ "metadata": {
+ "variable_names": [
+ "FreightSumColumn"
+ ],
+ "variable_types": {
+ "FreightSumColumn": "java.lang.Double"
+ },
+ "variable_calculations": {
+ "FreightSumColumn": "Sum"
+ },
+ "reset_type": "Column",
+ "expressions": {
+ "FreightSumColumn": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_page",
+ "human_description": "These are variable definitions for report 'BarChartReport' (resetType=Page), total 1 variables. Variables: FreightSumPage(java.lang.Double, Sum).",
+ "raw_xml": "\n\t\t$F{Freight}\n\t\n\t",
+ "context": "Report 'BarChartReport' variable definitions (Page level reset)",
+ "metadata": {
+ "variable_names": [
+ "FreightSumPage"
+ ],
+ "variable_types": {
+ "FreightSumPage": "java.lang.Double"
+ },
+ "variable_calculations": {
+ "FreightSumPage": "Sum"
+ },
+ "reset_type": "Page",
+ "expressions": {
+ "FreightSumPage": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_report",
+ "human_description": "These are variable definitions for report 'BarChartReport' (resetType=Report), total 1 variables. Variables: FreightSumReport(java.lang.Double, Sum).",
+ "raw_xml": "\n\t\t$F{Freight}\n\t\n\t",
+ "context": "Report 'BarChartReport' variable definitions (Report level reset)",
+ "metadata": {
+ "variable_names": [
+ "FreightSumReport"
+ ],
+ "variable_types": {
+ "FreightSumReport": "java.lang.Double"
+ },
+ "variable_calculations": {
+ "FreightSumReport": "Sum"
+ },
+ "reset_type": "Report",
+ "expressions": {
+ "FreightSumReport": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 23,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'BarChartReport', total 5 styles. Styles: Sans_Normal, Sans_Bold, Sans_Italic, Serif_Normal, Serif_Bold. Default style: Sans_Normal.",
+ "raw_xml": "\n\t\n\n\t\n\n\t\n\n\t\n\n\t",
+ "context": "Report 'BarChartReport' style definitions",
+ "metadata": {
+ "style_names": [
+ "Sans_Normal",
+ "Sans_Bold",
+ "Sans_Italic",
+ "Serif_Normal",
+ "Serif_Bold"
+ ],
+ "default_style": "Sans_Normal",
+ "has_conditional_styles": false,
+ "count": 5
+ }
+ },
+ {
+ "chunk_id": 24,
+ "chunk_type": "group",
+ "human_description": "This is group 'ChartGroup' definition for report 'BarChartReport'. Group expression: ($V{FirstLetterCount} - 1) / 3. Has groupHeader: Yes, has groupFooter: Yes. Min height: 200, start new column: true, reprint header: false.",
+ "raw_xml": "\n\t\t($V{FirstLetterCount} - 1) / 3\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tCountries Starting With Letter :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FirstLetterMin}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tto\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FirstLetterMax}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Double Freight\"\n\t\t\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\t\t\t$V{FreightSumCountryGroup} * 2d\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Normal Freight\"\n\t\t\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\t\t\t$V{FreightSumCountryGroup}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Half Freight\"\n\t\t\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\t\t\t$V{FreightSumCountryGroup} / 2d\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tCount :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{ChartGroup_COUNT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tTotal :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FreightSumChartGroup}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' group 'ChartGroup'",
+ "metadata": {
+ "group_name": "ChartGroup",
+ "expression": "($V{FirstLetterCount} - 1) / 3",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "200",
+ "startNewColumn": "true",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 25,
+ "chunk_type": "group",
+ "human_description": "This is group 'FirstLetterGroup' definition for report 'BarChartReport'. Group expression: $V{FirstLetter}. Has groupHeader: No, has groupFooter: No. Min height: 0, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t$V{FirstLetter}\n\t\n\t",
+ "context": "Report 'BarChartReport' group 'FirstLetterGroup'",
+ "metadata": {
+ "group_name": "FirstLetterGroup",
+ "expression": "$V{FirstLetter}",
+ "has_header": false,
+ "has_footer": false,
+ "minHeightToStartNewPage": "0",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "group",
+ "human_description": "This is group 'CountryGroup' definition for report 'BarChartReport'. Group expression: $F{ShipCountry}. Has groupHeader: Yes, has groupFooter: Yes. Min height: 0, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t$F{ShipCountry}\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{DateHighestCountryGroup}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tCount :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{CountryGroup_COUNT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tTotal :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FreightSumCountryGroup}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' group 'CountryGroup'",
+ "metadata": {
+ "group_name": "CountryGroup",
+ "expression": "$F{ShipCountry}",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "0",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'BarChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bar Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBar Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bar Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'BarChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BarChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'BarChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'BarChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'BarChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'BarChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bar Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBar Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bar Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'BarChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BarChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'BarChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'BarChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'BarChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'BarChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bar Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBar Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bar Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'BarChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BarChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'BarChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'BarChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'BarChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'BarChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bar Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBar Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bar Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'BarChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BarChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'BarChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'BarChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'BarChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'BarChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bar Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBar Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bar Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'BarChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BarChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'BarChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'BarChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'BarChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'BarChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bar Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBar Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bar Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'BarChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BarChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'BarChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'BarChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'BarChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'BarChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bar Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBar Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bar Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'BarChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BarChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'BarChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'BarChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'BarChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'BarChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bar Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBar Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bar Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'BarChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BarChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'BarChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'BarChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'BarChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'BarChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bar Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBar Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bar Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'BarChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BarChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'BarChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'BarChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'BarChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'BarChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bar Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBar Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bar Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'BarChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BarChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'BarChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'BarChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'BarChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'BarChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 77,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'BarChartReport', type: bar. Dataset kind: category. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Double Freight\"\n\t\t\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\t\t\t$V{FreightSumCountryGroup} * 2d\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Normal Freight\"\n\t\t\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\t\t\t$V{FreightSumCountryGroup}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Half Freight\"\n\t\t\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\t\t\t$V{FreightSumCountryGroup} / 2d\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'BarChartReport' chart",
+ "metadata": {
+ "chart_type": "bar",
+ "dataset": {
+ "kind": "category",
+ "series": [
+ {
+ "key": "",
+ "value": "$V{FreightSumCountryGroup} * 2d"
+ },
+ {
+ "key": "",
+ "value": "$V{FreightSumCountryGroup}"
+ },
+ {
+ "key": "",
+ "value": "$V{FreightSumCountryGroup} / 2d"
+ }
+ ]
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "bar",
+ "uuid": "a220a3ef-6bb2-4a4d-8bd3-5bda467cc036",
+ "positionType": "Float",
+ "x": "0",
+ "y": "50",
+ "width": "270",
+ "height": "175",
+ "evaluationTime": "Group",
+ "customizerClass": "net.sf.jasperreports.samples.charts.BarChartCustomizer",
+ "evaluationGroup": "ChartGroup"
+ }
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'Barcode4JReport'. Page size: 595 x 842 portrait. Contains 1 standard bands with content: title. Defines 0 fields: none. Defines 0 parameters: none. Defines 0 variables: none. Defines 0 groups: none. Data source type: DataAdapter. Source: One Empty Record.",
+ "raw_xml": "",
+ "context": "Report 'Barcode4JReport' overall structure overview",
+ "metadata": {
+ "report_name": "Barcode4JReport",
+ "bands": [
+ "title"
+ ],
+ "field_count": 0,
+ "parameter_count": 0,
+ "variable_count": 0,
+ "group_count": 0,
+ "chart_count": 0,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "DataAdapter",
+ "source": "One Empty Record",
+ "query_language": null,
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "One Empty Record"
+ }
+ },
+ "attributes": {
+ "name": "Barcode4JReport",
+ "language": "java",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "columnWidth": "515",
+ "leftMargin": "40",
+ "rightMargin": "40",
+ "topMargin": "50",
+ "bottomMargin": "50",
+ "uuid": "432a7055-07f0-43d2-8d4c-00337bfe4d0a"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'Barcode4JReport'. Data adapter: One Empty Record.",
+ "raw_xml": "",
+ "context": "Report 'Barcode4JReport' data source configuration",
+ "metadata": {
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "One Empty Record"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'Barcode4JReport', total 1 styles. Styles: Barcode.",
+ "raw_xml": "\n\t",
+ "context": "Report 'Barcode4JReport' style definitions",
+ "metadata": {
+ "style_names": [
+ "Barcode"
+ ],
+ "default_style": null,
+ "has_conditional_styles": false,
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "element_line",
+ "human_description": "'title' band of report 'Barcode4JReport': line element, Position: (0, 0), Size: 515x1.",
+ "raw_xml": "\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "line",
+ "attributes": {
+ "kind": "line",
+ "uuid": "f980135d-c40f-42a7-93cd-d9d82925d5e2",
+ "x": "0",
+ "y": "0",
+ "width": "515",
+ "height": "1"
+ }
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Barcode Sample', Position: (0, 10), Size: 515x30.",
+ "raw_xml": "\n\t\t\tBarcode Sample\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "df70158b-7d84-4c11-ae3e-a7bd238bcf3f",
+ "x": "0",
+ "y": "10",
+ "width": "515",
+ "height": "30",
+ "fontSize": "22.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'Barcode4JReport': textField element, Expression: \"This sample uses Barcode4J Version 2.0\", Position: (0, 50), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"This sample uses Barcode4J Version 2.0\"\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "50f14e7a-b548-4a5d-9395-a387ea2e7e81",
+ "x": "0",
+ "y": "50",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 6,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'Barcode4JReport': textField element, Expression: \"http://barcode4j.sourceforge.net/\", Position: (0, 70), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "55317c38-260d-4fb5-8c73-693d6425c411",
+ "x": "0",
+ "y": "70",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "linkType": "Reference",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Code 128', Position: (0, 100), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCode 128\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e3c8aa4c-a571-4288-b6ab-9eca96752649",
+ "x": "0",
+ "y": "100",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 8,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 100), Size: 200x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "17dc8c86-0d9c-4542-b153-71844a13bfe5",
+ "x": "130",
+ "y": "100",
+ "width": "200",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Codabar', Position: (0, 135), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCodabar\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "038aa527-7c7f-48b5-9547-7ba91470754c",
+ "x": "0",
+ "y": "135",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 135), Size: 200x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234567890\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "a8dd7541-3d7d-44fc-9281-2bf0bd7ff556",
+ "x": "130",
+ "y": "135",
+ "width": "200",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 11,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'DataMatrix', Position: (0, 170), Size: 100x40.",
+ "raw_xml": "\n\t\t\tDataMatrix\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e819db15-0b87-47b8-8474-cbe17cc7a37a",
+ "x": "0",
+ "y": "170",
+ "width": "100",
+ "height": "40",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 12,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 170), Size: 70x40.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "3955570e-f418-4cf2-9a94-cbed633f8e68",
+ "x": "130",
+ "y": "170",
+ "width": "70",
+ "height": "40",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 13,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-128', Position: (0, 215), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-128\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "079dc326-5af1-4979-927c-3d9d75bfe21b",
+ "x": "0",
+ "y": "215",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 215), Size: 250x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0101234567890128\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "d5a009ab-4cd5-401e-96c8-9ba64b1fc8e9",
+ "x": "130",
+ "y": "215",
+ "width": "250",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Code39', Position: (0, 250), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCode39\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "63b7698e-e4a1-4fff-9ea0-a9772dd5b2c4",
+ "x": "0",
+ "y": "250",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 16,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 250), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "7fc9f508-28ba-4b6e-bf7d-2e5e39b98ed8",
+ "x": "130",
+ "y": "250",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 17,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'USPS Intelligent Mail', Position: (0, 285), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUSPS Intelligent Mail\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "8ca7d2e2-c66f-4c25-ab3d-2fb15453b8b0",
+ "x": "0",
+ "y": "285",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 285), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"00040123456200800001987654321\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "8fdd4d61-26b7-4a0e-b569-18d70d929c10",
+ "x": "130",
+ "y": "285",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 19,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Royal Mail Customer', Position: (0, 320), Size: 100x30.",
+ "raw_xml": "\n\t\t\tRoyal Mail Customer\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "df0b440d-9a4f-49ea-aa1d-c860c2ad3911",
+ "x": "0",
+ "y": "320",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 20,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 320), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "4d2d0a42-1318-4873-8572-3cca99ebde50",
+ "x": "130",
+ "y": "320",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 21,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Interleaved 2 of 5', Position: (0, 355), Size: 100x30.",
+ "raw_xml": "\n\t\t\tInterleaved 2 of 5\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dc520315-36de-4535-9d40-2dc5b96e07bc",
+ "x": "0",
+ "y": "355",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 22,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 355), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "26bab176-29df-4677-ba6a-e8df79eea8e1",
+ "x": "130",
+ "y": "355",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 23,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'UPC-A', Position: (0, 390), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUPC-A\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "ddcf57ba-86e5-4b2c-8293-89cc3c044890",
+ "x": "0",
+ "y": "390",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 24,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 390), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234567890\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "234c47ef-0149-43aa-9595-44eb81a2bd54",
+ "x": "130",
+ "y": "390",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 25,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'UPC-E', Position: (0, 425), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUPC-E\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "1ee2c6c4-54d0-4bae-af20-03970939c63c",
+ "x": "0",
+ "y": "425",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 425), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234133\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "51b4da4c-b93b-4757-9f6e-8757a6716ea1",
+ "x": "130",
+ "y": "425",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-13', Position: (0, 460), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-13\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2cb2f39b-a468-4d35-9047-2066f52aec84",
+ "x": "0",
+ "y": "460",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 28,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 460), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"012345678901\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "35e15c85-135e-4e4a-ada4-3caab948d304",
+ "x": "130",
+ "y": "460",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 29,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-8', Position: (0, 495), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-8\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9399924d-03f6-4825-adfd-0a51cca77964",
+ "x": "0",
+ "y": "495",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 30,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 495), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234565\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "00eb6f75-bdf7-408a-ba56-f76ecca2f8e6",
+ "x": "130",
+ "y": "495",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 31,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'POSTNET', Position: (0, 530), Size: 100x20.",
+ "raw_xml": "\n\t\t\tPOSTNET\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "6ffb2cc2-63fd-4754-b8c3-48828cca8ab1",
+ "x": "0",
+ "y": "530",
+ "width": "100",
+ "height": "20",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 32,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 530), Size: 400x20.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "16fee5fe-1e0f-4f56-b240-64a2ff904744",
+ "x": "130",
+ "y": "530",
+ "width": "400",
+ "height": "20",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 33,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'PDF417', Position: (0, 555), Size: 100x30.",
+ "raw_xml": "\n\t\t\tPDF417\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "c1127dd1-6cde-483c-8b1c-927b5fd285a3",
+ "x": "0",
+ "y": "555",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 34,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 555), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "f8257c9c-cc13-40f4-8c1e-b2dda037fb3d",
+ "x": "130",
+ "y": "555",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 35,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'QRCode', Position: (0, 600), Size: 100x80.",
+ "raw_xml": "\n\t\t\tQRCode\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "c1127dd1-6cde-483c-8b1c-927b5fd285a3",
+ "x": "0",
+ "y": "600",
+ "width": "100",
+ "height": "80",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 36,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 600), Size: 400x80.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "f8257c9c-cc13-40f4-8c1e-b2dda037fb3d",
+ "mode": "Opaque",
+ "x": "130",
+ "y": "600",
+ "width": "400",
+ "height": "80",
+ "forecolor": "#0000FF",
+ "backcolor": "#FFFF00",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 37,
+ "chunk_type": "element_line",
+ "human_description": "'title' band of report 'Barcode4JReport': line element, Position: (0, 0), Size: 515x1.",
+ "raw_xml": "\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "line",
+ "attributes": {
+ "kind": "line",
+ "uuid": "f980135d-c40f-42a7-93cd-d9d82925d5e2",
+ "x": "0",
+ "y": "0",
+ "width": "515",
+ "height": "1"
+ }
+ }
+ },
+ {
+ "chunk_id": 38,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Barcode Sample', Position: (0, 10), Size: 515x30.",
+ "raw_xml": "\n\t\t\tBarcode Sample\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "df70158b-7d84-4c11-ae3e-a7bd238bcf3f",
+ "x": "0",
+ "y": "10",
+ "width": "515",
+ "height": "30",
+ "fontSize": "22.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 39,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'Barcode4JReport': textField element, Expression: \"This sample uses Barcode4J Version 2.0\", Position: (0, 50), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"This sample uses Barcode4J Version 2.0\"\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "50f14e7a-b548-4a5d-9395-a387ea2e7e81",
+ "x": "0",
+ "y": "50",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 40,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'Barcode4JReport': textField element, Expression: \"http://barcode4j.sourceforge.net/\", Position: (0, 70), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "55317c38-260d-4fb5-8c73-693d6425c411",
+ "x": "0",
+ "y": "70",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "linkType": "Reference",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 41,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Code 128', Position: (0, 100), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCode 128\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e3c8aa4c-a571-4288-b6ab-9eca96752649",
+ "x": "0",
+ "y": "100",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 42,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 100), Size: 200x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "17dc8c86-0d9c-4542-b153-71844a13bfe5",
+ "x": "130",
+ "y": "100",
+ "width": "200",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 43,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Codabar', Position: (0, 135), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCodabar\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "038aa527-7c7f-48b5-9547-7ba91470754c",
+ "x": "0",
+ "y": "135",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 44,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 135), Size: 200x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234567890\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "a8dd7541-3d7d-44fc-9281-2bf0bd7ff556",
+ "x": "130",
+ "y": "135",
+ "width": "200",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 45,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'DataMatrix', Position: (0, 170), Size: 100x40.",
+ "raw_xml": "\n\t\t\tDataMatrix\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e819db15-0b87-47b8-8474-cbe17cc7a37a",
+ "x": "0",
+ "y": "170",
+ "width": "100",
+ "height": "40",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 46,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 170), Size: 70x40.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "3955570e-f418-4cf2-9a94-cbed633f8e68",
+ "x": "130",
+ "y": "170",
+ "width": "70",
+ "height": "40",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 47,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-128', Position: (0, 215), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-128\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "079dc326-5af1-4979-927c-3d9d75bfe21b",
+ "x": "0",
+ "y": "215",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 48,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 215), Size: 250x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0101234567890128\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "d5a009ab-4cd5-401e-96c8-9ba64b1fc8e9",
+ "x": "130",
+ "y": "215",
+ "width": "250",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 49,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Code39', Position: (0, 250), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCode39\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "63b7698e-e4a1-4fff-9ea0-a9772dd5b2c4",
+ "x": "0",
+ "y": "250",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 50,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 250), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "7fc9f508-28ba-4b6e-bf7d-2e5e39b98ed8",
+ "x": "130",
+ "y": "250",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 51,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'USPS Intelligent Mail', Position: (0, 285), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUSPS Intelligent Mail\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "8ca7d2e2-c66f-4c25-ab3d-2fb15453b8b0",
+ "x": "0",
+ "y": "285",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 52,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 285), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"00040123456200800001987654321\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "8fdd4d61-26b7-4a0e-b569-18d70d929c10",
+ "x": "130",
+ "y": "285",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 53,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Royal Mail Customer', Position: (0, 320), Size: 100x30.",
+ "raw_xml": "\n\t\t\tRoyal Mail Customer\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "df0b440d-9a4f-49ea-aa1d-c860c2ad3911",
+ "x": "0",
+ "y": "320",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 54,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 320), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "4d2d0a42-1318-4873-8572-3cca99ebde50",
+ "x": "130",
+ "y": "320",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 55,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Interleaved 2 of 5', Position: (0, 355), Size: 100x30.",
+ "raw_xml": "\n\t\t\tInterleaved 2 of 5\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dc520315-36de-4535-9d40-2dc5b96e07bc",
+ "x": "0",
+ "y": "355",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 56,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 355), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "26bab176-29df-4677-ba6a-e8df79eea8e1",
+ "x": "130",
+ "y": "355",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 57,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'UPC-A', Position: (0, 390), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUPC-A\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "ddcf57ba-86e5-4b2c-8293-89cc3c044890",
+ "x": "0",
+ "y": "390",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 58,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 390), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234567890\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "234c47ef-0149-43aa-9595-44eb81a2bd54",
+ "x": "130",
+ "y": "390",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 59,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'UPC-E', Position: (0, 425), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUPC-E\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "1ee2c6c4-54d0-4bae-af20-03970939c63c",
+ "x": "0",
+ "y": "425",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 60,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 425), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234133\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "51b4da4c-b93b-4757-9f6e-8757a6716ea1",
+ "x": "130",
+ "y": "425",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 61,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-13', Position: (0, 460), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-13\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2cb2f39b-a468-4d35-9047-2066f52aec84",
+ "x": "0",
+ "y": "460",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 62,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 460), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"012345678901\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "35e15c85-135e-4e4a-ada4-3caab948d304",
+ "x": "130",
+ "y": "460",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 63,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-8', Position: (0, 495), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-8\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9399924d-03f6-4825-adfd-0a51cca77964",
+ "x": "0",
+ "y": "495",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 64,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 495), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234565\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "00eb6f75-bdf7-408a-ba56-f76ecca2f8e6",
+ "x": "130",
+ "y": "495",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 65,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'POSTNET', Position: (0, 530), Size: 100x20.",
+ "raw_xml": "\n\t\t\tPOSTNET\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "6ffb2cc2-63fd-4754-b8c3-48828cca8ab1",
+ "x": "0",
+ "y": "530",
+ "width": "100",
+ "height": "20",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 66,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 530), Size: 400x20.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "16fee5fe-1e0f-4f56-b240-64a2ff904744",
+ "x": "130",
+ "y": "530",
+ "width": "400",
+ "height": "20",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 67,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'PDF417', Position: (0, 555), Size: 100x30.",
+ "raw_xml": "\n\t\t\tPDF417\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "c1127dd1-6cde-483c-8b1c-927b5fd285a3",
+ "x": "0",
+ "y": "555",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 68,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 555), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "f8257c9c-cc13-40f4-8c1e-b2dda037fb3d",
+ "x": "130",
+ "y": "555",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 69,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'QRCode', Position: (0, 600), Size: 100x80.",
+ "raw_xml": "\n\t\t\tQRCode\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "c1127dd1-6cde-483c-8b1c-927b5fd285a3",
+ "x": "0",
+ "y": "600",
+ "width": "100",
+ "height": "80",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 70,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 600), Size: 400x80.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "f8257c9c-cc13-40f4-8c1e-b2dda037fb3d",
+ "mode": "Opaque",
+ "x": "130",
+ "y": "600",
+ "width": "400",
+ "height": "80",
+ "forecolor": "#0000FF",
+ "backcolor": "#FFFF00",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 71,
+ "chunk_type": "element_line",
+ "human_description": "'title' band of report 'Barcode4JReport': line element, Position: (0, 0), Size: 515x1.",
+ "raw_xml": "\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "line",
+ "attributes": {
+ "kind": "line",
+ "uuid": "f980135d-c40f-42a7-93cd-d9d82925d5e2",
+ "x": "0",
+ "y": "0",
+ "width": "515",
+ "height": "1"
+ }
+ }
+ },
+ {
+ "chunk_id": 72,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Barcode Sample', Position: (0, 10), Size: 515x30.",
+ "raw_xml": "\n\t\t\tBarcode Sample\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "df70158b-7d84-4c11-ae3e-a7bd238bcf3f",
+ "x": "0",
+ "y": "10",
+ "width": "515",
+ "height": "30",
+ "fontSize": "22.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 73,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'Barcode4JReport': textField element, Expression: \"This sample uses Barcode4J Version 2.0\", Position: (0, 50), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"This sample uses Barcode4J Version 2.0\"\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "50f14e7a-b548-4a5d-9395-a387ea2e7e81",
+ "x": "0",
+ "y": "50",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 74,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'Barcode4JReport': textField element, Expression: \"http://barcode4j.sourceforge.net/\", Position: (0, 70), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "55317c38-260d-4fb5-8c73-693d6425c411",
+ "x": "0",
+ "y": "70",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "linkType": "Reference",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 75,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Code 128', Position: (0, 100), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCode 128\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e3c8aa4c-a571-4288-b6ab-9eca96752649",
+ "x": "0",
+ "y": "100",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 76,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 100), Size: 200x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "17dc8c86-0d9c-4542-b153-71844a13bfe5",
+ "x": "130",
+ "y": "100",
+ "width": "200",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 77,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Codabar', Position: (0, 135), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCodabar\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "038aa527-7c7f-48b5-9547-7ba91470754c",
+ "x": "0",
+ "y": "135",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 78,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 135), Size: 200x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234567890\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "a8dd7541-3d7d-44fc-9281-2bf0bd7ff556",
+ "x": "130",
+ "y": "135",
+ "width": "200",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 79,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'DataMatrix', Position: (0, 170), Size: 100x40.",
+ "raw_xml": "\n\t\t\tDataMatrix\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e819db15-0b87-47b8-8474-cbe17cc7a37a",
+ "x": "0",
+ "y": "170",
+ "width": "100",
+ "height": "40",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 80,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 170), Size: 70x40.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "3955570e-f418-4cf2-9a94-cbed633f8e68",
+ "x": "130",
+ "y": "170",
+ "width": "70",
+ "height": "40",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 81,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-128', Position: (0, 215), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-128\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "079dc326-5af1-4979-927c-3d9d75bfe21b",
+ "x": "0",
+ "y": "215",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 82,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 215), Size: 250x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0101234567890128\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "d5a009ab-4cd5-401e-96c8-9ba64b1fc8e9",
+ "x": "130",
+ "y": "215",
+ "width": "250",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 83,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Code39', Position: (0, 250), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCode39\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "63b7698e-e4a1-4fff-9ea0-a9772dd5b2c4",
+ "x": "0",
+ "y": "250",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 84,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 250), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "7fc9f508-28ba-4b6e-bf7d-2e5e39b98ed8",
+ "x": "130",
+ "y": "250",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 85,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'USPS Intelligent Mail', Position: (0, 285), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUSPS Intelligent Mail\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "8ca7d2e2-c66f-4c25-ab3d-2fb15453b8b0",
+ "x": "0",
+ "y": "285",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 86,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 285), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"00040123456200800001987654321\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "8fdd4d61-26b7-4a0e-b569-18d70d929c10",
+ "x": "130",
+ "y": "285",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 87,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Royal Mail Customer', Position: (0, 320), Size: 100x30.",
+ "raw_xml": "\n\t\t\tRoyal Mail Customer\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "df0b440d-9a4f-49ea-aa1d-c860c2ad3911",
+ "x": "0",
+ "y": "320",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 88,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 320), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "4d2d0a42-1318-4873-8572-3cca99ebde50",
+ "x": "130",
+ "y": "320",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 89,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Interleaved 2 of 5', Position: (0, 355), Size: 100x30.",
+ "raw_xml": "\n\t\t\tInterleaved 2 of 5\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dc520315-36de-4535-9d40-2dc5b96e07bc",
+ "x": "0",
+ "y": "355",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 90,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 355), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "26bab176-29df-4677-ba6a-e8df79eea8e1",
+ "x": "130",
+ "y": "355",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 91,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'UPC-A', Position: (0, 390), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUPC-A\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "ddcf57ba-86e5-4b2c-8293-89cc3c044890",
+ "x": "0",
+ "y": "390",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 92,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 390), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234567890\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "234c47ef-0149-43aa-9595-44eb81a2bd54",
+ "x": "130",
+ "y": "390",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 93,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'UPC-E', Position: (0, 425), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUPC-E\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "1ee2c6c4-54d0-4bae-af20-03970939c63c",
+ "x": "0",
+ "y": "425",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 94,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 425), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234133\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "51b4da4c-b93b-4757-9f6e-8757a6716ea1",
+ "x": "130",
+ "y": "425",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 95,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-13', Position: (0, 460), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-13\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2cb2f39b-a468-4d35-9047-2066f52aec84",
+ "x": "0",
+ "y": "460",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 96,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 460), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"012345678901\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "35e15c85-135e-4e4a-ada4-3caab948d304",
+ "x": "130",
+ "y": "460",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 97,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-8', Position: (0, 495), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-8\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9399924d-03f6-4825-adfd-0a51cca77964",
+ "x": "0",
+ "y": "495",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 98,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 495), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234565\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "00eb6f75-bdf7-408a-ba56-f76ecca2f8e6",
+ "x": "130",
+ "y": "495",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 99,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'POSTNET', Position: (0, 530), Size: 100x20.",
+ "raw_xml": "\n\t\t\tPOSTNET\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "6ffb2cc2-63fd-4754-b8c3-48828cca8ab1",
+ "x": "0",
+ "y": "530",
+ "width": "100",
+ "height": "20",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 100,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 530), Size: 400x20.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "16fee5fe-1e0f-4f56-b240-64a2ff904744",
+ "x": "130",
+ "y": "530",
+ "width": "400",
+ "height": "20",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 101,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'PDF417', Position: (0, 555), Size: 100x30.",
+ "raw_xml": "\n\t\t\tPDF417\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "c1127dd1-6cde-483c-8b1c-927b5fd285a3",
+ "x": "0",
+ "y": "555",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 102,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 555), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "f8257c9c-cc13-40f4-8c1e-b2dda037fb3d",
+ "x": "130",
+ "y": "555",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 103,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'QRCode', Position: (0, 600), Size: 100x80.",
+ "raw_xml": "\n\t\t\tQRCode\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "c1127dd1-6cde-483c-8b1c-927b5fd285a3",
+ "x": "0",
+ "y": "600",
+ "width": "100",
+ "height": "80",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 104,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 600), Size: 400x80.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "f8257c9c-cc13-40f4-8c1e-b2dda037fb3d",
+ "mode": "Opaque",
+ "x": "130",
+ "y": "600",
+ "width": "400",
+ "height": "80",
+ "forecolor": "#0000FF",
+ "backcolor": "#FFFF00",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 105,
+ "chunk_type": "element_line",
+ "human_description": "'title' band of report 'Barcode4JReport': line element, Position: (0, 0), Size: 515x1.",
+ "raw_xml": "\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "line",
+ "attributes": {
+ "kind": "line",
+ "uuid": "f980135d-c40f-42a7-93cd-d9d82925d5e2",
+ "x": "0",
+ "y": "0",
+ "width": "515",
+ "height": "1"
+ }
+ }
+ },
+ {
+ "chunk_id": 106,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Barcode Sample', Position: (0, 10), Size: 515x30.",
+ "raw_xml": "\n\t\t\tBarcode Sample\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "df70158b-7d84-4c11-ae3e-a7bd238bcf3f",
+ "x": "0",
+ "y": "10",
+ "width": "515",
+ "height": "30",
+ "fontSize": "22.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 107,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'Barcode4JReport': textField element, Expression: \"This sample uses Barcode4J Version 2.0\", Position: (0, 50), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"This sample uses Barcode4J Version 2.0\"\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "50f14e7a-b548-4a5d-9395-a387ea2e7e81",
+ "x": "0",
+ "y": "50",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 108,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'Barcode4JReport': textField element, Expression: \"http://barcode4j.sourceforge.net/\", Position: (0, 70), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "55317c38-260d-4fb5-8c73-693d6425c411",
+ "x": "0",
+ "y": "70",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "linkType": "Reference",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 109,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Code 128', Position: (0, 100), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCode 128\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e3c8aa4c-a571-4288-b6ab-9eca96752649",
+ "x": "0",
+ "y": "100",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 110,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 100), Size: 200x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "17dc8c86-0d9c-4542-b153-71844a13bfe5",
+ "x": "130",
+ "y": "100",
+ "width": "200",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 111,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Codabar', Position: (0, 135), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCodabar\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "038aa527-7c7f-48b5-9547-7ba91470754c",
+ "x": "0",
+ "y": "135",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 112,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 135), Size: 200x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234567890\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "a8dd7541-3d7d-44fc-9281-2bf0bd7ff556",
+ "x": "130",
+ "y": "135",
+ "width": "200",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 113,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'DataMatrix', Position: (0, 170), Size: 100x40.",
+ "raw_xml": "\n\t\t\tDataMatrix\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e819db15-0b87-47b8-8474-cbe17cc7a37a",
+ "x": "0",
+ "y": "170",
+ "width": "100",
+ "height": "40",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 114,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 170), Size: 70x40.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "3955570e-f418-4cf2-9a94-cbed633f8e68",
+ "x": "130",
+ "y": "170",
+ "width": "70",
+ "height": "40",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 115,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-128', Position: (0, 215), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-128\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "079dc326-5af1-4979-927c-3d9d75bfe21b",
+ "x": "0",
+ "y": "215",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 116,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 215), Size: 250x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0101234567890128\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "d5a009ab-4cd5-401e-96c8-9ba64b1fc8e9",
+ "x": "130",
+ "y": "215",
+ "width": "250",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 117,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Code39', Position: (0, 250), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCode39\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "63b7698e-e4a1-4fff-9ea0-a9772dd5b2c4",
+ "x": "0",
+ "y": "250",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 118,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 250), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "7fc9f508-28ba-4b6e-bf7d-2e5e39b98ed8",
+ "x": "130",
+ "y": "250",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 119,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'USPS Intelligent Mail', Position: (0, 285), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUSPS Intelligent Mail\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "8ca7d2e2-c66f-4c25-ab3d-2fb15453b8b0",
+ "x": "0",
+ "y": "285",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 120,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 285), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"00040123456200800001987654321\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "8fdd4d61-26b7-4a0e-b569-18d70d929c10",
+ "x": "130",
+ "y": "285",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 121,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Royal Mail Customer', Position: (0, 320), Size: 100x30.",
+ "raw_xml": "\n\t\t\tRoyal Mail Customer\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "df0b440d-9a4f-49ea-aa1d-c860c2ad3911",
+ "x": "0",
+ "y": "320",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 122,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 320), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "4d2d0a42-1318-4873-8572-3cca99ebde50",
+ "x": "130",
+ "y": "320",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 123,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Interleaved 2 of 5', Position: (0, 355), Size: 100x30.",
+ "raw_xml": "\n\t\t\tInterleaved 2 of 5\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dc520315-36de-4535-9d40-2dc5b96e07bc",
+ "x": "0",
+ "y": "355",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 124,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 355), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "26bab176-29df-4677-ba6a-e8df79eea8e1",
+ "x": "130",
+ "y": "355",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 125,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'UPC-A', Position: (0, 390), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUPC-A\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "ddcf57ba-86e5-4b2c-8293-89cc3c044890",
+ "x": "0",
+ "y": "390",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 126,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 390), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234567890\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "234c47ef-0149-43aa-9595-44eb81a2bd54",
+ "x": "130",
+ "y": "390",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 127,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'UPC-E', Position: (0, 425), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUPC-E\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "1ee2c6c4-54d0-4bae-af20-03970939c63c",
+ "x": "0",
+ "y": "425",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 128,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 425), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234133\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "51b4da4c-b93b-4757-9f6e-8757a6716ea1",
+ "x": "130",
+ "y": "425",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 129,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-13', Position: (0, 460), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-13\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2cb2f39b-a468-4d35-9047-2066f52aec84",
+ "x": "0",
+ "y": "460",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 130,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 460), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"012345678901\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "35e15c85-135e-4e4a-ada4-3caab948d304",
+ "x": "130",
+ "y": "460",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 131,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-8', Position: (0, 495), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-8\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9399924d-03f6-4825-adfd-0a51cca77964",
+ "x": "0",
+ "y": "495",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 132,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 495), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234565\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "00eb6f75-bdf7-408a-ba56-f76ecca2f8e6",
+ "x": "130",
+ "y": "495",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 133,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'POSTNET', Position: (0, 530), Size: 100x20.",
+ "raw_xml": "\n\t\t\tPOSTNET\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "6ffb2cc2-63fd-4754-b8c3-48828cca8ab1",
+ "x": "0",
+ "y": "530",
+ "width": "100",
+ "height": "20",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 134,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 530), Size: 400x20.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "16fee5fe-1e0f-4f56-b240-64a2ff904744",
+ "x": "130",
+ "y": "530",
+ "width": "400",
+ "height": "20",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 135,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'PDF417', Position: (0, 555), Size: 100x30.",
+ "raw_xml": "\n\t\t\tPDF417\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "c1127dd1-6cde-483c-8b1c-927b5fd285a3",
+ "x": "0",
+ "y": "555",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 136,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 555), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "f8257c9c-cc13-40f4-8c1e-b2dda037fb3d",
+ "x": "130",
+ "y": "555",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 137,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'QRCode', Position: (0, 600), Size: 100x80.",
+ "raw_xml": "\n\t\t\tQRCode\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "c1127dd1-6cde-483c-8b1c-927b5fd285a3",
+ "x": "0",
+ "y": "600",
+ "width": "100",
+ "height": "80",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 138,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 600), Size: 400x80.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "f8257c9c-cc13-40f4-8c1e-b2dda037fb3d",
+ "mode": "Opaque",
+ "x": "130",
+ "y": "600",
+ "width": "400",
+ "height": "80",
+ "forecolor": "#0000FF",
+ "backcolor": "#FFFF00",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 139,
+ "chunk_type": "element_line",
+ "human_description": "'title' band of report 'Barcode4JReport': line element, Position: (0, 0), Size: 515x1.",
+ "raw_xml": "\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "line",
+ "attributes": {
+ "kind": "line",
+ "uuid": "f980135d-c40f-42a7-93cd-d9d82925d5e2",
+ "x": "0",
+ "y": "0",
+ "width": "515",
+ "height": "1"
+ }
+ }
+ },
+ {
+ "chunk_id": 140,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Barcode Sample', Position: (0, 10), Size: 515x30.",
+ "raw_xml": "\n\t\t\tBarcode Sample\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "df70158b-7d84-4c11-ae3e-a7bd238bcf3f",
+ "x": "0",
+ "y": "10",
+ "width": "515",
+ "height": "30",
+ "fontSize": "22.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 141,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'Barcode4JReport': textField element, Expression: \"This sample uses Barcode4J Version 2.0\", Position: (0, 50), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"This sample uses Barcode4J Version 2.0\"\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "50f14e7a-b548-4a5d-9395-a387ea2e7e81",
+ "x": "0",
+ "y": "50",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 142,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'Barcode4JReport': textField element, Expression: \"http://barcode4j.sourceforge.net/\", Position: (0, 70), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "55317c38-260d-4fb5-8c73-693d6425c411",
+ "x": "0",
+ "y": "70",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "linkType": "Reference",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 143,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Code 128', Position: (0, 100), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCode 128\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e3c8aa4c-a571-4288-b6ab-9eca96752649",
+ "x": "0",
+ "y": "100",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 144,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 100), Size: 200x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "17dc8c86-0d9c-4542-b153-71844a13bfe5",
+ "x": "130",
+ "y": "100",
+ "width": "200",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 145,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Codabar', Position: (0, 135), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCodabar\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "038aa527-7c7f-48b5-9547-7ba91470754c",
+ "x": "0",
+ "y": "135",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 146,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 135), Size: 200x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234567890\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "a8dd7541-3d7d-44fc-9281-2bf0bd7ff556",
+ "x": "130",
+ "y": "135",
+ "width": "200",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 147,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'DataMatrix', Position: (0, 170), Size: 100x40.",
+ "raw_xml": "\n\t\t\tDataMatrix\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e819db15-0b87-47b8-8474-cbe17cc7a37a",
+ "x": "0",
+ "y": "170",
+ "width": "100",
+ "height": "40",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 148,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 170), Size: 70x40.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "3955570e-f418-4cf2-9a94-cbed633f8e68",
+ "x": "130",
+ "y": "170",
+ "width": "70",
+ "height": "40",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 149,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-128', Position: (0, 215), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-128\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "079dc326-5af1-4979-927c-3d9d75bfe21b",
+ "x": "0",
+ "y": "215",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 150,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 215), Size: 250x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0101234567890128\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "d5a009ab-4cd5-401e-96c8-9ba64b1fc8e9",
+ "x": "130",
+ "y": "215",
+ "width": "250",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 151,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Code39', Position: (0, 250), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCode39\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "63b7698e-e4a1-4fff-9ea0-a9772dd5b2c4",
+ "x": "0",
+ "y": "250",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 152,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 250), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "7fc9f508-28ba-4b6e-bf7d-2e5e39b98ed8",
+ "x": "130",
+ "y": "250",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 153,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'USPS Intelligent Mail', Position: (0, 285), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUSPS Intelligent Mail\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "8ca7d2e2-c66f-4c25-ab3d-2fb15453b8b0",
+ "x": "0",
+ "y": "285",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 154,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 285), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"00040123456200800001987654321\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "8fdd4d61-26b7-4a0e-b569-18d70d929c10",
+ "x": "130",
+ "y": "285",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 155,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Royal Mail Customer', Position: (0, 320), Size: 100x30.",
+ "raw_xml": "\n\t\t\tRoyal Mail Customer\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "df0b440d-9a4f-49ea-aa1d-c860c2ad3911",
+ "x": "0",
+ "y": "320",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 156,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 320), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "4d2d0a42-1318-4873-8572-3cca99ebde50",
+ "x": "130",
+ "y": "320",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 157,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Interleaved 2 of 5', Position: (0, 355), Size: 100x30.",
+ "raw_xml": "\n\t\t\tInterleaved 2 of 5\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dc520315-36de-4535-9d40-2dc5b96e07bc",
+ "x": "0",
+ "y": "355",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 158,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 355), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "26bab176-29df-4677-ba6a-e8df79eea8e1",
+ "x": "130",
+ "y": "355",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 159,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'UPC-A', Position: (0, 390), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUPC-A\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "ddcf57ba-86e5-4b2c-8293-89cc3c044890",
+ "x": "0",
+ "y": "390",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 160,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 390), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234567890\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "234c47ef-0149-43aa-9595-44eb81a2bd54",
+ "x": "130",
+ "y": "390",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 161,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'UPC-E', Position: (0, 425), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUPC-E\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "1ee2c6c4-54d0-4bae-af20-03970939c63c",
+ "x": "0",
+ "y": "425",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 162,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 425), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234133\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "51b4da4c-b93b-4757-9f6e-8757a6716ea1",
+ "x": "130",
+ "y": "425",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 163,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-13', Position: (0, 460), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-13\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2cb2f39b-a468-4d35-9047-2066f52aec84",
+ "x": "0",
+ "y": "460",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 164,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 460), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"012345678901\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "35e15c85-135e-4e4a-ada4-3caab948d304",
+ "x": "130",
+ "y": "460",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 165,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-8', Position: (0, 495), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-8\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9399924d-03f6-4825-adfd-0a51cca77964",
+ "x": "0",
+ "y": "495",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 166,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 495), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234565\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "00eb6f75-bdf7-408a-ba56-f76ecca2f8e6",
+ "x": "130",
+ "y": "495",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 167,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'POSTNET', Position: (0, 530), Size: 100x20.",
+ "raw_xml": "\n\t\t\tPOSTNET\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "6ffb2cc2-63fd-4754-b8c3-48828cca8ab1",
+ "x": "0",
+ "y": "530",
+ "width": "100",
+ "height": "20",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 168,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 530), Size: 400x20.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "16fee5fe-1e0f-4f56-b240-64a2ff904744",
+ "x": "130",
+ "y": "530",
+ "width": "400",
+ "height": "20",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 169,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'PDF417', Position: (0, 555), Size: 100x30.",
+ "raw_xml": "\n\t\t\tPDF417\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "c1127dd1-6cde-483c-8b1c-927b5fd285a3",
+ "x": "0",
+ "y": "555",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 170,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 555), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "f8257c9c-cc13-40f4-8c1e-b2dda037fb3d",
+ "x": "130",
+ "y": "555",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 171,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'QRCode', Position: (0, 600), Size: 100x80.",
+ "raw_xml": "\n\t\t\tQRCode\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "c1127dd1-6cde-483c-8b1c-927b5fd285a3",
+ "x": "0",
+ "y": "600",
+ "width": "100",
+ "height": "80",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 172,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 600), Size: 400x80.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "f8257c9c-cc13-40f4-8c1e-b2dda037fb3d",
+ "mode": "Opaque",
+ "x": "130",
+ "y": "600",
+ "width": "400",
+ "height": "80",
+ "forecolor": "#0000FF",
+ "backcolor": "#FFFF00",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 173,
+ "chunk_type": "element_line",
+ "human_description": "'title' band of report 'Barcode4JReport': line element, Position: (0, 0), Size: 515x1.",
+ "raw_xml": "\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "line",
+ "attributes": {
+ "kind": "line",
+ "uuid": "f980135d-c40f-42a7-93cd-d9d82925d5e2",
+ "x": "0",
+ "y": "0",
+ "width": "515",
+ "height": "1"
+ }
+ }
+ },
+ {
+ "chunk_id": 174,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Barcode Sample', Position: (0, 10), Size: 515x30.",
+ "raw_xml": "\n\t\t\tBarcode Sample\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "df70158b-7d84-4c11-ae3e-a7bd238bcf3f",
+ "x": "0",
+ "y": "10",
+ "width": "515",
+ "height": "30",
+ "fontSize": "22.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 175,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'Barcode4JReport': textField element, Expression: \"This sample uses Barcode4J Version 2.0\", Position: (0, 50), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"This sample uses Barcode4J Version 2.0\"\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "50f14e7a-b548-4a5d-9395-a387ea2e7e81",
+ "x": "0",
+ "y": "50",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 176,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'Barcode4JReport': textField element, Expression: \"http://barcode4j.sourceforge.net/\", Position: (0, 70), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "55317c38-260d-4fb5-8c73-693d6425c411",
+ "x": "0",
+ "y": "70",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "linkType": "Reference",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 177,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Code 128', Position: (0, 100), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCode 128\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e3c8aa4c-a571-4288-b6ab-9eca96752649",
+ "x": "0",
+ "y": "100",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 178,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 100), Size: 200x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "17dc8c86-0d9c-4542-b153-71844a13bfe5",
+ "x": "130",
+ "y": "100",
+ "width": "200",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 179,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Codabar', Position: (0, 135), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCodabar\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "038aa527-7c7f-48b5-9547-7ba91470754c",
+ "x": "0",
+ "y": "135",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 180,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 135), Size: 200x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234567890\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "a8dd7541-3d7d-44fc-9281-2bf0bd7ff556",
+ "x": "130",
+ "y": "135",
+ "width": "200",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 181,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'DataMatrix', Position: (0, 170), Size: 100x40.",
+ "raw_xml": "\n\t\t\tDataMatrix\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e819db15-0b87-47b8-8474-cbe17cc7a37a",
+ "x": "0",
+ "y": "170",
+ "width": "100",
+ "height": "40",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 182,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 170), Size: 70x40.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "3955570e-f418-4cf2-9a94-cbed633f8e68",
+ "x": "130",
+ "y": "170",
+ "width": "70",
+ "height": "40",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 183,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-128', Position: (0, 215), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-128\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "079dc326-5af1-4979-927c-3d9d75bfe21b",
+ "x": "0",
+ "y": "215",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 184,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 215), Size: 250x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0101234567890128\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "d5a009ab-4cd5-401e-96c8-9ba64b1fc8e9",
+ "x": "130",
+ "y": "215",
+ "width": "250",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 185,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Code39', Position: (0, 250), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCode39\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "63b7698e-e4a1-4fff-9ea0-a9772dd5b2c4",
+ "x": "0",
+ "y": "250",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 186,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 250), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "7fc9f508-28ba-4b6e-bf7d-2e5e39b98ed8",
+ "x": "130",
+ "y": "250",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 187,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'USPS Intelligent Mail', Position: (0, 285), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUSPS Intelligent Mail\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "8ca7d2e2-c66f-4c25-ab3d-2fb15453b8b0",
+ "x": "0",
+ "y": "285",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 188,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 285), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"00040123456200800001987654321\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "8fdd4d61-26b7-4a0e-b569-18d70d929c10",
+ "x": "130",
+ "y": "285",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 189,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Royal Mail Customer', Position: (0, 320), Size: 100x30.",
+ "raw_xml": "\n\t\t\tRoyal Mail Customer\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "df0b440d-9a4f-49ea-aa1d-c860c2ad3911",
+ "x": "0",
+ "y": "320",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 190,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 320), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "4d2d0a42-1318-4873-8572-3cca99ebde50",
+ "x": "130",
+ "y": "320",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 191,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Interleaved 2 of 5', Position: (0, 355), Size: 100x30.",
+ "raw_xml": "\n\t\t\tInterleaved 2 of 5\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dc520315-36de-4535-9d40-2dc5b96e07bc",
+ "x": "0",
+ "y": "355",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 192,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 355), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "26bab176-29df-4677-ba6a-e8df79eea8e1",
+ "x": "130",
+ "y": "355",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 193,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'UPC-A', Position: (0, 390), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUPC-A\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "ddcf57ba-86e5-4b2c-8293-89cc3c044890",
+ "x": "0",
+ "y": "390",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 194,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 390), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234567890\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "234c47ef-0149-43aa-9595-44eb81a2bd54",
+ "x": "130",
+ "y": "390",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 195,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'UPC-E', Position: (0, 425), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUPC-E\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "1ee2c6c4-54d0-4bae-af20-03970939c63c",
+ "x": "0",
+ "y": "425",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 196,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 425), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234133\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "51b4da4c-b93b-4757-9f6e-8757a6716ea1",
+ "x": "130",
+ "y": "425",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 197,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-13', Position: (0, 460), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-13\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2cb2f39b-a468-4d35-9047-2066f52aec84",
+ "x": "0",
+ "y": "460",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 198,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 460), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"012345678901\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "35e15c85-135e-4e4a-ada4-3caab948d304",
+ "x": "130",
+ "y": "460",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 199,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-8', Position: (0, 495), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-8\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9399924d-03f6-4825-adfd-0a51cca77964",
+ "x": "0",
+ "y": "495",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 200,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 495), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234565\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "00eb6f75-bdf7-408a-ba56-f76ecca2f8e6",
+ "x": "130",
+ "y": "495",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 201,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'POSTNET', Position: (0, 530), Size: 100x20.",
+ "raw_xml": "\n\t\t\tPOSTNET\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "6ffb2cc2-63fd-4754-b8c3-48828cca8ab1",
+ "x": "0",
+ "y": "530",
+ "width": "100",
+ "height": "20",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 202,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 530), Size: 400x20.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "16fee5fe-1e0f-4f56-b240-64a2ff904744",
+ "x": "130",
+ "y": "530",
+ "width": "400",
+ "height": "20",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 203,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'PDF417', Position: (0, 555), Size: 100x30.",
+ "raw_xml": "\n\t\t\tPDF417\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "c1127dd1-6cde-483c-8b1c-927b5fd285a3",
+ "x": "0",
+ "y": "555",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 204,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 555), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "f8257c9c-cc13-40f4-8c1e-b2dda037fb3d",
+ "x": "130",
+ "y": "555",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 205,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'QRCode', Position: (0, 600), Size: 100x80.",
+ "raw_xml": "\n\t\t\tQRCode\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "c1127dd1-6cde-483c-8b1c-927b5fd285a3",
+ "x": "0",
+ "y": "600",
+ "width": "100",
+ "height": "80",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 206,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 600), Size: 400x80.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "f8257c9c-cc13-40f4-8c1e-b2dda037fb3d",
+ "mode": "Opaque",
+ "x": "130",
+ "y": "600",
+ "width": "400",
+ "height": "80",
+ "forecolor": "#0000FF",
+ "backcolor": "#FFFF00",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 207,
+ "chunk_type": "element_line",
+ "human_description": "'title' band of report 'Barcode4JReport': line element, Position: (0, 0), Size: 515x1.",
+ "raw_xml": "\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "line",
+ "attributes": {
+ "kind": "line",
+ "uuid": "f980135d-c40f-42a7-93cd-d9d82925d5e2",
+ "x": "0",
+ "y": "0",
+ "width": "515",
+ "height": "1"
+ }
+ }
+ },
+ {
+ "chunk_id": 208,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Barcode Sample', Position: (0, 10), Size: 515x30.",
+ "raw_xml": "\n\t\t\tBarcode Sample\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "df70158b-7d84-4c11-ae3e-a7bd238bcf3f",
+ "x": "0",
+ "y": "10",
+ "width": "515",
+ "height": "30",
+ "fontSize": "22.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 209,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'Barcode4JReport': textField element, Expression: \"This sample uses Barcode4J Version 2.0\", Position: (0, 50), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"This sample uses Barcode4J Version 2.0\"\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "50f14e7a-b548-4a5d-9395-a387ea2e7e81",
+ "x": "0",
+ "y": "50",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 210,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'Barcode4JReport': textField element, Expression: \"http://barcode4j.sourceforge.net/\", Position: (0, 70), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "55317c38-260d-4fb5-8c73-693d6425c411",
+ "x": "0",
+ "y": "70",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "linkType": "Reference",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 211,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Code 128', Position: (0, 100), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCode 128\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e3c8aa4c-a571-4288-b6ab-9eca96752649",
+ "x": "0",
+ "y": "100",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 212,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 100), Size: 200x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "17dc8c86-0d9c-4542-b153-71844a13bfe5",
+ "x": "130",
+ "y": "100",
+ "width": "200",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 213,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Codabar', Position: (0, 135), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCodabar\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "038aa527-7c7f-48b5-9547-7ba91470754c",
+ "x": "0",
+ "y": "135",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 214,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 135), Size: 200x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234567890\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "a8dd7541-3d7d-44fc-9281-2bf0bd7ff556",
+ "x": "130",
+ "y": "135",
+ "width": "200",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 215,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'DataMatrix', Position: (0, 170), Size: 100x40.",
+ "raw_xml": "\n\t\t\tDataMatrix\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e819db15-0b87-47b8-8474-cbe17cc7a37a",
+ "x": "0",
+ "y": "170",
+ "width": "100",
+ "height": "40",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 216,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 170), Size: 70x40.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "3955570e-f418-4cf2-9a94-cbed633f8e68",
+ "x": "130",
+ "y": "170",
+ "width": "70",
+ "height": "40",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 217,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-128', Position: (0, 215), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-128\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "079dc326-5af1-4979-927c-3d9d75bfe21b",
+ "x": "0",
+ "y": "215",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 218,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 215), Size: 250x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0101234567890128\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "d5a009ab-4cd5-401e-96c8-9ba64b1fc8e9",
+ "x": "130",
+ "y": "215",
+ "width": "250",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 219,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Code39', Position: (0, 250), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCode39\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "63b7698e-e4a1-4fff-9ea0-a9772dd5b2c4",
+ "x": "0",
+ "y": "250",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 220,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 250), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "7fc9f508-28ba-4b6e-bf7d-2e5e39b98ed8",
+ "x": "130",
+ "y": "250",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 221,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'USPS Intelligent Mail', Position: (0, 285), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUSPS Intelligent Mail\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "8ca7d2e2-c66f-4c25-ab3d-2fb15453b8b0",
+ "x": "0",
+ "y": "285",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 222,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 285), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"00040123456200800001987654321\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "8fdd4d61-26b7-4a0e-b569-18d70d929c10",
+ "x": "130",
+ "y": "285",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 223,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Royal Mail Customer', Position: (0, 320), Size: 100x30.",
+ "raw_xml": "\n\t\t\tRoyal Mail Customer\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "df0b440d-9a4f-49ea-aa1d-c860c2ad3911",
+ "x": "0",
+ "y": "320",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 224,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 320), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "4d2d0a42-1318-4873-8572-3cca99ebde50",
+ "x": "130",
+ "y": "320",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 225,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Interleaved 2 of 5', Position: (0, 355), Size: 100x30.",
+ "raw_xml": "\n\t\t\tInterleaved 2 of 5\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dc520315-36de-4535-9d40-2dc5b96e07bc",
+ "x": "0",
+ "y": "355",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 226,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 355), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "26bab176-29df-4677-ba6a-e8df79eea8e1",
+ "x": "130",
+ "y": "355",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 227,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'UPC-A', Position: (0, 390), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUPC-A\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "ddcf57ba-86e5-4b2c-8293-89cc3c044890",
+ "x": "0",
+ "y": "390",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 228,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 390), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234567890\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "234c47ef-0149-43aa-9595-44eb81a2bd54",
+ "x": "130",
+ "y": "390",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 229,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'UPC-E', Position: (0, 425), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUPC-E\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "1ee2c6c4-54d0-4bae-af20-03970939c63c",
+ "x": "0",
+ "y": "425",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 230,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 425), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234133\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "51b4da4c-b93b-4757-9f6e-8757a6716ea1",
+ "x": "130",
+ "y": "425",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 231,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-13', Position: (0, 460), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-13\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2cb2f39b-a468-4d35-9047-2066f52aec84",
+ "x": "0",
+ "y": "460",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 232,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 460), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"012345678901\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "35e15c85-135e-4e4a-ada4-3caab948d304",
+ "x": "130",
+ "y": "460",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 233,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-8', Position: (0, 495), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-8\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9399924d-03f6-4825-adfd-0a51cca77964",
+ "x": "0",
+ "y": "495",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 234,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 495), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234565\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "00eb6f75-bdf7-408a-ba56-f76ecca2f8e6",
+ "x": "130",
+ "y": "495",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 235,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'POSTNET', Position: (0, 530), Size: 100x20.",
+ "raw_xml": "\n\t\t\tPOSTNET\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "6ffb2cc2-63fd-4754-b8c3-48828cca8ab1",
+ "x": "0",
+ "y": "530",
+ "width": "100",
+ "height": "20",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 236,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 530), Size: 400x20.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "16fee5fe-1e0f-4f56-b240-64a2ff904744",
+ "x": "130",
+ "y": "530",
+ "width": "400",
+ "height": "20",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 237,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'PDF417', Position: (0, 555), Size: 100x30.",
+ "raw_xml": "\n\t\t\tPDF417\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "c1127dd1-6cde-483c-8b1c-927b5fd285a3",
+ "x": "0",
+ "y": "555",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 238,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 555), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "f8257c9c-cc13-40f4-8c1e-b2dda037fb3d",
+ "x": "130",
+ "y": "555",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 239,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'QRCode', Position: (0, 600), Size: 100x80.",
+ "raw_xml": "\n\t\t\tQRCode\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "c1127dd1-6cde-483c-8b1c-927b5fd285a3",
+ "x": "0",
+ "y": "600",
+ "width": "100",
+ "height": "80",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 240,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 600), Size: 400x80.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "f8257c9c-cc13-40f4-8c1e-b2dda037fb3d",
+ "mode": "Opaque",
+ "x": "130",
+ "y": "600",
+ "width": "400",
+ "height": "80",
+ "forecolor": "#0000FF",
+ "backcolor": "#FFFF00",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 241,
+ "chunk_type": "element_line",
+ "human_description": "'title' band of report 'Barcode4JReport': line element, Position: (0, 0), Size: 515x1.",
+ "raw_xml": "\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "line",
+ "attributes": {
+ "kind": "line",
+ "uuid": "f980135d-c40f-42a7-93cd-d9d82925d5e2",
+ "x": "0",
+ "y": "0",
+ "width": "515",
+ "height": "1"
+ }
+ }
+ },
+ {
+ "chunk_id": 242,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Barcode Sample', Position: (0, 10), Size: 515x30.",
+ "raw_xml": "\n\t\t\tBarcode Sample\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "df70158b-7d84-4c11-ae3e-a7bd238bcf3f",
+ "x": "0",
+ "y": "10",
+ "width": "515",
+ "height": "30",
+ "fontSize": "22.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 243,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'Barcode4JReport': textField element, Expression: \"This sample uses Barcode4J Version 2.0\", Position: (0, 50), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"This sample uses Barcode4J Version 2.0\"\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "50f14e7a-b548-4a5d-9395-a387ea2e7e81",
+ "x": "0",
+ "y": "50",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 244,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'Barcode4JReport': textField element, Expression: \"http://barcode4j.sourceforge.net/\", Position: (0, 70), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "55317c38-260d-4fb5-8c73-693d6425c411",
+ "x": "0",
+ "y": "70",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "linkType": "Reference",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 245,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Code 128', Position: (0, 100), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCode 128\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e3c8aa4c-a571-4288-b6ab-9eca96752649",
+ "x": "0",
+ "y": "100",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 246,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 100), Size: 200x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "17dc8c86-0d9c-4542-b153-71844a13bfe5",
+ "x": "130",
+ "y": "100",
+ "width": "200",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 247,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Codabar', Position: (0, 135), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCodabar\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "038aa527-7c7f-48b5-9547-7ba91470754c",
+ "x": "0",
+ "y": "135",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 248,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 135), Size: 200x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234567890\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "a8dd7541-3d7d-44fc-9281-2bf0bd7ff556",
+ "x": "130",
+ "y": "135",
+ "width": "200",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 249,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'DataMatrix', Position: (0, 170), Size: 100x40.",
+ "raw_xml": "\n\t\t\tDataMatrix\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e819db15-0b87-47b8-8474-cbe17cc7a37a",
+ "x": "0",
+ "y": "170",
+ "width": "100",
+ "height": "40",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 250,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 170), Size: 70x40.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "3955570e-f418-4cf2-9a94-cbed633f8e68",
+ "x": "130",
+ "y": "170",
+ "width": "70",
+ "height": "40",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 251,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-128', Position: (0, 215), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-128\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "079dc326-5af1-4979-927c-3d9d75bfe21b",
+ "x": "0",
+ "y": "215",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 252,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 215), Size: 250x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0101234567890128\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "d5a009ab-4cd5-401e-96c8-9ba64b1fc8e9",
+ "x": "130",
+ "y": "215",
+ "width": "250",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 253,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Code39', Position: (0, 250), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCode39\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "63b7698e-e4a1-4fff-9ea0-a9772dd5b2c4",
+ "x": "0",
+ "y": "250",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 254,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 250), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "7fc9f508-28ba-4b6e-bf7d-2e5e39b98ed8",
+ "x": "130",
+ "y": "250",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 255,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'USPS Intelligent Mail', Position: (0, 285), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUSPS Intelligent Mail\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "8ca7d2e2-c66f-4c25-ab3d-2fb15453b8b0",
+ "x": "0",
+ "y": "285",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 256,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 285), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"00040123456200800001987654321\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "8fdd4d61-26b7-4a0e-b569-18d70d929c10",
+ "x": "130",
+ "y": "285",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 257,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Royal Mail Customer', Position: (0, 320), Size: 100x30.",
+ "raw_xml": "\n\t\t\tRoyal Mail Customer\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "df0b440d-9a4f-49ea-aa1d-c860c2ad3911",
+ "x": "0",
+ "y": "320",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 258,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 320), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "4d2d0a42-1318-4873-8572-3cca99ebde50",
+ "x": "130",
+ "y": "320",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 259,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Interleaved 2 of 5', Position: (0, 355), Size: 100x30.",
+ "raw_xml": "\n\t\t\tInterleaved 2 of 5\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dc520315-36de-4535-9d40-2dc5b96e07bc",
+ "x": "0",
+ "y": "355",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 260,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 355), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "26bab176-29df-4677-ba6a-e8df79eea8e1",
+ "x": "130",
+ "y": "355",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 261,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'UPC-A', Position: (0, 390), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUPC-A\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "ddcf57ba-86e5-4b2c-8293-89cc3c044890",
+ "x": "0",
+ "y": "390",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 262,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 390), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234567890\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "234c47ef-0149-43aa-9595-44eb81a2bd54",
+ "x": "130",
+ "y": "390",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 263,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'UPC-E', Position: (0, 425), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUPC-E\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "1ee2c6c4-54d0-4bae-af20-03970939c63c",
+ "x": "0",
+ "y": "425",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 264,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 425), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234133\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "51b4da4c-b93b-4757-9f6e-8757a6716ea1",
+ "x": "130",
+ "y": "425",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 265,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-13', Position: (0, 460), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-13\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2cb2f39b-a468-4d35-9047-2066f52aec84",
+ "x": "0",
+ "y": "460",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 266,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 460), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"012345678901\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "35e15c85-135e-4e4a-ada4-3caab948d304",
+ "x": "130",
+ "y": "460",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 267,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-8', Position: (0, 495), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-8\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9399924d-03f6-4825-adfd-0a51cca77964",
+ "x": "0",
+ "y": "495",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 268,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 495), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234565\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "00eb6f75-bdf7-408a-ba56-f76ecca2f8e6",
+ "x": "130",
+ "y": "495",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 269,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'POSTNET', Position: (0, 530), Size: 100x20.",
+ "raw_xml": "\n\t\t\tPOSTNET\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "6ffb2cc2-63fd-4754-b8c3-48828cca8ab1",
+ "x": "0",
+ "y": "530",
+ "width": "100",
+ "height": "20",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 270,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 530), Size: 400x20.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "16fee5fe-1e0f-4f56-b240-64a2ff904744",
+ "x": "130",
+ "y": "530",
+ "width": "400",
+ "height": "20",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 271,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'PDF417', Position: (0, 555), Size: 100x30.",
+ "raw_xml": "\n\t\t\tPDF417\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "c1127dd1-6cde-483c-8b1c-927b5fd285a3",
+ "x": "0",
+ "y": "555",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 272,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 555), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "f8257c9c-cc13-40f4-8c1e-b2dda037fb3d",
+ "x": "130",
+ "y": "555",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 273,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'QRCode', Position: (0, 600), Size: 100x80.",
+ "raw_xml": "\n\t\t\tQRCode\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "c1127dd1-6cde-483c-8b1c-927b5fd285a3",
+ "x": "0",
+ "y": "600",
+ "width": "100",
+ "height": "80",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 274,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 600), Size: 400x80.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "f8257c9c-cc13-40f4-8c1e-b2dda037fb3d",
+ "mode": "Opaque",
+ "x": "130",
+ "y": "600",
+ "width": "400",
+ "height": "80",
+ "forecolor": "#0000FF",
+ "backcolor": "#FFFF00",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 275,
+ "chunk_type": "element_line",
+ "human_description": "'title' band of report 'Barcode4JReport': line element, Position: (0, 0), Size: 515x1.",
+ "raw_xml": "\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "line",
+ "attributes": {
+ "kind": "line",
+ "uuid": "f980135d-c40f-42a7-93cd-d9d82925d5e2",
+ "x": "0",
+ "y": "0",
+ "width": "515",
+ "height": "1"
+ }
+ }
+ },
+ {
+ "chunk_id": 276,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Barcode Sample', Position: (0, 10), Size: 515x30.",
+ "raw_xml": "\n\t\t\tBarcode Sample\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "df70158b-7d84-4c11-ae3e-a7bd238bcf3f",
+ "x": "0",
+ "y": "10",
+ "width": "515",
+ "height": "30",
+ "fontSize": "22.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 277,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'Barcode4JReport': textField element, Expression: \"This sample uses Barcode4J Version 2.0\", Position: (0, 50), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"This sample uses Barcode4J Version 2.0\"\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "50f14e7a-b548-4a5d-9395-a387ea2e7e81",
+ "x": "0",
+ "y": "50",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 278,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'Barcode4JReport': textField element, Expression: \"http://barcode4j.sourceforge.net/\", Position: (0, 70), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "55317c38-260d-4fb5-8c73-693d6425c411",
+ "x": "0",
+ "y": "70",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "linkType": "Reference",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 279,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Code 128', Position: (0, 100), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCode 128\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e3c8aa4c-a571-4288-b6ab-9eca96752649",
+ "x": "0",
+ "y": "100",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 280,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 100), Size: 200x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "17dc8c86-0d9c-4542-b153-71844a13bfe5",
+ "x": "130",
+ "y": "100",
+ "width": "200",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 281,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Codabar', Position: (0, 135), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCodabar\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "038aa527-7c7f-48b5-9547-7ba91470754c",
+ "x": "0",
+ "y": "135",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 282,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 135), Size: 200x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234567890\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "a8dd7541-3d7d-44fc-9281-2bf0bd7ff556",
+ "x": "130",
+ "y": "135",
+ "width": "200",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 283,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'DataMatrix', Position: (0, 170), Size: 100x40.",
+ "raw_xml": "\n\t\t\tDataMatrix\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e819db15-0b87-47b8-8474-cbe17cc7a37a",
+ "x": "0",
+ "y": "170",
+ "width": "100",
+ "height": "40",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 284,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 170), Size: 70x40.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "3955570e-f418-4cf2-9a94-cbed633f8e68",
+ "x": "130",
+ "y": "170",
+ "width": "70",
+ "height": "40",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 285,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-128', Position: (0, 215), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-128\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "079dc326-5af1-4979-927c-3d9d75bfe21b",
+ "x": "0",
+ "y": "215",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 286,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 215), Size: 250x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0101234567890128\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "d5a009ab-4cd5-401e-96c8-9ba64b1fc8e9",
+ "x": "130",
+ "y": "215",
+ "width": "250",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 287,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Code39', Position: (0, 250), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCode39\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "63b7698e-e4a1-4fff-9ea0-a9772dd5b2c4",
+ "x": "0",
+ "y": "250",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 288,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 250), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "7fc9f508-28ba-4b6e-bf7d-2e5e39b98ed8",
+ "x": "130",
+ "y": "250",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 289,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'USPS Intelligent Mail', Position: (0, 285), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUSPS Intelligent Mail\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "8ca7d2e2-c66f-4c25-ab3d-2fb15453b8b0",
+ "x": "0",
+ "y": "285",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 290,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 285), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"00040123456200800001987654321\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "8fdd4d61-26b7-4a0e-b569-18d70d929c10",
+ "x": "130",
+ "y": "285",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 291,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Royal Mail Customer', Position: (0, 320), Size: 100x30.",
+ "raw_xml": "\n\t\t\tRoyal Mail Customer\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "df0b440d-9a4f-49ea-aa1d-c860c2ad3911",
+ "x": "0",
+ "y": "320",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 292,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 320), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "4d2d0a42-1318-4873-8572-3cca99ebde50",
+ "x": "130",
+ "y": "320",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 293,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Interleaved 2 of 5', Position: (0, 355), Size: 100x30.",
+ "raw_xml": "\n\t\t\tInterleaved 2 of 5\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dc520315-36de-4535-9d40-2dc5b96e07bc",
+ "x": "0",
+ "y": "355",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 294,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 355), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "26bab176-29df-4677-ba6a-e8df79eea8e1",
+ "x": "130",
+ "y": "355",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 295,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'UPC-A', Position: (0, 390), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUPC-A\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "ddcf57ba-86e5-4b2c-8293-89cc3c044890",
+ "x": "0",
+ "y": "390",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 296,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 390), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234567890\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "234c47ef-0149-43aa-9595-44eb81a2bd54",
+ "x": "130",
+ "y": "390",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 297,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'UPC-E', Position: (0, 425), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUPC-E\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "1ee2c6c4-54d0-4bae-af20-03970939c63c",
+ "x": "0",
+ "y": "425",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 298,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 425), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234133\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "51b4da4c-b93b-4757-9f6e-8757a6716ea1",
+ "x": "130",
+ "y": "425",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 299,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-13', Position: (0, 460), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-13\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2cb2f39b-a468-4d35-9047-2066f52aec84",
+ "x": "0",
+ "y": "460",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 300,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 460), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"012345678901\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "35e15c85-135e-4e4a-ada4-3caab948d304",
+ "x": "130",
+ "y": "460",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 301,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-8', Position: (0, 495), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-8\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9399924d-03f6-4825-adfd-0a51cca77964",
+ "x": "0",
+ "y": "495",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 302,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 495), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234565\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "00eb6f75-bdf7-408a-ba56-f76ecca2f8e6",
+ "x": "130",
+ "y": "495",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 303,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'POSTNET', Position: (0, 530), Size: 100x20.",
+ "raw_xml": "\n\t\t\tPOSTNET\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "6ffb2cc2-63fd-4754-b8c3-48828cca8ab1",
+ "x": "0",
+ "y": "530",
+ "width": "100",
+ "height": "20",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 304,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 530), Size: 400x20.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "16fee5fe-1e0f-4f56-b240-64a2ff904744",
+ "x": "130",
+ "y": "530",
+ "width": "400",
+ "height": "20",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 305,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'PDF417', Position: (0, 555), Size: 100x30.",
+ "raw_xml": "\n\t\t\tPDF417\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "c1127dd1-6cde-483c-8b1c-927b5fd285a3",
+ "x": "0",
+ "y": "555",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 306,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 555), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "f8257c9c-cc13-40f4-8c1e-b2dda037fb3d",
+ "x": "130",
+ "y": "555",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 307,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'QRCode', Position: (0, 600), Size: 100x80.",
+ "raw_xml": "\n\t\t\tQRCode\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "c1127dd1-6cde-483c-8b1c-927b5fd285a3",
+ "x": "0",
+ "y": "600",
+ "width": "100",
+ "height": "80",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 308,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 600), Size: 400x80.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "f8257c9c-cc13-40f4-8c1e-b2dda037fb3d",
+ "mode": "Opaque",
+ "x": "130",
+ "y": "600",
+ "width": "400",
+ "height": "80",
+ "forecolor": "#0000FF",
+ "backcolor": "#FFFF00",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 309,
+ "chunk_type": "element_line",
+ "human_description": "'title' band of report 'Barcode4JReport': line element, Position: (0, 0), Size: 515x1.",
+ "raw_xml": "\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "line",
+ "attributes": {
+ "kind": "line",
+ "uuid": "f980135d-c40f-42a7-93cd-d9d82925d5e2",
+ "x": "0",
+ "y": "0",
+ "width": "515",
+ "height": "1"
+ }
+ }
+ },
+ {
+ "chunk_id": 310,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Barcode Sample', Position: (0, 10), Size: 515x30.",
+ "raw_xml": "\n\t\t\tBarcode Sample\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "df70158b-7d84-4c11-ae3e-a7bd238bcf3f",
+ "x": "0",
+ "y": "10",
+ "width": "515",
+ "height": "30",
+ "fontSize": "22.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 311,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'Barcode4JReport': textField element, Expression: \"This sample uses Barcode4J Version 2.0\", Position: (0, 50), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"This sample uses Barcode4J Version 2.0\"\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "50f14e7a-b548-4a5d-9395-a387ea2e7e81",
+ "x": "0",
+ "y": "50",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 312,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'Barcode4JReport': textField element, Expression: \"http://barcode4j.sourceforge.net/\", Position: (0, 70), Size: 515x20.",
+ "raw_xml": "\n\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "55317c38-260d-4fb5-8c73-693d6425c411",
+ "x": "0",
+ "y": "70",
+ "width": "515",
+ "height": "20",
+ "fontSize": "12.0",
+ "linkType": "Reference",
+ "hTextAlign": "Center"
+ }
+ }
+ },
+ {
+ "chunk_id": 313,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Code 128', Position: (0, 100), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCode 128\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e3c8aa4c-a571-4288-b6ab-9eca96752649",
+ "x": "0",
+ "y": "100",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 314,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 100), Size: 200x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "17dc8c86-0d9c-4542-b153-71844a13bfe5",
+ "x": "130",
+ "y": "100",
+ "width": "200",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 315,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Codabar', Position: (0, 135), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCodabar\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "038aa527-7c7f-48b5-9547-7ba91470754c",
+ "x": "0",
+ "y": "135",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 316,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 135), Size: 200x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234567890\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "a8dd7541-3d7d-44fc-9281-2bf0bd7ff556",
+ "x": "130",
+ "y": "135",
+ "width": "200",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 317,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'DataMatrix', Position: (0, 170), Size: 100x40.",
+ "raw_xml": "\n\t\t\tDataMatrix\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e819db15-0b87-47b8-8474-cbe17cc7a37a",
+ "x": "0",
+ "y": "170",
+ "width": "100",
+ "height": "40",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 318,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 170), Size: 70x40.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "3955570e-f418-4cf2-9a94-cbed633f8e68",
+ "x": "130",
+ "y": "170",
+ "width": "70",
+ "height": "40",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 319,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-128', Position: (0, 215), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-128\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "079dc326-5af1-4979-927c-3d9d75bfe21b",
+ "x": "0",
+ "y": "215",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 320,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 215), Size: 250x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0101234567890128\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "d5a009ab-4cd5-401e-96c8-9ba64b1fc8e9",
+ "x": "130",
+ "y": "215",
+ "width": "250",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 321,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Code39', Position: (0, 250), Size: 100x30.",
+ "raw_xml": "\n\t\t\tCode39\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "63b7698e-e4a1-4fff-9ea0-a9772dd5b2c4",
+ "x": "0",
+ "y": "250",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 322,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 250), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "7fc9f508-28ba-4b6e-bf7d-2e5e39b98ed8",
+ "x": "130",
+ "y": "250",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 323,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'USPS Intelligent Mail', Position: (0, 285), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUSPS Intelligent Mail\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "8ca7d2e2-c66f-4c25-ab3d-2fb15453b8b0",
+ "x": "0",
+ "y": "285",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 324,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 285), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"00040123456200800001987654321\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "8fdd4d61-26b7-4a0e-b569-18d70d929c10",
+ "x": "130",
+ "y": "285",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 325,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Royal Mail Customer', Position: (0, 320), Size: 100x30.",
+ "raw_xml": "\n\t\t\tRoyal Mail Customer\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "df0b440d-9a4f-49ea-aa1d-c860c2ad3911",
+ "x": "0",
+ "y": "320",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 326,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 320), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "4d2d0a42-1318-4873-8572-3cca99ebde50",
+ "x": "130",
+ "y": "320",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 327,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'Interleaved 2 of 5', Position: (0, 355), Size: 100x30.",
+ "raw_xml": "\n\t\t\tInterleaved 2 of 5\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dc520315-36de-4535-9d40-2dc5b96e07bc",
+ "x": "0",
+ "y": "355",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 328,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 355), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "26bab176-29df-4677-ba6a-e8df79eea8e1",
+ "x": "130",
+ "y": "355",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 329,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'UPC-A', Position: (0, 390), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUPC-A\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "ddcf57ba-86e5-4b2c-8293-89cc3c044890",
+ "x": "0",
+ "y": "390",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 330,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 390), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234567890\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "234c47ef-0149-43aa-9595-44eb81a2bd54",
+ "x": "130",
+ "y": "390",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 331,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'UPC-E', Position: (0, 425), Size: 100x30.",
+ "raw_xml": "\n\t\t\tUPC-E\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "1ee2c6c4-54d0-4bae-af20-03970939c63c",
+ "x": "0",
+ "y": "425",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 332,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 425), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234133\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "51b4da4c-b93b-4757-9f6e-8757a6716ea1",
+ "x": "130",
+ "y": "425",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 333,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-13', Position: (0, 460), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-13\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2cb2f39b-a468-4d35-9047-2066f52aec84",
+ "x": "0",
+ "y": "460",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 334,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 460), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"012345678901\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "35e15c85-135e-4e4a-ada4-3caab948d304",
+ "x": "130",
+ "y": "460",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 335,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'EAN-8', Position: (0, 495), Size: 100x30.",
+ "raw_xml": "\n\t\t\tEAN-8\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9399924d-03f6-4825-adfd-0a51cca77964",
+ "x": "0",
+ "y": "495",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 336,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 495), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234565\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "00eb6f75-bdf7-408a-ba56-f76ecca2f8e6",
+ "x": "130",
+ "y": "495",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 337,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'POSTNET', Position: (0, 530), Size: 100x20.",
+ "raw_xml": "\n\t\t\tPOSTNET\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "6ffb2cc2-63fd-4754-b8c3-48828cca8ab1",
+ "x": "0",
+ "y": "530",
+ "width": "100",
+ "height": "20",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 338,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 530), Size: 400x20.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "16fee5fe-1e0f-4f56-b240-64a2ff904744",
+ "x": "130",
+ "y": "530",
+ "width": "400",
+ "height": "20",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 339,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'PDF417', Position: (0, 555), Size: 100x30.",
+ "raw_xml": "\n\t\t\tPDF417\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "c1127dd1-6cde-483c-8b1c-927b5fd285a3",
+ "x": "0",
+ "y": "555",
+ "width": "100",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 340,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 555), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "f8257c9c-cc13-40f4-8c1e-b2dda037fb3d",
+ "x": "130",
+ "y": "555",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 341,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'Barcode4JReport': staticText element, Text: 'QRCode', Position: (0, 600), Size: 100x80.",
+ "raw_xml": "\n\t\t\tQRCode\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "c1127dd1-6cde-483c-8b1c-927b5fd285a3",
+ "x": "0",
+ "y": "600",
+ "width": "100",
+ "height": "80",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 342,
+ "chunk_type": "element_component",
+ "human_description": "'title' band of report 'Barcode4JReport': component element, Position: (130, 600), Size: 400x80.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'Barcode4JReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "component",
+ "attributes": {
+ "kind": "component",
+ "uuid": "f8257c9c-cc13-40f4-8c1e-b2dda037fb3d",
+ "mode": "Opaque",
+ "x": "130",
+ "y": "600",
+ "width": "400",
+ "height": "80",
+ "forecolor": "#0000FF",
+ "backcolor": "#FFFF00",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 343,
+ "chunk_type": "component",
+ "human_description": "This is a component element in report 'Barcode4JReport'. Component kind: barcode4j:Code128. Contains 0 datasetRun(s). Content size: 0x0.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' component",
+ "metadata": {
+ "component_kind": "barcode4j:Code128",
+ "dataset_runs": [],
+ "contents_height": "0",
+ "contents_width": "0",
+ "attributes": {
+ "kind": "component",
+ "uuid": "17dc8c86-0d9c-4542-b153-71844a13bfe5",
+ "x": "130",
+ "y": "100",
+ "width": "200",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 344,
+ "chunk_type": "component",
+ "human_description": "This is a component element in report 'Barcode4JReport'. Component kind: barcode4j:Codabar. Contains 0 datasetRun(s). Content size: 0x0.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234567890\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' component",
+ "metadata": {
+ "component_kind": "barcode4j:Codabar",
+ "dataset_runs": [],
+ "contents_height": "0",
+ "contents_width": "0",
+ "attributes": {
+ "kind": "component",
+ "uuid": "a8dd7541-3d7d-44fc-9281-2bf0bd7ff556",
+ "x": "130",
+ "y": "135",
+ "width": "200",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 345,
+ "chunk_type": "component",
+ "human_description": "This is a component element in report 'Barcode4JReport'. Component kind: barcode4j:DataMatrix. Contains 0 datasetRun(s). Content size: 0x0.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' component",
+ "metadata": {
+ "component_kind": "barcode4j:DataMatrix",
+ "dataset_runs": [],
+ "contents_height": "0",
+ "contents_width": "0",
+ "attributes": {
+ "kind": "component",
+ "uuid": "3955570e-f418-4cf2-9a94-cbed633f8e68",
+ "x": "130",
+ "y": "170",
+ "width": "70",
+ "height": "40",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 346,
+ "chunk_type": "component",
+ "human_description": "This is a component element in report 'Barcode4JReport'. Component kind: barcode4j:EAN128. Contains 0 datasetRun(s). Content size: 0x0.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0101234567890128\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' component",
+ "metadata": {
+ "component_kind": "barcode4j:EAN128",
+ "dataset_runs": [],
+ "contents_height": "0",
+ "contents_width": "0",
+ "attributes": {
+ "kind": "component",
+ "uuid": "d5a009ab-4cd5-401e-96c8-9ba64b1fc8e9",
+ "x": "130",
+ "y": "215",
+ "width": "250",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 347,
+ "chunk_type": "component",
+ "human_description": "This is a component element in report 'Barcode4JReport'. Component kind: barcode4j:Code39. Contains 0 datasetRun(s). Content size: 0x0.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' component",
+ "metadata": {
+ "component_kind": "barcode4j:Code39",
+ "dataset_runs": [],
+ "contents_height": "0",
+ "contents_width": "0",
+ "attributes": {
+ "kind": "component",
+ "uuid": "7fc9f508-28ba-4b6e-bf7d-2e5e39b98ed8",
+ "x": "130",
+ "y": "250",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 348,
+ "chunk_type": "component",
+ "human_description": "This is a component element in report 'Barcode4JReport'. Component kind: barcode4j:USPSIntelligentMail. Contains 0 datasetRun(s). Content size: 0x0.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"00040123456200800001987654321\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' component",
+ "metadata": {
+ "component_kind": "barcode4j:USPSIntelligentMail",
+ "dataset_runs": [],
+ "contents_height": "0",
+ "contents_width": "0",
+ "attributes": {
+ "kind": "component",
+ "uuid": "8fdd4d61-26b7-4a0e-b569-18d70d929c10",
+ "x": "130",
+ "y": "285",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 349,
+ "chunk_type": "component",
+ "human_description": "This is a component element in report 'Barcode4JReport'. Component kind: barcode4j:RoyalMailCustomer. Contains 0 datasetRun(s). Content size: 0x0.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' component",
+ "metadata": {
+ "component_kind": "barcode4j:RoyalMailCustomer",
+ "dataset_runs": [],
+ "contents_height": "0",
+ "contents_width": "0",
+ "attributes": {
+ "kind": "component",
+ "uuid": "4d2d0a42-1318-4873-8572-3cca99ebde50",
+ "x": "130",
+ "y": "320",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 350,
+ "chunk_type": "component",
+ "human_description": "This is a component element in report 'Barcode4JReport'. Component kind: barcode4j:Interleaved2Of5. Contains 0 datasetRun(s). Content size: 0x0.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"0123456789\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' component",
+ "metadata": {
+ "component_kind": "barcode4j:Interleaved2Of5",
+ "dataset_runs": [],
+ "contents_height": "0",
+ "contents_width": "0",
+ "attributes": {
+ "kind": "component",
+ "uuid": "26bab176-29df-4677-ba6a-e8df79eea8e1",
+ "x": "130",
+ "y": "355",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 351,
+ "chunk_type": "component",
+ "human_description": "This is a component element in report 'Barcode4JReport'. Component kind: barcode4j:UPCA. Contains 0 datasetRun(s). Content size: 0x0.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234567890\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' component",
+ "metadata": {
+ "component_kind": "barcode4j:UPCA",
+ "dataset_runs": [],
+ "contents_height": "0",
+ "contents_width": "0",
+ "attributes": {
+ "kind": "component",
+ "uuid": "234c47ef-0149-43aa-9595-44eb81a2bd54",
+ "x": "130",
+ "y": "390",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 352,
+ "chunk_type": "component",
+ "human_description": "This is a component element in report 'Barcode4JReport'. Component kind: barcode4j:UPCE. Contains 0 datasetRun(s). Content size: 0x0.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234133\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' component",
+ "metadata": {
+ "component_kind": "barcode4j:UPCE",
+ "dataset_runs": [],
+ "contents_height": "0",
+ "contents_width": "0",
+ "attributes": {
+ "kind": "component",
+ "uuid": "51b4da4c-b93b-4757-9f6e-8757a6716ea1",
+ "x": "130",
+ "y": "425",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 353,
+ "chunk_type": "component",
+ "human_description": "This is a component element in report 'Barcode4JReport'. Component kind: barcode4j:EAN13. Contains 0 datasetRun(s). Content size: 0x0.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"012345678901\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' component",
+ "metadata": {
+ "component_kind": "barcode4j:EAN13",
+ "dataset_runs": [],
+ "contents_height": "0",
+ "contents_width": "0",
+ "attributes": {
+ "kind": "component",
+ "uuid": "35e15c85-135e-4e4a-ada4-3caab948d304",
+ "x": "130",
+ "y": "460",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 354,
+ "chunk_type": "component",
+ "human_description": "This is a component element in report 'Barcode4JReport'. Component kind: barcode4j:EAN8. Contains 0 datasetRun(s). Content size: 0x0.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234565\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' component",
+ "metadata": {
+ "component_kind": "barcode4j:EAN8",
+ "dataset_runs": [],
+ "contents_height": "0",
+ "contents_width": "0",
+ "attributes": {
+ "kind": "component",
+ "uuid": "00eb6f75-bdf7-408a-ba56-f76ecca2f8e6",
+ "x": "130",
+ "y": "495",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 355,
+ "chunk_type": "component",
+ "human_description": "This is a component element in report 'Barcode4JReport'. Component kind: barcode4j:POSTNET. Contains 0 datasetRun(s). Content size: 0x0.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"01234\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' component",
+ "metadata": {
+ "component_kind": "barcode4j:POSTNET",
+ "dataset_runs": [],
+ "contents_height": "0",
+ "contents_width": "0",
+ "attributes": {
+ "kind": "component",
+ "uuid": "16fee5fe-1e0f-4f56-b240-64a2ff904744",
+ "x": "130",
+ "y": "530",
+ "width": "400",
+ "height": "20",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 356,
+ "chunk_type": "component",
+ "human_description": "This is a component element in report 'Barcode4JReport'. Component kind: barcode4j:PDF417. Contains 0 datasetRun(s). Content size: 0x0.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"JasperReports\"\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'Barcode4JReport' component",
+ "metadata": {
+ "component_kind": "barcode4j:PDF417",
+ "dataset_runs": [],
+ "contents_height": "0",
+ "contents_width": "0",
+ "attributes": {
+ "kind": "component",
+ "uuid": "f8257c9c-cc13-40f4-8c1e-b2dda037fb3d",
+ "x": "130",
+ "y": "555",
+ "width": "400",
+ "height": "30",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 357,
+ "chunk_type": "component",
+ "human_description": "This is a component element in report 'Barcode4JReport'. Component kind: barcode4j:QRCode. Contains 0 datasetRun(s). Content size: 0x0.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t\"http://barcode4j.sourceforge.net/\"\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'Barcode4JReport' component",
+ "metadata": {
+ "component_kind": "barcode4j:QRCode",
+ "dataset_runs": [],
+ "contents_height": "0",
+ "contents_width": "0",
+ "attributes": {
+ "kind": "component",
+ "uuid": "f8257c9c-cc13-40f4-8c1e-b2dda037fb3d",
+ "mode": "Opaque",
+ "x": "130",
+ "y": "600",
+ "width": "400",
+ "height": "80",
+ "forecolor": "#0000FF",
+ "backcolor": "#FFFF00",
+ "style": "Barcode"
+ }
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'BookReport'. Page size: 595 x 842 portrait. Contains 1 standard bands with content: detail. Defines 1 fields: ShipCountry. Defines 0 parameters: none. Defines 0 variables: none. Defines 1 groups: dummy. Data source type: JDBC/SQL. Source: Sample DB. Query language: sql.",
+ "raw_xml": "",
+ "context": "Report 'BookReport' overall structure overview",
+ "metadata": {
+ "report_name": "BookReport",
+ "bands": [
+ "detail"
+ ],
+ "field_count": 1,
+ "parameter_count": 0,
+ "variable_count": 0,
+ "group_count": 1,
+ "chart_count": 0,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "JDBC/SQL",
+ "source": "Sample DB",
+ "query_language": "sql",
+ "properties": {
+ "net.sf.jasperreports.print.create.bookmarks": "true",
+ "com.jaspersoft.studio.data.defaultdataadapter": "Sample DB"
+ }
+ },
+ "attributes": {
+ "name": "BookReport",
+ "language": "java",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "sectionType": "Part",
+ "columnWidth": "555",
+ "leftMargin": "20",
+ "rightMargin": "20",
+ "topMargin": "30",
+ "bottomMargin": "30",
+ "uuid": "e52780b9-8f01-4b16-86fe-712163e5aadc"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'BookReport'. Data adapter: Sample DB.",
+ "raw_xml": "",
+ "context": "Report 'BookReport' data source configuration",
+ "metadata": {
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "Sample DB"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "query",
+ "human_description": "This is the data query for report 'BookReport'. Language: SQL. Query: SELECT ShipCountry FROM Orders GROUP BY ShipCountry HAVING count(DISTINCT ShipCity) > 2 ORDER BY ShipCountry",
+ "raw_xml": "SELECT ShipCountry FROM Orders GROUP BY ShipCountry HAVING count(DISTINCT ShipCity) > 2 ORDER BY ShipCountry\n\t",
+ "context": "Report 'BookReport' data query",
+ "metadata": {
+ "query_language": "sql",
+ "full_sql": "SELECT ShipCountry FROM Orders GROUP BY ShipCountry HAVING count(DISTINCT ShipCity) > 2 ORDER BY ShipCountry"
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "fields",
+ "human_description": "These are all field definitions for report 'BookReport', total 1 fields. Fields: ShipCountry(java.lang.String).",
+ "raw_xml": "\n\t",
+ "context": "Report 'BookReport' field definitions",
+ "metadata": {
+ "field_names": [
+ "ShipCountry"
+ ],
+ "field_types": {
+ "ShipCountry": "java.lang.String"
+ },
+ "field_expressions": {},
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "group",
+ "human_description": "This is group 'dummy' definition for report 'BookReport'. Group expression: 1. Has groupHeader: Yes, has groupFooter: No. Min height: 0, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t1\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\"Table of Contents\"\n\t\t\t\t\n\t\t\t\t\t\"TocReport.jasper\"\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\"Overview\"\n\t\t\t\t\n\t\t\t\t\t\"OrdersReport.jasper\"\n\t\t\t\t\t\n\t\t\t\t\t\t$P{REPORT_CONNECTION}\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BookReport' group 'dummy'",
+ "metadata": {
+ "group_name": "dummy",
+ "expression": "1",
+ "has_header": true,
+ "has_footer": false,
+ "minHeightToStartNewPage": "0",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BookReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: .",
+ "raw_xml": "\n\t\t\n\t\t\t$F{ShipCountry} + \" shipments\"\n\t\t\t\n\t\t\t\t\"PieChartReport.jasper\"\n\t\t\t\t\n\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{REPORT_CONNECTION}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'BookReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BookReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: .",
+ "raw_xml": "\n\t\t\n\t\t\t$F{ShipCountry} + \" shipments\"\n\t\t\t\n\t\t\t\t\"PieChartReport.jasper\"\n\t\t\t\t\n\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{REPORT_CONNECTION}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'BookReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BookReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: .",
+ "raw_xml": "\n\t\t\n\t\t\t$F{ShipCountry} + \" shipments\"\n\t\t\t\n\t\t\t\t\"PieChartReport.jasper\"\n\t\t\t\t\n\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{REPORT_CONNECTION}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'BookReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BookReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: .",
+ "raw_xml": "\n\t\t\n\t\t\t$F{ShipCountry} + \" shipments\"\n\t\t\t\n\t\t\t\t\"PieChartReport.jasper\"\n\t\t\t\t\n\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{REPORT_CONNECTION}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'BookReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BookReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: .",
+ "raw_xml": "\n\t\t\n\t\t\t$F{ShipCountry} + \" shipments\"\n\t\t\t\n\t\t\t\t\"PieChartReport.jasper\"\n\t\t\t\t\n\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{REPORT_CONNECTION}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'BookReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BookReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: .",
+ "raw_xml": "\n\t\t\n\t\t\t$F{ShipCountry} + \" shipments\"\n\t\t\t\n\t\t\t\t\"PieChartReport.jasper\"\n\t\t\t\t\n\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{REPORT_CONNECTION}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'BookReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BookReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: .",
+ "raw_xml": "\n\t\t\n\t\t\t$F{ShipCountry} + \" shipments\"\n\t\t\t\n\t\t\t\t\"PieChartReport.jasper\"\n\t\t\t\t\n\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{REPORT_CONNECTION}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'BookReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BookReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: .",
+ "raw_xml": "\n\t\t\n\t\t\t$F{ShipCountry} + \" shipments\"\n\t\t\t\n\t\t\t\t\"PieChartReport.jasper\"\n\t\t\t\t\n\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{REPORT_CONNECTION}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'BookReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BookReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: .",
+ "raw_xml": "\n\t\t\n\t\t\t$F{ShipCountry} + \" shipments\"\n\t\t\t\n\t\t\t\t\"PieChartReport.jasper\"\n\t\t\t\t\n\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{REPORT_CONNECTION}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'BookReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BookReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: .",
+ "raw_xml": "\n\t\t\n\t\t\t$F{ShipCountry} + \" shipments\"\n\t\t\t\n\t\t\t\t\"PieChartReport.jasper\"\n\t\t\t\t\n\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{REPORT_CONNECTION}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'BookReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'BubbleChartReport'. Page size: 595 x 842 portrait. Contains 5 standard bands with content: title, columnHeader, detail, columnFooter, pageFooter. Defines 14 fields: ShippedDate, ShipCountry, RequiredDate, CustomerID, OrderID, ShipName, ShipVia, ShipPostalCode, OrderDate, ShipCity, ShipAddress, EmployeeID, ShipRegion, Freight. Defines 2 parameters: ReportTitle, MaxOrderID. Defines 8 variables: FirstLetter, FreightSumFirstLetterGroup, FreightSumCountryGroup, FreightSumColumn, FreightSumPage, FreightSumReport, DateHighestCountryGroup, RegionCountCountryGroup. Defines 2 groups: FirstLetterGroup, CountryGroup. Data source type: JDBC/SQL. Source: Sample DB. Query language: sql. Contains 1 charts.",
+ "raw_xml": "",
+ "context": "Report 'BubbleChartReport' overall structure overview",
+ "metadata": {
+ "report_name": "BubbleChartReport",
+ "bands": [
+ "title",
+ "columnHeader",
+ "detail",
+ "columnFooter",
+ "pageFooter"
+ ],
+ "field_count": 14,
+ "parameter_count": 2,
+ "variable_count": 8,
+ "group_count": 2,
+ "chart_count": 1,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "JDBC/SQL",
+ "source": "Sample DB",
+ "query_language": "sql",
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "Sample DB",
+ "net.sf.jasperreports.chart.render.type": "svg",
+ "net.sf.jasperreports.image.dpi": "150"
+ }
+ },
+ "attributes": {
+ "name": "BubbleChartReport",
+ "language": "java",
+ "columnCount": "2",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "columnWidth": "270",
+ "columnSpacing": "15",
+ "leftMargin": "20",
+ "rightMargin": "20",
+ "topMargin": "30",
+ "bottomMargin": "30",
+ "uuid": "af0cfcef-2e6e-46c2-98b8-c52925ce1222"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'BubbleChartReport'. Data adapter: Sample DB.",
+ "raw_xml": "",
+ "context": "Report 'BubbleChartReport' data source configuration",
+ "metadata": {
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "Sample DB"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "query",
+ "human_description": "This is the data query for report 'BubbleChartReport'. Language: SQL. Query: SELECT * FROM Orders WHERE OrderID <= $P{MaxOrderID} ORDER BY ShipCountry",
+ "raw_xml": "SELECT * FROM Orders WHERE OrderID <= $P{MaxOrderID} ORDER BY ShipCountry\n\t",
+ "context": "Report 'BubbleChartReport' data query",
+ "metadata": {
+ "query_language": "sql",
+ "full_sql": "SELECT * FROM Orders WHERE OrderID <= $P{MaxOrderID} ORDER BY ShipCountry"
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "parameters",
+ "human_description": "These are all parameter definitions for report 'BubbleChartReport', total 2 parameters. Parameters: ReportTitle(java.lang.String), MaxOrderID(java.lang.Integer).",
+ "raw_xml": "\n\t\t\"Bubble Chart Report\"\n\t\n\t\n\n\t\t12500\n\t\n\t",
+ "context": "Report 'BubbleChartReport' parameter definitions",
+ "metadata": {
+ "parameter_names": [
+ "ReportTitle",
+ "MaxOrderID"
+ ],
+ "parameter_types": {
+ "ReportTitle": "java.lang.String",
+ "MaxOrderID": "java.lang.Integer"
+ },
+ "default_values": {
+ "ReportTitle": "\"Bubble Chart Report\"",
+ "MaxOrderID": "12500"
+ },
+ "count": 2
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BubbleChartReport': ShippedDate, type: java.sql.Timestamp",
+ "raw_xml": "\n\t",
+ "context": "Report 'BubbleChartReport' field 'ShippedDate'",
+ "metadata": {
+ "field_name": "ShippedDate",
+ "field_class": "java.sql.Timestamp",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BubbleChartReport': ShipCountry, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'BubbleChartReport' field 'ShipCountry'",
+ "metadata": {
+ "field_name": "ShipCountry",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 6,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BubbleChartReport': RequiredDate, type: java.sql.Timestamp",
+ "raw_xml": "\n\t",
+ "context": "Report 'BubbleChartReport' field 'RequiredDate'",
+ "metadata": {
+ "field_name": "RequiredDate",
+ "field_class": "java.sql.Timestamp",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BubbleChartReport': CustomerID, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'BubbleChartReport' field 'CustomerID'",
+ "metadata": {
+ "field_name": "CustomerID",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 8,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BubbleChartReport': OrderID, type: java.lang.Integer",
+ "raw_xml": "\n\t",
+ "context": "Report 'BubbleChartReport' field 'OrderID'",
+ "metadata": {
+ "field_name": "OrderID",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BubbleChartReport': ShipName, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'BubbleChartReport' field 'ShipName'",
+ "metadata": {
+ "field_name": "ShipName",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BubbleChartReport': ShipVia, type: java.lang.Integer",
+ "raw_xml": "\n\t",
+ "context": "Report 'BubbleChartReport' field 'ShipVia'",
+ "metadata": {
+ "field_name": "ShipVia",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 11,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BubbleChartReport': ShipPostalCode, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'BubbleChartReport' field 'ShipPostalCode'",
+ "metadata": {
+ "field_name": "ShipPostalCode",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 12,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BubbleChartReport': OrderDate, type: java.sql.Timestamp",
+ "raw_xml": "\n\t",
+ "context": "Report 'BubbleChartReport' field 'OrderDate'",
+ "metadata": {
+ "field_name": "OrderDate",
+ "field_class": "java.sql.Timestamp",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 13,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BubbleChartReport': ShipCity, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'BubbleChartReport' field 'ShipCity'",
+ "metadata": {
+ "field_name": "ShipCity",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BubbleChartReport': ShipAddress, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'BubbleChartReport' field 'ShipAddress'",
+ "metadata": {
+ "field_name": "ShipAddress",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BubbleChartReport': EmployeeID, type: java.lang.Integer",
+ "raw_xml": "\n\t",
+ "context": "Report 'BubbleChartReport' field 'EmployeeID'",
+ "metadata": {
+ "field_name": "EmployeeID",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 16,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BubbleChartReport': ShipRegion, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'BubbleChartReport' field 'ShipRegion'",
+ "metadata": {
+ "field_name": "ShipRegion",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 17,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'BubbleChartReport': Freight, type: java.lang.Double",
+ "raw_xml": "\n\t",
+ "context": "Report 'BubbleChartReport' field 'Freight'",
+ "metadata": {
+ "field_name": "Freight",
+ "field_class": "java.lang.Double",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_none",
+ "human_description": "These are variable definitions for report 'BubbleChartReport' (resetType=None), total 1 variables. Variables: FirstLetter(java.lang.String, Nothing).",
+ "raw_xml": "\n\t\t$F{ShipCountry}.substring(0, 1).toUpperCase()\n\t\n\t",
+ "context": "Report 'BubbleChartReport' variable definitions (None level reset)",
+ "metadata": {
+ "variable_names": [
+ "FirstLetter"
+ ],
+ "variable_types": {
+ "FirstLetter": "java.lang.String"
+ },
+ "variable_calculations": {
+ "FirstLetter": "Nothing"
+ },
+ "reset_type": "None",
+ "expressions": {
+ "FirstLetter": {
+ "type": "expression",
+ "value": "$F{ShipCountry}.substring(0, 1).toUpperCase()"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_group",
+ "human_description": "These are variable definitions for report 'BubbleChartReport' (resetType=Group), total 4 variables. Variables: FreightSumFirstLetterGroup(java.lang.Double, Sum), FreightSumCountryGroup(java.lang.Double, Sum), DateHighestCountryGroup(java.sql.Timestamp, Highest), RegionCountCountryGroup(java.lang.Integer, Count).",
+ "raw_xml": "\n\t\t$F{Freight}\n\t\n\t\n\n\t\t$F{Freight}\n\t\n\t\n\n\t\t$F{OrderDate}\n\t\n\t\n\n\t\t$F{ShipRegion}\n\t\n\t",
+ "context": "Report 'BubbleChartReport' variable definitions (Group level reset)",
+ "metadata": {
+ "variable_names": [
+ "FreightSumFirstLetterGroup",
+ "FreightSumCountryGroup",
+ "DateHighestCountryGroup",
+ "RegionCountCountryGroup"
+ ],
+ "variable_types": {
+ "FreightSumFirstLetterGroup": "java.lang.Double",
+ "FreightSumCountryGroup": "java.lang.Double",
+ "DateHighestCountryGroup": "java.sql.Timestamp",
+ "RegionCountCountryGroup": "java.lang.Integer"
+ },
+ "variable_calculations": {
+ "FreightSumFirstLetterGroup": "Sum",
+ "FreightSumCountryGroup": "Sum",
+ "DateHighestCountryGroup": "Highest",
+ "RegionCountCountryGroup": "Count"
+ },
+ "reset_type": "Group",
+ "expressions": {
+ "FreightSumFirstLetterGroup": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ },
+ "FreightSumCountryGroup": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ },
+ "DateHighestCountryGroup": {
+ "type": "expression",
+ "value": "$F{OrderDate}"
+ },
+ "RegionCountCountryGroup": {
+ "type": "expression",
+ "value": "$F{ShipRegion}"
+ }
+ },
+ "count": 4
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_column",
+ "human_description": "These are variable definitions for report 'BubbleChartReport' (resetType=Column), total 1 variables. Variables: FreightSumColumn(java.lang.Double, Sum).",
+ "raw_xml": "\n\t\t$F{Freight}\n\t\n\t",
+ "context": "Report 'BubbleChartReport' variable definitions (Column level reset)",
+ "metadata": {
+ "variable_names": [
+ "FreightSumColumn"
+ ],
+ "variable_types": {
+ "FreightSumColumn": "java.lang.Double"
+ },
+ "variable_calculations": {
+ "FreightSumColumn": "Sum"
+ },
+ "reset_type": "Column",
+ "expressions": {
+ "FreightSumColumn": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_page",
+ "human_description": "These are variable definitions for report 'BubbleChartReport' (resetType=Page), total 1 variables. Variables: FreightSumPage(java.lang.Double, Sum).",
+ "raw_xml": "\n\t\t$F{Freight}\n\t\n\t",
+ "context": "Report 'BubbleChartReport' variable definitions (Page level reset)",
+ "metadata": {
+ "variable_names": [
+ "FreightSumPage"
+ ],
+ "variable_types": {
+ "FreightSumPage": "java.lang.Double"
+ },
+ "variable_calculations": {
+ "FreightSumPage": "Sum"
+ },
+ "reset_type": "Page",
+ "expressions": {
+ "FreightSumPage": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_report",
+ "human_description": "These are variable definitions for report 'BubbleChartReport' (resetType=Report), total 1 variables. Variables: FreightSumReport(java.lang.Double, Sum).",
+ "raw_xml": "\n\t\t$F{Freight}\n\t\n\t",
+ "context": "Report 'BubbleChartReport' variable definitions (Report level reset)",
+ "metadata": {
+ "variable_names": [
+ "FreightSumReport"
+ ],
+ "variable_types": {
+ "FreightSumReport": "java.lang.Double"
+ },
+ "variable_calculations": {
+ "FreightSumReport": "Sum"
+ },
+ "reset_type": "Report",
+ "expressions": {
+ "FreightSumReport": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 23,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'BubbleChartReport', total 5 styles. Styles: Sans_Normal, Sans_Bold, Sans_Italic, Serif_Normal, Serif_Bold. Default style: Sans_Normal.",
+ "raw_xml": "\n\t\n\n\t\n\n\t\n\n\t\n\n\t",
+ "context": "Report 'BubbleChartReport' style definitions",
+ "metadata": {
+ "style_names": [
+ "Sans_Normal",
+ "Sans_Bold",
+ "Sans_Italic",
+ "Serif_Normal",
+ "Serif_Bold"
+ ],
+ "default_style": "Sans_Normal",
+ "has_conditional_styles": false,
+ "count": 5
+ }
+ },
+ {
+ "chunk_id": 24,
+ "chunk_type": "group",
+ "human_description": "This is group 'FirstLetterGroup' definition for report 'BubbleChartReport'. Group expression: $V{FirstLetter}. Has groupHeader: Yes, has groupFooter: Yes. Min height: 200, start new column: true, reprint header: false.",
+ "raw_xml": "\n\t\t$V{FirstLetter}\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tCountries Starting With Letter :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FirstLetter}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tCount :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FirstLetterGroup_COUNT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tTotal :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FreightSumFirstLetterGroup}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' group 'FirstLetterGroup'",
+ "metadata": {
+ "group_name": "FirstLetterGroup",
+ "expression": "$V{FirstLetter}",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "200",
+ "startNewColumn": "true",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 25,
+ "chunk_type": "group",
+ "human_description": "This is group 'CountryGroup' definition for report 'BubbleChartReport'. Group expression: $F{ShipCountry}. Has groupHeader: Yes, has groupFooter: Yes. Min height: 0, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t$F{ShipCountry}\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{DateHighestCountryGroup}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Double Freight\"\n\t\t\t\t\t\t\t$F{OrderID}\n\t\t\t\t\t\t\t$F{Freight} * 2d\n\t\t\t\t\t\t\t40.00d\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Normal Freight\"\n\t\t\t\t\t\t\t$F{OrderID}\n\t\t\t\t\t\t\t$F{Freight}\n\t\t\t\t\t\t\t30.00d\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Half Freight\"\n\t\t\t\t\t\t\t$F{OrderID}\n\t\t\t\t\t\t\t$F{Freight} / 2d\n\t\t\t\t\t\t\t20.00d\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tCount :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{CountryGroup_COUNT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tTotal :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FreightSumCountryGroup}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' group 'CountryGroup'",
+ "metadata": {
+ "group_name": "CountryGroup",
+ "expression": "$F{ShipCountry}",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "0",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'BubbleChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bubble Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBubble Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bubble Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'BubbleChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BubbleChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'BubbleChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'BubbleChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'BubbleChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'BubbleChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bubble Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBubble Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bubble Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'BubbleChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BubbleChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'BubbleChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'BubbleChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'BubbleChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'BubbleChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bubble Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBubble Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bubble Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'BubbleChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BubbleChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'BubbleChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'BubbleChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'BubbleChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'BubbleChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bubble Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBubble Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bubble Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'BubbleChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BubbleChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'BubbleChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'BubbleChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'BubbleChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'BubbleChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bubble Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBubble Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bubble Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'BubbleChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BubbleChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'BubbleChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'BubbleChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'BubbleChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'BubbleChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bubble Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBubble Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bubble Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'BubbleChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BubbleChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'BubbleChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'BubbleChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'BubbleChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'BubbleChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bubble Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBubble Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bubble Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'BubbleChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BubbleChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'BubbleChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'BubbleChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'BubbleChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'BubbleChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bubble Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBubble Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bubble Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'BubbleChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BubbleChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'BubbleChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'BubbleChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'BubbleChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'BubbleChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bubble Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBubble Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bubble Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'BubbleChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BubbleChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'BubbleChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'BubbleChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'BubbleChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'BubbleChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Bubble Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tBubble Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Bubble Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'BubbleChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'BubbleChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'BubbleChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'BubbleChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'BubbleChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'BubbleChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 76,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'BubbleChartReport', type: bubble. Dataset kind: xyz. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Double Freight\"\n\t\t\t\t\t\t\t$F{OrderID}\n\t\t\t\t\t\t\t$F{Freight} * 2d\n\t\t\t\t\t\t\t40.00d\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Normal Freight\"\n\t\t\t\t\t\t\t$F{OrderID}\n\t\t\t\t\t\t\t$F{Freight}\n\t\t\t\t\t\t\t30.00d\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\"Half Freight\"\n\t\t\t\t\t\t\t$F{OrderID}\n\t\t\t\t\t\t\t$F{Freight} / 2d\n\t\t\t\t\t\t\t20.00d\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'BubbleChartReport' chart",
+ "metadata": {
+ "chart_type": "bubble",
+ "dataset": {
+ "kind": "xyz",
+ "series": [
+ {
+ "key": "",
+ "value": ""
+ },
+ {
+ "key": "",
+ "value": ""
+ },
+ {
+ "key": "",
+ "value": ""
+ }
+ ]
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "bubble",
+ "uuid": "d9ebe2fd-bf5c-44a9-9433-c0643447dd9f",
+ "positionType": "Float",
+ "x": "0",
+ "y": "25",
+ "width": "270",
+ "height": "175",
+ "evaluationTime": "Group",
+ "evaluationGroup": "CountryGroup"
+ }
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'CandlestickChartReport'. Page size: 595 x 842 portrait. Contains 5 standard bands with content: title, columnHeader, detail, columnFooter, pageFooter. Defines 14 fields: ShippedDate, ShipCountry, RequiredDate, CustomerID, OrderID, ShipName, ShipVia, ShipPostalCode, OrderDate, ShipCity, ShipAddress, EmployeeID, ShipRegion, Freight. Defines 2 parameters: ReportTitle, MaxOrderID. Defines 8 variables: FirstLetter, FreightSumFirstLetterGroup, FreightSumCountryGroup, FreightSumColumn, FreightSumPage, FreightSumReport, DateHighestCountryGroup, RegionCountCountryGroup. Defines 2 groups: FirstLetterGroup, CountryGroup. Data source type: JDBC/SQL. Source: Sample DB. Query language: sql. Contains 1 charts.",
+ "raw_xml": "",
+ "context": "Report 'CandlestickChartReport' overall structure overview",
+ "metadata": {
+ "report_name": "CandlestickChartReport",
+ "bands": [
+ "title",
+ "columnHeader",
+ "detail",
+ "columnFooter",
+ "pageFooter"
+ ],
+ "field_count": 14,
+ "parameter_count": 2,
+ "variable_count": 8,
+ "group_count": 2,
+ "chart_count": 1,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "JDBC/SQL",
+ "source": "Sample DB",
+ "query_language": "sql",
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "Sample DB",
+ "net.sf.jasperreports.chart.render.type": "svg",
+ "net.sf.jasperreports.image.dpi": "150"
+ }
+ },
+ "attributes": {
+ "name": "CandlestickChartReport",
+ "language": "java",
+ "columnCount": "2",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "columnWidth": "270",
+ "columnSpacing": "15",
+ "leftMargin": "20",
+ "rightMargin": "20",
+ "topMargin": "30",
+ "bottomMargin": "30",
+ "uuid": "60e942ff-7831-4189-b34f-1ffab1ebd537"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'CandlestickChartReport'. Data adapter: Sample DB.",
+ "raw_xml": "",
+ "context": "Report 'CandlestickChartReport' data source configuration",
+ "metadata": {
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "Sample DB"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "query",
+ "human_description": "This is the data query for report 'CandlestickChartReport'. Language: SQL. Query: SELECT * FROM Orders WHERE OrderID <= $P{MaxOrderID} ORDER BY ShipCountry",
+ "raw_xml": "SELECT * FROM Orders WHERE OrderID <= $P{MaxOrderID} ORDER BY ShipCountry\n\t",
+ "context": "Report 'CandlestickChartReport' data query",
+ "metadata": {
+ "query_language": "sql",
+ "full_sql": "SELECT * FROM Orders WHERE OrderID <= $P{MaxOrderID} ORDER BY ShipCountry"
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "parameters",
+ "human_description": "These are all parameter definitions for report 'CandlestickChartReport', total 2 parameters. Parameters: ReportTitle(java.lang.String), MaxOrderID(java.lang.Integer).",
+ "raw_xml": "\n\t\t\"Candlestick Chart Report\"\n\t\n\t\n\n\t\t12500\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' parameter definitions",
+ "metadata": {
+ "parameter_names": [
+ "ReportTitle",
+ "MaxOrderID"
+ ],
+ "parameter_types": {
+ "ReportTitle": "java.lang.String",
+ "MaxOrderID": "java.lang.Integer"
+ },
+ "default_values": {
+ "ReportTitle": "\"Candlestick Chart Report\"",
+ "MaxOrderID": "12500"
+ },
+ "count": 2
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'CandlestickChartReport': ShippedDate, type: java.sql.Timestamp",
+ "raw_xml": "\n\t",
+ "context": "Report 'CandlestickChartReport' field 'ShippedDate'",
+ "metadata": {
+ "field_name": "ShippedDate",
+ "field_class": "java.sql.Timestamp",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'CandlestickChartReport': ShipCountry, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'CandlestickChartReport' field 'ShipCountry'",
+ "metadata": {
+ "field_name": "ShipCountry",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 6,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'CandlestickChartReport': RequiredDate, type: java.sql.Timestamp",
+ "raw_xml": "\n\t",
+ "context": "Report 'CandlestickChartReport' field 'RequiredDate'",
+ "metadata": {
+ "field_name": "RequiredDate",
+ "field_class": "java.sql.Timestamp",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'CandlestickChartReport': CustomerID, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'CandlestickChartReport' field 'CustomerID'",
+ "metadata": {
+ "field_name": "CustomerID",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 8,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'CandlestickChartReport': OrderID, type: java.lang.Integer",
+ "raw_xml": "\n\t",
+ "context": "Report 'CandlestickChartReport' field 'OrderID'",
+ "metadata": {
+ "field_name": "OrderID",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'CandlestickChartReport': ShipName, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'CandlestickChartReport' field 'ShipName'",
+ "metadata": {
+ "field_name": "ShipName",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'CandlestickChartReport': ShipVia, type: java.lang.Integer",
+ "raw_xml": "\n\t",
+ "context": "Report 'CandlestickChartReport' field 'ShipVia'",
+ "metadata": {
+ "field_name": "ShipVia",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 11,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'CandlestickChartReport': ShipPostalCode, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'CandlestickChartReport' field 'ShipPostalCode'",
+ "metadata": {
+ "field_name": "ShipPostalCode",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 12,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'CandlestickChartReport': OrderDate, type: java.sql.Timestamp",
+ "raw_xml": "\n\t",
+ "context": "Report 'CandlestickChartReport' field 'OrderDate'",
+ "metadata": {
+ "field_name": "OrderDate",
+ "field_class": "java.sql.Timestamp",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 13,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'CandlestickChartReport': ShipCity, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'CandlestickChartReport' field 'ShipCity'",
+ "metadata": {
+ "field_name": "ShipCity",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'CandlestickChartReport': ShipAddress, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'CandlestickChartReport' field 'ShipAddress'",
+ "metadata": {
+ "field_name": "ShipAddress",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'CandlestickChartReport': EmployeeID, type: java.lang.Integer",
+ "raw_xml": "\n\t",
+ "context": "Report 'CandlestickChartReport' field 'EmployeeID'",
+ "metadata": {
+ "field_name": "EmployeeID",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 16,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'CandlestickChartReport': ShipRegion, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'CandlestickChartReport' field 'ShipRegion'",
+ "metadata": {
+ "field_name": "ShipRegion",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 17,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'CandlestickChartReport': Freight, type: java.lang.Double",
+ "raw_xml": "\n\t",
+ "context": "Report 'CandlestickChartReport' field 'Freight'",
+ "metadata": {
+ "field_name": "Freight",
+ "field_class": "java.lang.Double",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_none",
+ "human_description": "These are variable definitions for report 'CandlestickChartReport' (resetType=None), total 1 variables. Variables: FirstLetter(java.lang.String, Nothing).",
+ "raw_xml": "\n\t\t$F{ShipCountry}.substring(0, 1).toUpperCase()\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' variable definitions (None level reset)",
+ "metadata": {
+ "variable_names": [
+ "FirstLetter"
+ ],
+ "variable_types": {
+ "FirstLetter": "java.lang.String"
+ },
+ "variable_calculations": {
+ "FirstLetter": "Nothing"
+ },
+ "reset_type": "None",
+ "expressions": {
+ "FirstLetter": {
+ "type": "expression",
+ "value": "$F{ShipCountry}.substring(0, 1).toUpperCase()"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_group",
+ "human_description": "These are variable definitions for report 'CandlestickChartReport' (resetType=Group), total 4 variables. Variables: FreightSumFirstLetterGroup(java.lang.Double, Sum), FreightSumCountryGroup(java.lang.Double, Sum), DateHighestCountryGroup(java.sql.Timestamp, Highest), RegionCountCountryGroup(java.lang.Integer, Count).",
+ "raw_xml": "\n\t\t$F{Freight}\n\t\n\t\n\n\t\t$F{Freight}\n\t\n\t\n\n\t\t$F{OrderDate}\n\t\n\t\n\n\t\t$F{ShipRegion}\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' variable definitions (Group level reset)",
+ "metadata": {
+ "variable_names": [
+ "FreightSumFirstLetterGroup",
+ "FreightSumCountryGroup",
+ "DateHighestCountryGroup",
+ "RegionCountCountryGroup"
+ ],
+ "variable_types": {
+ "FreightSumFirstLetterGroup": "java.lang.Double",
+ "FreightSumCountryGroup": "java.lang.Double",
+ "DateHighestCountryGroup": "java.sql.Timestamp",
+ "RegionCountCountryGroup": "java.lang.Integer"
+ },
+ "variable_calculations": {
+ "FreightSumFirstLetterGroup": "Sum",
+ "FreightSumCountryGroup": "Sum",
+ "DateHighestCountryGroup": "Highest",
+ "RegionCountCountryGroup": "Count"
+ },
+ "reset_type": "Group",
+ "expressions": {
+ "FreightSumFirstLetterGroup": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ },
+ "FreightSumCountryGroup": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ },
+ "DateHighestCountryGroup": {
+ "type": "expression",
+ "value": "$F{OrderDate}"
+ },
+ "RegionCountCountryGroup": {
+ "type": "expression",
+ "value": "$F{ShipRegion}"
+ }
+ },
+ "count": 4
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_column",
+ "human_description": "These are variable definitions for report 'CandlestickChartReport' (resetType=Column), total 1 variables. Variables: FreightSumColumn(java.lang.Double, Sum).",
+ "raw_xml": "\n\t\t$F{Freight}\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' variable definitions (Column level reset)",
+ "metadata": {
+ "variable_names": [
+ "FreightSumColumn"
+ ],
+ "variable_types": {
+ "FreightSumColumn": "java.lang.Double"
+ },
+ "variable_calculations": {
+ "FreightSumColumn": "Sum"
+ },
+ "reset_type": "Column",
+ "expressions": {
+ "FreightSumColumn": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_page",
+ "human_description": "These are variable definitions for report 'CandlestickChartReport' (resetType=Page), total 1 variables. Variables: FreightSumPage(java.lang.Double, Sum).",
+ "raw_xml": "\n\t\t$F{Freight}\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' variable definitions (Page level reset)",
+ "metadata": {
+ "variable_names": [
+ "FreightSumPage"
+ ],
+ "variable_types": {
+ "FreightSumPage": "java.lang.Double"
+ },
+ "variable_calculations": {
+ "FreightSumPage": "Sum"
+ },
+ "reset_type": "Page",
+ "expressions": {
+ "FreightSumPage": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_report",
+ "human_description": "These are variable definitions for report 'CandlestickChartReport' (resetType=Report), total 1 variables. Variables: FreightSumReport(java.lang.Double, Sum).",
+ "raw_xml": "\n\t\t$F{Freight}\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' variable definitions (Report level reset)",
+ "metadata": {
+ "variable_names": [
+ "FreightSumReport"
+ ],
+ "variable_types": {
+ "FreightSumReport": "java.lang.Double"
+ },
+ "variable_calculations": {
+ "FreightSumReport": "Sum"
+ },
+ "reset_type": "Report",
+ "expressions": {
+ "FreightSumReport": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 23,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'CandlestickChartReport', total 5 styles. Styles: Sans_Normal, Sans_Bold, Sans_Italic, Serif_Normal, Serif_Bold. Default style: Sans_Normal.",
+ "raw_xml": "\n\t\n\n\t\n\n\t\n\n\t\n\n\t",
+ "context": "Report 'CandlestickChartReport' style definitions",
+ "metadata": {
+ "style_names": [
+ "Sans_Normal",
+ "Sans_Bold",
+ "Sans_Italic",
+ "Serif_Normal",
+ "Serif_Bold"
+ ],
+ "default_style": "Sans_Normal",
+ "has_conditional_styles": false,
+ "count": 5
+ }
+ },
+ {
+ "chunk_id": 24,
+ "chunk_type": "group",
+ "human_description": "This is group 'FirstLetterGroup' definition for report 'CandlestickChartReport'. Group expression: $V{FirstLetter}. Has groupHeader: Yes, has groupFooter: Yes. Min height: 200, start new column: true, reprint header: false.",
+ "raw_xml": "\n\t\t$V{FirstLetter}\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tCountries Starting With Letter :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FirstLetter}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tCount :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FirstLetterGroup_COUNT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tTotal :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FreightSumFirstLetterGroup}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' group 'FirstLetterGroup'",
+ "metadata": {
+ "group_name": "FirstLetterGroup",
+ "expression": "$V{FirstLetter}",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "200",
+ "startNewColumn": "true",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 25,
+ "chunk_type": "group",
+ "human_description": "This is group 'CountryGroup' definition for report 'CandlestickChartReport'. Group expression: $F{ShipCountry}. Has groupHeader: Yes, has groupFooter: Yes. Min height: 0, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t$F{ShipCountry}\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{DateHighestCountryGroup}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Freight\"\n\t\t\t\t\t\t$V{DateHighestCountryGroup}\n\t\t\t\t\t\t$V{FreightSumCountryGroup} * 1.6d\n\t\t\t\t\t\t$V{FreightSumCountryGroup} * 0.4d\n\t\t\t\t\t\t$V{FreightSumCountryGroup} * 0.7d\n\t\t\t\t\t\t$V{FreightSumCountryGroup} * 1.4d\n\t\t\t\t\t\t$V{FreightSumCountryGroup} * 0.5d\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tCount :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{CountryGroup_COUNT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tTotal :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FreightSumCountryGroup}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' group 'CountryGroup'",
+ "metadata": {
+ "group_name": "CountryGroup",
+ "expression": "$F{ShipCountry}",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "0",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CandlestickChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Candlestick Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCandlestick Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Candlestick Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'CandlestickChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CandlestickChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CandlestickChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'CandlestickChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'CandlestickChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CandlestickChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Candlestick Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCandlestick Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Candlestick Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'CandlestickChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CandlestickChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CandlestickChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'CandlestickChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'CandlestickChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CandlestickChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Candlestick Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCandlestick Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Candlestick Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'CandlestickChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CandlestickChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CandlestickChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'CandlestickChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'CandlestickChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CandlestickChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Candlestick Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCandlestick Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Candlestick Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'CandlestickChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CandlestickChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CandlestickChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'CandlestickChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'CandlestickChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CandlestickChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Candlestick Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCandlestick Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Candlestick Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'CandlestickChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CandlestickChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CandlestickChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'CandlestickChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'CandlestickChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CandlestickChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Candlestick Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCandlestick Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Candlestick Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'CandlestickChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CandlestickChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CandlestickChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'CandlestickChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'CandlestickChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CandlestickChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Candlestick Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCandlestick Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Candlestick Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'CandlestickChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CandlestickChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CandlestickChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'CandlestickChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'CandlestickChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CandlestickChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Candlestick Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCandlestick Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Candlestick Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'CandlestickChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CandlestickChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CandlestickChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'CandlestickChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'CandlestickChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CandlestickChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Candlestick Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCandlestick Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Candlestick Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'CandlestickChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CandlestickChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CandlestickChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'CandlestickChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'CandlestickChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CandlestickChartReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x elementGroup, 1x staticText. Visible text samples: Candlestick Chart Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCandlestick Chart Report\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Candlestick Chart Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'CandlestickChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 4
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CandlestickChartReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=13).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CandlestickChartReport', height: 30 pixels, splitType: Stretch. Contains 8 elements: 1x rectangle, 3x staticText, 4x textField. Visible text samples: Count :; ${$V{PAGE_COUNT}}; Total : ... and 7 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{PAGE_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumPage}\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t/\n\t\t\n\t\t\n\t\t\t$V{PAGE_NUMBER}\n\t\t\n\t\n",
+ "context": "Report 'CandlestickChartReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 3,
+ "textField": 4
+ },
+ "element_count": 8,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{PAGE_COUNT}}",
+ "Total :",
+ "${$V{FreightSumPage}}",
+ "${$V{PAGE_NUMBER}}",
+ "/",
+ "${$V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'CandlestickChartReport', height: 11 pixels, splitType: Stretch. Contains 5 elements: 1x rectangle, 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'CandlestickChartReport' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "rectangle": 1,
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 5,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 76,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'CandlestickChartReport', type: candlestick. Dataset kind: highLow. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\n\t\t\t\t\t\t\"Freight\"\n\t\t\t\t\t\t$V{DateHighestCountryGroup}\n\t\t\t\t\t\t$V{FreightSumCountryGroup} * 1.6d\n\t\t\t\t\t\t$V{FreightSumCountryGroup} * 0.4d\n\t\t\t\t\t\t$V{FreightSumCountryGroup} * 0.7d\n\t\t\t\t\t\t$V{FreightSumCountryGroup} * 1.4d\n\t\t\t\t\t\t$V{FreightSumCountryGroup} * 0.5d\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'CandlestickChartReport' chart",
+ "metadata": {
+ "chart_type": "candlestick",
+ "dataset": {
+ "kind": "highLow",
+ "series": []
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "candlestick",
+ "uuid": "eca7eecd-b7f9-456f-af3c-3127700ef43a",
+ "positionType": "Float",
+ "x": "0",
+ "y": "25",
+ "width": "270",
+ "height": "175",
+ "evaluationTime": "Group",
+ "evaluationGroup": "CountryGroup"
+ }
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'ChartCustomizersReport'. Page size: 595 x 842 portrait. Contains 0 standard bands with content: none. Defines 0 fields: none. Defines 0 parameters: none. Defines 0 variables: none. Defines 1 groups: Charts. Contains 2 charts.",
+ "raw_xml": "",
+ "context": "Report 'ChartCustomizersReport' overall structure overview",
+ "metadata": {
+ "report_name": "ChartCustomizersReport",
+ "bands": [],
+ "field_count": 0,
+ "parameter_count": 0,
+ "variable_count": 0,
+ "group_count": 1,
+ "chart_count": 2,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": null,
+ "source": null,
+ "query_language": null,
+ "properties": {
+ "net.sf.jasperreports.export.xls.ignore.graphics": "false",
+ "net.sf.jasperreports.chart.render.type": "svg",
+ "net.sf.jasperreports.image.dpi": "150"
+ }
+ },
+ "attributes": {
+ "name": "ChartCustomizersReport",
+ "language": "java",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "whenNoDataType": "AllSectionsNoDetail",
+ "columnWidth": "555",
+ "leftMargin": "20",
+ "rightMargin": "20",
+ "topMargin": "20",
+ "bottomMargin": "20",
+ "uuid": "bce0058f-ad1c-4b93-9d6b-6289cc922a3c"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "dataset",
+ "human_description": "This is dataset 'categoryDataset' definition for report 'ChartCustomizersReport'. Contains 3 fields: full_name, amount, sales_state. Contains 0 parameters: none. No query.",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\t$F{amount}\n\t\t\n\t\t\n\t\t\t$F{full_name}\n\t\t\n\t\t\n\t\t\t$F{sales_state}\n\t\t\n\t\n\t",
+ "context": "Report 'ChartCustomizersReport' dataset 'categoryDataset'",
+ "metadata": {
+ "dataset_name": "categoryDataset",
+ "field_names": [
+ "full_name",
+ "amount",
+ "sales_state"
+ ],
+ "parameter_names": [],
+ "query": "",
+ "query_language": "",
+ "properties": {
+ "net.sf.jasperreports.data.adapter": "data/CategoryCsvDataAdapter.jrdax"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "dataset",
+ "human_description": "This is dataset 'xyDataset' definition for report 'ChartCustomizersReport'. Contains 3 fields: amount, probability, sales_state. Contains 0 parameters: none. No query.",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\t$F{sales_state}\n\t\t\n\t\t\n\t\t\t$F{probability}\n\t\t\n\t\t\n\t\t\t$F{amount}\n\t\t\n\t\n\t",
+ "context": "Report 'ChartCustomizersReport' dataset 'xyDataset'",
+ "metadata": {
+ "dataset_name": "xyDataset",
+ "field_names": [
+ "amount",
+ "probability",
+ "sales_state"
+ ],
+ "parameter_names": [],
+ "query": "",
+ "query_language": "",
+ "properties": {
+ "net.sf.jasperreports.data.adapter": "data/XYCsvDataAdapter.jrdax"
+ }
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "group",
+ "human_description": "This is group 'Charts' definition for report 'ChartCustomizersReport'. Group expression: . Has groupHeader: Yes, has groupFooter: No. Min height: 0, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"Bar Chart\"\n\t\t\t\t\t\"Chart Displaying Bars\"\n\t\t\t\t\t\"Bar Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{full_name}\n\t\t\t\t\t\t\t$V{personAmount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Name\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\"10\"\n\t\t\t\t\t\"10\"\n\t\t\t\t\tnet.sf.jasperreports.samples.chartcustomizers.StarShapePoints.INSTANCE.encode()\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"XY Line Chart\"\n\t\t\t\t\t\"Chart Displaying Lines\"\n\t\t\t\t\t\"XY Line Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{probability}\n\t\t\t\t\t\t\t$F{amount} + $F{amount} * Math.sin($V{REPORT_COUNT} * Math.log(1 + $V{REPORT_COUNT}))\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Probability\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'ChartCustomizersReport' group 'Charts'",
+ "metadata": {
+ "group_name": "Charts",
+ "expression": "",
+ "has_header": true,
+ "has_footer": false,
+ "minHeightToStartNewPage": "0",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'ChartCustomizersReport', type: bar. Dataset kind: category. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\"Bar Chart\"\n\t\t\t\t\t\"Chart Displaying Bars\"\n\t\t\t\t\t\"Bar Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{full_name}\n\t\t\t\t\t\t\t$V{personAmount}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Name\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\"10\"\n\t\t\t\t\t\"10\"\n\t\t\t\t\tnet.sf.jasperreports.samples.chartcustomizers.StarShapePoints.INSTANCE.encode()\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'ChartCustomizersReport' chart",
+ "metadata": {
+ "chart_type": "bar",
+ "dataset": {
+ "kind": "category",
+ "series": [
+ {
+ "key": "",
+ "value": "$V{personAmount}"
+ }
+ ]
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "bar",
+ "uuid": "a962938e-0a96-45ca-a4dc-0d0f381d6dd8",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "300",
+ "evaluationTime": "Report"
+ }
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "chart",
+ "human_description": "This is a chart element in report 'ChartCustomizersReport', type: xyLine. Dataset kind: xy. Label format: .",
+ "raw_xml": "\n\t\t\t\t\t\"XY Line Chart\"\n\t\t\t\t\t\"Chart Displaying Lines\"\n\t\t\t\t\t\"XY Line Chart\"\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t$F{sales_state}\n\t\t\t\t\t\t\t$F{probability}\n\t\t\t\t\t\t\t$F{amount} + $F{amount} * Math.sin($V{REPORT_COUNT} * Math.log(1 + $V{REPORT_COUNT}))\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\"Probability\"\n\t\t\t\t\t\t\"Amount\"\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t",
+ "context": "Report 'ChartCustomizersReport' chart",
+ "metadata": {
+ "chart_type": "xyLine",
+ "dataset": {
+ "kind": "xy",
+ "series": [
+ {
+ "key": "",
+ "value": ""
+ }
+ ]
+ },
+ "plot": {
+ "labelFormat": "",
+ "legendLabelFormat": ""
+ },
+ "attributes": {
+ "kind": "chart",
+ "chartType": "xyLine",
+ "uuid": "82e1a762-637c-4508-ab62-167cb116792b",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "300",
+ "evaluationTime": "Report"
+ }
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'CsvDataSourceReport'. Page size: 595 x 842 portrait. Contains 5 standard bands with content: title, pageHeader, detail, pageFooter, lastPageFooter. Defines 5 fields: id, name, address, city, state. Defines 3 parameters: ReportTitle, DataFile, IncludedStates. Defines 1 variables: CityNumber. Defines 1 groups: CityGroup. Data source type: DataAdapter. Source: SampleCsvDataSource.jrdax.",
+ "raw_xml": "",
+ "context": "Report 'CsvDataSourceReport' overall structure overview",
+ "metadata": {
+ "report_name": "CsvDataSourceReport",
+ "bands": [
+ "title",
+ "pageHeader",
+ "detail",
+ "pageFooter",
+ "lastPageFooter"
+ ],
+ "field_count": 5,
+ "parameter_count": 3,
+ "variable_count": 1,
+ "group_count": 1,
+ "chart_count": 0,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "DataAdapter",
+ "source": "SampleCsvDataSource.jrdax",
+ "query_language": null,
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "csvdatasource/SampleCsvDataSource.xml",
+ "net.sf.jasperreports.data.adapter": "SampleCsvDataSource.jrdax"
+ }
+ },
+ "attributes": {
+ "name": "CsvDataSourceReport",
+ "language": "java",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "columnWidth": "515",
+ "leftMargin": "40",
+ "rightMargin": "40",
+ "topMargin": "50",
+ "bottomMargin": "50",
+ "uuid": "cf9695b1-22d1-4645-b4bf-df690d992591"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'CsvDataSourceReport'. Data adapter: csvdatasource/SampleCsvDataSource.xml. Data adapter: SampleCsvDataSource.jrdax.",
+ "raw_xml": "\n",
+ "context": "Report 'CsvDataSourceReport' data source configuration",
+ "metadata": {
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "csvdatasource/SampleCsvDataSource.xml",
+ "net.sf.jasperreports.data.adapter": "SampleCsvDataSource.jrdax"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "parameters",
+ "human_description": "These are all parameter definitions for report 'CsvDataSourceReport', total 3 parameters. Parameters: ReportTitle(java.lang.String), DataFile(java.lang.String), IncludedStates(java.util.Set).",
+ "raw_xml": "\n\t\t\n\t\t\"Address Report\"\n\t\n\t\n\n\t\t\"CsvDataSource.txt - CSV data source\"\n\t\n\t\n\n\t\tnew HashSet(Arrays.asList(new String[] { \"Trial\", \"Active\", \"Suspended\", \"Deleted\", }))\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' parameter definitions",
+ "metadata": {
+ "parameter_names": [
+ "ReportTitle",
+ "DataFile",
+ "IncludedStates"
+ ],
+ "parameter_types": {
+ "ReportTitle": "java.lang.String",
+ "DataFile": "java.lang.String",
+ "IncludedStates": "java.util.Set"
+ },
+ "default_values": {
+ "ReportTitle": "\"Address Report\"",
+ "DataFile": "\"CsvDataSource.txt - CSV data source\"",
+ "IncludedStates": "new HashSet(Arrays.asList(new String[] { \"Trial\", \"Active\", \"Suspended\", \"Deleted\", }))"
+ },
+ "count": 3
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "fields",
+ "human_description": "These are all field definitions for report 'CsvDataSourceReport', total 5 fields. Fields: id(java.lang.Integer), name(java.lang.String), address(java.lang.String), city(java.lang.String), state(java.lang.String).",
+ "raw_xml": "\n\t\tid\n\t\n\t\n\n\t\tname\n\t\n\t\n\n\t\tstreet address\n\t\n\t\n\n\t\tcity\n\t\n\t\n\n\t\tstate\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' field definitions",
+ "metadata": {
+ "field_names": [
+ "id",
+ "name",
+ "address",
+ "city",
+ "state"
+ ],
+ "field_types": {
+ "id": "java.lang.Integer",
+ "name": "java.lang.String",
+ "address": "java.lang.String",
+ "city": "java.lang.String",
+ "state": "java.lang.String"
+ },
+ "field_expressions": {},
+ "count": 5
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "sortFields",
+ "human_description": "These are sort field definitions for report 'CsvDataSourceReport', total 2 fields. Sorts: city (Descending), name (Ascending).",
+ "raw_xml": "\n\t\n\n\t",
+ "context": "Report 'CsvDataSourceReport' sort field definitions",
+ "metadata": {
+ "sortFields": [
+ {
+ "name": "city",
+ "order": "Descending"
+ },
+ {
+ "name": "name",
+ "order": "Ascending"
+ }
+ ],
+ "count": 2
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "filterExpression",
+ "human_description": "This is the filter expression for report 'CsvDataSourceReport': $P{IncludedStates}.contains($F{state})",
+ "raw_xml": "$P{IncludedStates}.contains($F{state})\n\t",
+ "context": "Report 'CsvDataSourceReport' filter expression",
+ "metadata": {
+ "filter_expression": "$P{IncludedStates}.contains($F{state})"
+ }
+ },
+ {
+ "chunk_id": 6,
+ "chunk_type": "variables_report",
+ "human_description": "These are variable definitions for report 'CsvDataSourceReport' (resetType=Report), total 1 variables. Variables: CityNumber(java.lang.Integer, Count).",
+ "raw_xml": "\n\t\tBoolean.TRUE\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' variable definitions (Report level reset)",
+ "metadata": {
+ "variable_names": [
+ "CityNumber"
+ ],
+ "variable_types": {
+ "CityNumber": "java.lang.Integer"
+ },
+ "variable_calculations": {
+ "CityNumber": "Count"
+ },
+ "reset_type": "Report",
+ "expressions": {
+ "CityNumber": {
+ "type": "expression",
+ "value": "Boolean.TRUE"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'CsvDataSourceReport', total 3 styles. Styles: Sans_Normal, Sans_Bold, Sans_Italic. Default style: Sans_Normal.",
+ "raw_xml": "\n\t\n\n\t\n\n\t",
+ "context": "Report 'CsvDataSourceReport' style definitions",
+ "metadata": {
+ "style_names": [
+ "Sans_Normal",
+ "Sans_Bold",
+ "Sans_Italic"
+ ],
+ "default_style": "Sans_Normal",
+ "has_conditional_styles": false,
+ "count": 3
+ }
+ },
+ {
+ "chunk_id": 8,
+ "chunk_type": "group",
+ "human_description": "This is group 'CityGroup' definition for report 'CsvDataSourceReport'. Group expression: $F{city}. Has groupHeader: Yes, has groupFooter: Yes. Min height: 60, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t$F{city}\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\" \" + String.valueOf($V{CityNumber}) + \". \" + String.valueOf($F{city})\n\t\t\t\t\tString.valueOf($F{city})\n\t\t\t\t\t1\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\tCount :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{CityGroup_COUNT}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' group 'CityGroup'",
+ "metadata": {
+ "group_name": "CityGroup",
+ "expression": "$F{city}",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "60",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CsvDataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\t1\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CsvDataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t2\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CsvDataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'CsvDataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\t1\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CsvDataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CsvDataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CsvDataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\t1\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CsvDataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t2\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CsvDataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'CsvDataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\t1\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CsvDataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CsvDataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CsvDataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\t1\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CsvDataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t2\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CsvDataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'CsvDataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\t1\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CsvDataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CsvDataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CsvDataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\t1\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CsvDataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t2\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CsvDataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'CsvDataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\t1\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CsvDataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CsvDataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CsvDataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\t1\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CsvDataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t2\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CsvDataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'CsvDataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\t1\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CsvDataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CsvDataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CsvDataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\t1\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CsvDataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t2\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CsvDataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'CsvDataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\t1\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CsvDataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CsvDataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CsvDataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\t1\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CsvDataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t2\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CsvDataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'CsvDataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\t1\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CsvDataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CsvDataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CsvDataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\t1\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CsvDataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t2\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CsvDataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'CsvDataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\t1\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CsvDataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CsvDataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CsvDataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\t1\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CsvDataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t2\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CsvDataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'CsvDataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\t1\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CsvDataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CsvDataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CsvDataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\t1\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CsvDataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t2\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CsvDataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'CsvDataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\t1\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CsvDataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CsvDataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'CsvDataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'CsvQueryExecuterReport'. Page size: 595 x 842 portrait. Contains 5 standard bands with content: title, pageHeader, detail, pageFooter, lastPageFooter. Defines 5 fields: id, name, address, city, state. Defines 4 parameters: ReportTitle, DataFile, IncludedStates, net.sf.jasperreports.csv.record.delimiter. Defines 1 variables: CityNumber. Defines 1 groups: CityGroup. Data source type: CSV. Source: CsvDataSource.txt. Query language: csv.",
+ "raw_xml": "",
+ "context": "Report 'CsvQueryExecuterReport' overall structure overview",
+ "metadata": {
+ "report_name": "CsvQueryExecuterReport",
+ "bands": [
+ "title",
+ "pageHeader",
+ "detail",
+ "pageFooter",
+ "lastPageFooter"
+ ],
+ "field_count": 5,
+ "parameter_count": 4,
+ "variable_count": 1,
+ "group_count": 1,
+ "chart_count": 0,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "CSV",
+ "source": "CsvDataSource.txt",
+ "query_language": "csv",
+ "properties": {
+ "net.sf.jasperreports.csv.column.names": "city, id, name, address, state",
+ "net.sf.jasperreports.csv.source": "CsvDataSource.txt",
+ "com.jaspersoft.studio.data.defaultdataadapter": "NO_DATA_ADAPTER"
+ }
+ },
+ "attributes": {
+ "name": "CsvQueryExecuterReport",
+ "language": "java",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "columnWidth": "515",
+ "leftMargin": "40",
+ "rightMargin": "40",
+ "topMargin": "50",
+ "bottomMargin": "50",
+ "uuid": "0ea54dcd-0e74-4b7d-8095-b72206b9a813"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'CsvQueryExecuterReport'. Data source: CsvDataSource.txt. Data adapter: NO_DATA_ADAPTER.",
+ "raw_xml": "\n\n",
+ "context": "Report 'CsvQueryExecuterReport' data source configuration",
+ "metadata": {
+ "properties": {
+ "net.sf.jasperreports.csv.column.names": "city, id, name, address, state",
+ "net.sf.jasperreports.csv.source": "CsvDataSource.txt",
+ "com.jaspersoft.studio.data.defaultdataadapter": "NO_DATA_ADAPTER"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "query",
+ "human_description": "This is the data query for report 'CsvQueryExecuterReport'. Language: CSV. Query: ",
+ "raw_xml": "\n\t",
+ "context": "Report 'CsvQueryExecuterReport' data query",
+ "metadata": {
+ "query_language": "csv",
+ "full_sql": ""
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "parameters",
+ "human_description": "These are all parameter definitions for report 'CsvQueryExecuterReport', total 4 parameters. Parameters: ReportTitle(java.lang.String), DataFile(java.lang.String), IncludedStates(java.util.Set), net.sf.jasperreports.csv.record.delimiter(java.lang.String).",
+ "raw_xml": "\n\t\t\"Address Report\"\n\t\n\t\n\n\t\t\"CsvDataSource.txt - CSV query executer\"\n\t\n\t\n\n\t\tnew HashSet(Arrays.asList(new String[] { \"Trial\", \"Active\", \"Suspended\", \"Deleted\", }))\n\t\n\t\n\n\t\t\"\\r\\n\"\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' parameter definitions",
+ "metadata": {
+ "parameter_names": [
+ "ReportTitle",
+ "DataFile",
+ "IncludedStates",
+ "net.sf.jasperreports.csv.record.delimiter"
+ ],
+ "parameter_types": {
+ "ReportTitle": "java.lang.String",
+ "DataFile": "java.lang.String",
+ "IncludedStates": "java.util.Set",
+ "net.sf.jasperreports.csv.record.delimiter": "java.lang.String"
+ },
+ "default_values": {
+ "ReportTitle": "\"Address Report\"",
+ "DataFile": "\"CsvDataSource.txt - CSV query executer\"",
+ "IncludedStates": "new HashSet(Arrays.asList(new String[] { \"Trial\", \"Active\", \"Suspended\", \"Deleted\", }))",
+ "net.sf.jasperreports.csv.record.delimiter": "\"\\r\\n\""
+ },
+ "count": 4
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "fields",
+ "human_description": "These are all field definitions for report 'CsvQueryExecuterReport', total 5 fields. Fields: id(java.lang.Integer), name(java.lang.String), address(java.lang.String), city(java.lang.String), state(java.lang.String).",
+ "raw_xml": "\n\t\n\n\t\n\n\t\n\n\t\n\n\t",
+ "context": "Report 'CsvQueryExecuterReport' field definitions",
+ "metadata": {
+ "field_names": [
+ "id",
+ "name",
+ "address",
+ "city",
+ "state"
+ ],
+ "field_types": {
+ "id": "java.lang.Integer",
+ "name": "java.lang.String",
+ "address": "java.lang.String",
+ "city": "java.lang.String",
+ "state": "java.lang.String"
+ },
+ "field_expressions": {},
+ "count": 5
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "sortFields",
+ "human_description": "These are sort field definitions for report 'CsvQueryExecuterReport', total 2 fields. Sorts: city (Descending), name (Ascending).",
+ "raw_xml": "\n\t\n\n\t",
+ "context": "Report 'CsvQueryExecuterReport' sort field definitions",
+ "metadata": {
+ "sortFields": [
+ {
+ "name": "city",
+ "order": "Descending"
+ },
+ {
+ "name": "name",
+ "order": "Ascending"
+ }
+ ],
+ "count": 2
+ }
+ },
+ {
+ "chunk_id": 6,
+ "chunk_type": "filterExpression",
+ "human_description": "This is the filter expression for report 'CsvQueryExecuterReport': $P{IncludedStates}.contains($F{state})",
+ "raw_xml": "$P{IncludedStates}.contains($F{state})\n\t",
+ "context": "Report 'CsvQueryExecuterReport' filter expression",
+ "metadata": {
+ "filter_expression": "$P{IncludedStates}.contains($F{state})"
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "variables_report",
+ "human_description": "These are variable definitions for report 'CsvQueryExecuterReport' (resetType=Report), total 1 variables. Variables: CityNumber(java.lang.Integer, Count).",
+ "raw_xml": "\n\t\tBoolean.TRUE\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' variable definitions (Report level reset)",
+ "metadata": {
+ "variable_names": [
+ "CityNumber"
+ ],
+ "variable_types": {
+ "CityNumber": "java.lang.Integer"
+ },
+ "variable_calculations": {
+ "CityNumber": "Count"
+ },
+ "reset_type": "Report",
+ "expressions": {
+ "CityNumber": {
+ "type": "expression",
+ "value": "Boolean.TRUE"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 8,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'CsvQueryExecuterReport', total 3 styles. Styles: Sans_Normal, Sans_Bold, Sans_Italic. Default style: Sans_Normal.",
+ "raw_xml": "\n\t\n\n\t\n\n\t",
+ "context": "Report 'CsvQueryExecuterReport' style definitions",
+ "metadata": {
+ "style_names": [
+ "Sans_Normal",
+ "Sans_Bold",
+ "Sans_Italic"
+ ],
+ "default_style": "Sans_Normal",
+ "has_conditional_styles": false,
+ "count": 3
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "group",
+ "human_description": "This is group 'CityGroup' definition for report 'CsvQueryExecuterReport'. Group expression: $F{city}. Has groupHeader: Yes, has groupFooter: Yes. Min height: 60, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t$F{city}\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\" \" + String.valueOf($V{CityNumber}) + \". \" + String.valueOf($F{city})\n\t\t\t\t\tString.valueOf($F{city})\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\tCount :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{CityGroup_COUNT}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' group 'CityGroup'",
+ "metadata": {
+ "group_name": "CityGroup",
+ "expression": "$F{city}",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "60",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CsvQueryExecuterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CsvQueryExecuterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CsvQueryExecuterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'CsvQueryExecuterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CsvQueryExecuterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CsvQueryExecuterReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CsvQueryExecuterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CsvQueryExecuterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CsvQueryExecuterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'CsvQueryExecuterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CsvQueryExecuterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CsvQueryExecuterReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CsvQueryExecuterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CsvQueryExecuterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CsvQueryExecuterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'CsvQueryExecuterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CsvQueryExecuterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CsvQueryExecuterReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CsvQueryExecuterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CsvQueryExecuterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CsvQueryExecuterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'CsvQueryExecuterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CsvQueryExecuterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CsvQueryExecuterReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CsvQueryExecuterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CsvQueryExecuterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CsvQueryExecuterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'CsvQueryExecuterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CsvQueryExecuterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CsvQueryExecuterReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CsvQueryExecuterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CsvQueryExecuterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CsvQueryExecuterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'CsvQueryExecuterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CsvQueryExecuterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CsvQueryExecuterReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CsvQueryExecuterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CsvQueryExecuterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CsvQueryExecuterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'CsvQueryExecuterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CsvQueryExecuterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CsvQueryExecuterReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CsvQueryExecuterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CsvQueryExecuterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CsvQueryExecuterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'CsvQueryExecuterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CsvQueryExecuterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CsvQueryExecuterReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CsvQueryExecuterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CsvQueryExecuterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CsvQueryExecuterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'CsvQueryExecuterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CsvQueryExecuterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CsvQueryExecuterReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CsvQueryExecuterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CsvQueryExecuterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CsvQueryExecuterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'CsvQueryExecuterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CsvQueryExecuterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CsvQueryExecuterReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'CsvQueryExecuterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'CustomersReport'. Page size: 595 x 842 portrait. Contains 4 standard bands with content: title, pageHeader, detail, pageFooter. Defines 2 fields: CustomerID, CompanyName. Defines 0 parameters: none. Defines 0 variables: none. Defines 0 groups: none. Data source type: XML/XPath. Source: NorthwindXML.jrdax. Query language: xpath. Contains 1 subreports.",
+ "raw_xml": "",
+ "context": "Report 'CustomersReport' overall structure overview",
+ "metadata": {
+ "report_name": "CustomersReport",
+ "bands": [
+ "title",
+ "pageHeader",
+ "detail",
+ "pageFooter"
+ ],
+ "field_count": 2,
+ "parameter_count": 0,
+ "variable_count": 0,
+ "group_count": 0,
+ "chart_count": 0,
+ "crosstab_count": 0,
+ "subreport_count": 1,
+ "datasource": {
+ "type": "XML/XPath",
+ "source": "NorthwindXML.jrdax",
+ "query_language": "xpath",
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "xmldatasource/NorthwindXML.jrdax",
+ "net.sf.jasperreports.data.adapter": "NorthwindXML.jrdax"
+ }
+ },
+ "attributes": {
+ "name": "CustomersReport",
+ "language": "java",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "columnWidth": "515",
+ "leftMargin": "40",
+ "rightMargin": "40",
+ "topMargin": "50",
+ "bottomMargin": "50",
+ "uuid": "6386a198-a31e-4f65-936d-2bc9fe5ac907"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'CustomersReport'. Data adapter: xmldatasource/NorthwindXML.jrdax. Data adapter: NorthwindXML.jrdax.",
+ "raw_xml": "\n",
+ "context": "Report 'CustomersReport' data source configuration",
+ "metadata": {
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "xmldatasource/NorthwindXML.jrdax",
+ "net.sf.jasperreports.data.adapter": "NorthwindXML.jrdax"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "query",
+ "human_description": "This is the data query for report 'CustomersReport'. Language: XPATH. Query: /Northwind/Customers",
+ "raw_xml": "/Northwind/Customers\n\t",
+ "context": "Report 'CustomersReport' data query",
+ "metadata": {
+ "query_language": "xpath",
+ "full_sql": "/Northwind/Customers"
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "fields",
+ "human_description": "These are all field definitions for report 'CustomersReport', total 2 fields. Fields: CustomerID(java.lang.String), CompanyName(java.lang.String).",
+ "raw_xml": "\n\t\t\n\t\n\t\n\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' field definitions",
+ "metadata": {
+ "field_names": [
+ "CustomerID",
+ "CompanyName"
+ ],
+ "field_types": {
+ "CustomerID": "java.lang.String",
+ "CompanyName": "java.lang.String"
+ },
+ "field_expressions": {
+ "CustomerID": {
+ "property": "net.sf.jasperreports.xpath.field.expression",
+ "value": "CustomerID"
+ },
+ "CompanyName": {
+ "property": "net.sf.jasperreports.xpath.field.expression",
+ "value": "CompanyName"
+ }
+ },
+ "count": 2
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'CustomersReport', total 3 styles. Styles: Sans_Normal, Sans_Bold, Sans_Italic. Default style: Sans_Normal.",
+ "raw_xml": "\n\t\n\n\t\n\n\t",
+ "context": "Report 'CustomersReport' style definitions",
+ "metadata": {
+ "style_names": [
+ "Sans_Normal",
+ "Sans_Bold",
+ "Sans_Italic"
+ ],
+ "default_style": "Sans_Normal",
+ "has_conditional_styles": false,
+ "count": 3
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CustomersReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x line, 1x staticText. Visible text samples: Customer Orders Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCustomer Orders Report\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Customer Orders Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CustomersReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=50).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{CustomerID}\n\t\t\t\n\t\t\t\n\t\t\t\t(continued)\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\"OrdersReport.jasper\"\n\t\t\t\t\n\t\t\t\t\t$P{XML_DATA_DOCUMENT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_DATE_PATTERN}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_NUMBER_PATTERN}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_LOCALE}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_TIME_ZONE}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$F{CustomerID}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{CompanyName}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CustomersReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CustomersReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CustomersReport', height: 21 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Customer Order List",
+ "raw_xml": "\n\t\t\n\t\t\tCustomer Order List\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "21",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Customer Order List"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CustomersReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x line, 1x staticText. Visible text samples: Customer Orders Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCustomer Orders Report\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Customer Orders Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CustomersReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=50).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{CustomerID}\n\t\t\t\n\t\t\t\n\t\t\t\t(continued)\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\"OrdersReport.jasper\"\n\t\t\t\t\n\t\t\t\t\t$P{XML_DATA_DOCUMENT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_DATE_PATTERN}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_NUMBER_PATTERN}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_LOCALE}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_TIME_ZONE}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$F{CustomerID}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{CompanyName}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CustomersReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CustomersReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CustomersReport', height: 21 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Customer Order List",
+ "raw_xml": "\n\t\t\n\t\t\tCustomer Order List\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "21",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Customer Order List"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CustomersReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x line, 1x staticText. Visible text samples: Customer Orders Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCustomer Orders Report\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Customer Orders Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CustomersReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=50).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{CustomerID}\n\t\t\t\n\t\t\t\n\t\t\t\t(continued)\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\"OrdersReport.jasper\"\n\t\t\t\t\n\t\t\t\t\t$P{XML_DATA_DOCUMENT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_DATE_PATTERN}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_NUMBER_PATTERN}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_LOCALE}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_TIME_ZONE}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$F{CustomerID}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{CompanyName}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CustomersReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CustomersReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CustomersReport', height: 21 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Customer Order List",
+ "raw_xml": "\n\t\t\n\t\t\tCustomer Order List\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "21",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Customer Order List"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CustomersReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x line, 1x staticText. Visible text samples: Customer Orders Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCustomer Orders Report\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Customer Orders Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CustomersReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=50).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{CustomerID}\n\t\t\t\n\t\t\t\n\t\t\t\t(continued)\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\"OrdersReport.jasper\"\n\t\t\t\t\n\t\t\t\t\t$P{XML_DATA_DOCUMENT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_DATE_PATTERN}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_NUMBER_PATTERN}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_LOCALE}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_TIME_ZONE}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$F{CustomerID}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{CompanyName}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CustomersReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CustomersReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CustomersReport', height: 21 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Customer Order List",
+ "raw_xml": "\n\t\t\n\t\t\tCustomer Order List\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "21",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Customer Order List"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CustomersReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x line, 1x staticText. Visible text samples: Customer Orders Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCustomer Orders Report\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Customer Orders Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CustomersReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=50).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{CustomerID}\n\t\t\t\n\t\t\t\n\t\t\t\t(continued)\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\"OrdersReport.jasper\"\n\t\t\t\t\n\t\t\t\t\t$P{XML_DATA_DOCUMENT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_DATE_PATTERN}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_NUMBER_PATTERN}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_LOCALE}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_TIME_ZONE}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$F{CustomerID}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{CompanyName}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CustomersReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CustomersReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CustomersReport', height: 21 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Customer Order List",
+ "raw_xml": "\n\t\t\n\t\t\tCustomer Order List\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "21",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Customer Order List"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CustomersReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x line, 1x staticText. Visible text samples: Customer Orders Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCustomer Orders Report\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Customer Orders Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CustomersReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=50).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{CustomerID}\n\t\t\t\n\t\t\t\n\t\t\t\t(continued)\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\"OrdersReport.jasper\"\n\t\t\t\t\n\t\t\t\t\t$P{XML_DATA_DOCUMENT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_DATE_PATTERN}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_NUMBER_PATTERN}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_LOCALE}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_TIME_ZONE}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$F{CustomerID}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{CompanyName}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CustomersReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CustomersReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CustomersReport', height: 21 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Customer Order List",
+ "raw_xml": "\n\t\t\n\t\t\tCustomer Order List\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "21",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Customer Order List"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CustomersReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x line, 1x staticText. Visible text samples: Customer Orders Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCustomer Orders Report\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Customer Orders Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CustomersReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=50).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{CustomerID}\n\t\t\t\n\t\t\t\n\t\t\t\t(continued)\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\"OrdersReport.jasper\"\n\t\t\t\t\n\t\t\t\t\t$P{XML_DATA_DOCUMENT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_DATE_PATTERN}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_NUMBER_PATTERN}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_LOCALE}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_TIME_ZONE}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$F{CustomerID}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{CompanyName}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CustomersReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CustomersReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CustomersReport', height: 21 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Customer Order List",
+ "raw_xml": "\n\t\t\n\t\t\tCustomer Order List\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "21",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Customer Order List"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CustomersReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x line, 1x staticText. Visible text samples: Customer Orders Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCustomer Orders Report\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Customer Orders Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CustomersReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=50).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{CustomerID}\n\t\t\t\n\t\t\t\n\t\t\t\t(continued)\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\"OrdersReport.jasper\"\n\t\t\t\t\n\t\t\t\t\t$P{XML_DATA_DOCUMENT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_DATE_PATTERN}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_NUMBER_PATTERN}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_LOCALE}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_TIME_ZONE}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$F{CustomerID}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{CompanyName}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CustomersReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CustomersReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CustomersReport', height: 21 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Customer Order List",
+ "raw_xml": "\n\t\t\n\t\t\tCustomer Order List\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "21",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Customer Order List"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CustomersReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x line, 1x staticText. Visible text samples: Customer Orders Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCustomer Orders Report\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Customer Orders Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CustomersReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=50).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{CustomerID}\n\t\t\t\n\t\t\t\n\t\t\t\t(continued)\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\"OrdersReport.jasper\"\n\t\t\t\t\n\t\t\t\t\t$P{XML_DATA_DOCUMENT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_DATE_PATTERN}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_NUMBER_PATTERN}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_LOCALE}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_TIME_ZONE}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$F{CustomerID}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{CompanyName}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CustomersReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CustomersReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CustomersReport', height: 21 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Customer Order List",
+ "raw_xml": "\n\t\t\n\t\t\tCustomer Order List\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "21",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Customer Order List"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'CustomersReport', height: 50 pixels, splitType: Stretch. Contains 2 elements: 1x line, 1x staticText. Visible text samples: Customer Orders Report",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\tCustomer Orders Report\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "50",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "staticText": 1
+ },
+ "element_count": 2,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Customer Orders Report"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'CustomersReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=50).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{CustomerID}\n\t\t\t\n\t\t\t\n\t\t\t\t(continued)\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\"OrdersReport.jasper\"\n\t\t\t\t\n\t\t\t\t\t$P{XML_DATA_DOCUMENT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_DATE_PATTERN}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_NUMBER_PATTERN}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_LOCALE}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_TIME_ZONE}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$F{CustomerID}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{CompanyName}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'CustomersReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'CustomersReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'CustomersReport', height: 21 pixels, splitType: Stretch. Contains 1 elements: 1x staticText. Visible text samples: Customer Order List",
+ "raw_xml": "\n\t\t\n\t\t\tCustomer Order List\n\t\t\n\t\n\t",
+ "context": "Report 'CustomersReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "21",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Customer Order List"
+ ]
+ }
+ },
+ {
+ "chunk_id": 45,
+ "chunk_type": "subreport",
+ "human_description": "This is a subreport element in report 'CustomersReport'. Subreport: \"OrdersReport.jasper\". Subreport parameters: 6 - XML_DATA_DOCUMENT, XML_DATE_PATTERN, XML_NUMBER_PATTERN, XML_LOCALE, XML_TIME_ZONE, CustomerID.",
+ "raw_xml": "\n\t\t\t\t\"OrdersReport.jasper\"\n\t\t\t\t\n\t\t\t\t\t$P{XML_DATA_DOCUMENT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_DATE_PATTERN}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_NUMBER_PATTERN}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_LOCALE}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$P{XML_TIME_ZONE}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$F{CustomerID}\n\t\t\t\t\n\t\t\t\n\t\t\t",
+ "context": "Report 'CustomersReport' subreport",
+ "metadata": {
+ "expression": "\"OrdersReport.jasper\"",
+ "connectionExpression": "",
+ "dataSourceExpression": "",
+ "returnValues": [],
+ "parameters": [
+ {
+ "name": "XML_DATA_DOCUMENT",
+ "expression": "$P{XML_DATA_DOCUMENT}"
+ },
+ {
+ "name": "XML_DATE_PATTERN",
+ "expression": "$P{XML_DATE_PATTERN}"
+ },
+ {
+ "name": "XML_NUMBER_PATTERN",
+ "expression": "$P{XML_NUMBER_PATTERN}"
+ },
+ {
+ "name": "XML_LOCALE",
+ "expression": "$P{XML_LOCALE}"
+ },
+ {
+ "name": "XML_TIME_ZONE",
+ "expression": "$P{XML_TIME_ZONE}"
+ },
+ {
+ "name": "CustomerID",
+ "expression": "$F{CustomerID}"
+ }
+ ],
+ "attributes": {
+ "kind": "subreport",
+ "uuid": "e7de82f1-2e1c-4459-bef3-307e57903e0b",
+ "x": "5",
+ "y": "25",
+ "width": "507",
+ "height": "20",
+ "backcolor": "#FFCC99",
+ "printRepeatedValues": "false",
+ "removeLineWhenBlank": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'DataSourceReport'. Page size: 595 x 842 portrait. Contains 5 standard bands with content: title, pageHeader, detail, pageFooter, lastPageFooter. Defines 4 fields: id, name, street, the_city. Defines 2 parameters: ReportTitle, DataFile. Defines 1 variables: CityNumber. Defines 1 groups: CityGroup. Data source type: DataAdapter. Source: datasource/DataSource1.jrdax.",
+ "raw_xml": "",
+ "context": "Report 'DataSourceReport' overall structure overview",
+ "metadata": {
+ "report_name": "DataSourceReport",
+ "bands": [
+ "title",
+ "pageHeader",
+ "detail",
+ "pageFooter",
+ "lastPageFooter"
+ ],
+ "field_count": 4,
+ "parameter_count": 2,
+ "variable_count": 1,
+ "group_count": 1,
+ "chart_count": 0,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "DataAdapter",
+ "source": "datasource/DataSource1.jrdax",
+ "query_language": null,
+ "properties": {
+ "net.sf.jasperreports.print.create.bookmarks": "true",
+ "com.jaspersoft.studio.data.defaultdataadapter": "datasource/DataSource1.jrdax"
+ }
+ },
+ "attributes": {
+ "name": "DataSourceReport",
+ "language": "java",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "columnWidth": "515",
+ "leftMargin": "40",
+ "rightMargin": "40",
+ "topMargin": "50",
+ "bottomMargin": "50",
+ "uuid": "030574cb-2d4b-4281-8294-0f87619f0d7f"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'DataSourceReport'. Data adapter: datasource/DataSource1.jrdax.",
+ "raw_xml": "",
+ "context": "Report 'DataSourceReport' data source configuration",
+ "metadata": {
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "datasource/DataSource1.jrdax"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "parameters",
+ "human_description": "These are all parameter definitions for report 'DataSourceReport', total 2 parameters. Parameters: ReportTitle(java.lang.String), DataFile(java.lang.String).",
+ "raw_xml": "\n\t\t\"Address Report\"\n\t\n\t\n\n\t\t\"CustomDataSource.java\"\n\t\n\t",
+ "context": "Report 'DataSourceReport' parameter definitions",
+ "metadata": {
+ "parameter_names": [
+ "ReportTitle",
+ "DataFile"
+ ],
+ "parameter_types": {
+ "ReportTitle": "java.lang.String",
+ "DataFile": "java.lang.String"
+ },
+ "default_values": {
+ "ReportTitle": "\"Address Report\"",
+ "DataFile": "\"CustomDataSource.java\""
+ },
+ "count": 2
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "fields",
+ "human_description": "These are all field definitions for report 'DataSourceReport', total 4 fields. Fields: id(java.lang.Integer), name(java.lang.String), street(java.lang.String), the_city(java.lang.String).",
+ "raw_xml": "\n\t\n\n\t\n\n\t\n\n\t\t\"me.city\"\n\t\n\t",
+ "context": "Report 'DataSourceReport' field definitions",
+ "metadata": {
+ "field_names": [
+ "id",
+ "name",
+ "street",
+ "the_city"
+ ],
+ "field_types": {
+ "id": "java.lang.Integer",
+ "name": "java.lang.String",
+ "street": "java.lang.String",
+ "the_city": "java.lang.String"
+ },
+ "field_expressions": {},
+ "count": 4
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "variables_report",
+ "human_description": "These are variable definitions for report 'DataSourceReport' (resetType=Report), total 1 variables. Variables: CityNumber(java.lang.Integer, Count).",
+ "raw_xml": "\n\t\tBoolean.TRUE\n\t\n\t",
+ "context": "Report 'DataSourceReport' variable definitions (Report level reset)",
+ "metadata": {
+ "variable_names": [
+ "CityNumber"
+ ],
+ "variable_types": {
+ "CityNumber": "java.lang.Integer"
+ },
+ "variable_calculations": {
+ "CityNumber": "Count"
+ },
+ "reset_type": "Report",
+ "expressions": {
+ "CityNumber": {
+ "type": "expression",
+ "value": "Boolean.TRUE"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'DataSourceReport', total 3 styles. Styles: Sans_Normal, Sans_Bold, Sans_Italic. Default style: Sans_Normal.",
+ "raw_xml": "\n\t\n\n\t\n\n\t",
+ "context": "Report 'DataSourceReport' style definitions",
+ "metadata": {
+ "style_names": [
+ "Sans_Normal",
+ "Sans_Bold",
+ "Sans_Italic"
+ ],
+ "default_style": "Sans_Normal",
+ "has_conditional_styles": false,
+ "count": 3
+ }
+ },
+ {
+ "chunk_id": 6,
+ "chunk_type": "group",
+ "human_description": "This is group 'CityGroup' definition for report 'DataSourceReport'. Group expression: $F{the_city}. Has groupHeader: Yes, has groupFooter: Yes. Min height: 60, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t$F{the_city}\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\" \" + String.valueOf($V{CityNumber}) + \". \" + String.valueOf($F{the_city})\n\t\t\t\t\tString.valueOf($F{the_city})\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\tCount :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{CityGroup_COUNT}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' group 'CityGroup'",
+ "metadata": {
+ "group_name": "CityGroup",
+ "expression": "$F{the_city}",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "60",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'DataSourceReport'. Page size: 595 x 842 portrait. Contains 5 standard bands with content: title, pageHeader, detail, pageFooter, lastPageFooter. Defines 4 fields: id, name, street, the_city. Defines 2 parameters: ReportTitle, DataFile. Defines 1 variables: CityNumber. Defines 1 groups: CityGroup. Data source type: DataAdapter. Source: datasource/DataSource2.jrdax.",
+ "raw_xml": "",
+ "context": "Report 'DataSourceReport' overall structure overview",
+ "metadata": {
+ "report_name": "DataSourceReport",
+ "bands": [
+ "title",
+ "pageHeader",
+ "detail",
+ "pageFooter",
+ "lastPageFooter"
+ ],
+ "field_count": 4,
+ "parameter_count": 2,
+ "variable_count": 1,
+ "group_count": 1,
+ "chart_count": 0,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "DataAdapter",
+ "source": "datasource/DataSource2.jrdax",
+ "query_language": null,
+ "properties": {
+ "net.sf.jasperreports.print.create.bookmarks": "true",
+ "com.jaspersoft.studio.data.defaultdataadapter": "datasource/DataSource2.jrdax"
+ }
+ },
+ "attributes": {
+ "name": "DataSourceReport",
+ "language": "java",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "columnWidth": "515",
+ "leftMargin": "40",
+ "rightMargin": "40",
+ "topMargin": "50",
+ "bottomMargin": "50",
+ "uuid": "030574cb-2d4b-4281-8294-0f87619f0d7f"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'DataSourceReport'. Data adapter: datasource/DataSource2.jrdax.",
+ "raw_xml": "",
+ "context": "Report 'DataSourceReport' data source configuration",
+ "metadata": {
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "datasource/DataSource2.jrdax"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "parameters",
+ "human_description": "These are all parameter definitions for report 'DataSourceReport', total 2 parameters. Parameters: ReportTitle(java.lang.String), DataFile(java.lang.String).",
+ "raw_xml": "\n\t\t\"Address Report\"\n\t\n\t\n\n\t\t\"CustomTableModel.java\"\n\t\n\t",
+ "context": "Report 'DataSourceReport' parameter definitions",
+ "metadata": {
+ "parameter_names": [
+ "ReportTitle",
+ "DataFile"
+ ],
+ "parameter_types": {
+ "ReportTitle": "java.lang.String",
+ "DataFile": "java.lang.String"
+ },
+ "default_values": {
+ "ReportTitle": "\"Address Report\"",
+ "DataFile": "\"CustomTableModel.java\""
+ },
+ "count": 2
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "fields",
+ "human_description": "These are all field definitions for report 'DataSourceReport', total 4 fields. Fields: id(java.lang.Integer), name(java.lang.String), street(java.lang.String), the_city(java.lang.String).",
+ "raw_xml": "\n\t\n\n\t\n\n\t\n\n\t\t\"me.city\"\n\t\n\t",
+ "context": "Report 'DataSourceReport' field definitions",
+ "metadata": {
+ "field_names": [
+ "id",
+ "name",
+ "street",
+ "the_city"
+ ],
+ "field_types": {
+ "id": "java.lang.Integer",
+ "name": "java.lang.String",
+ "street": "java.lang.String",
+ "the_city": "java.lang.String"
+ },
+ "field_expressions": {},
+ "count": 4
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "variables_report",
+ "human_description": "These are variable definitions for report 'DataSourceReport' (resetType=Report), total 1 variables. Variables: CityNumber(java.lang.Integer, Count).",
+ "raw_xml": "\n\t\tBoolean.TRUE\n\t\n\t",
+ "context": "Report 'DataSourceReport' variable definitions (Report level reset)",
+ "metadata": {
+ "variable_names": [
+ "CityNumber"
+ ],
+ "variable_types": {
+ "CityNumber": "java.lang.Integer"
+ },
+ "variable_calculations": {
+ "CityNumber": "Count"
+ },
+ "reset_type": "Report",
+ "expressions": {
+ "CityNumber": {
+ "type": "expression",
+ "value": "Boolean.TRUE"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'DataSourceReport', total 3 styles. Styles: Sans_Normal, Sans_Bold, Sans_Italic. Default style: Sans_Normal.",
+ "raw_xml": "\n\t\n\n\t\n\n\t",
+ "context": "Report 'DataSourceReport' style definitions",
+ "metadata": {
+ "style_names": [
+ "Sans_Normal",
+ "Sans_Bold",
+ "Sans_Italic"
+ ],
+ "default_style": "Sans_Normal",
+ "has_conditional_styles": false,
+ "count": 3
+ }
+ },
+ {
+ "chunk_id": 6,
+ "chunk_type": "group",
+ "human_description": "This is group 'CityGroup' definition for report 'DataSourceReport'. Group expression: $F{the_city}. Has groupHeader: Yes, has groupFooter: Yes. Min height: 60, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t$F{the_city}\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\" \" + String.valueOf($V{CityNumber}) + \". \" + String.valueOf($F{the_city})\n\t\t\t\t\tString.valueOf($F{the_city})\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\tCount :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{CityGroup_COUNT}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' group 'CityGroup'",
+ "metadata": {
+ "group_name": "CityGroup",
+ "expression": "$F{the_city}",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "60",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'DataSourceReport'. Page size: 595 x 842 portrait. Contains 5 standard bands with content: title, pageHeader, detail, pageFooter, lastPageFooter. Defines 4 fields: id, name, street, the_city. Defines 2 parameters: ReportTitle, DataFile. Defines 1 variables: CityNumber. Defines 1 groups: CityGroup. Data source type: DataAdapter. Source: datasource/DataSource3.jrdax.",
+ "raw_xml": "",
+ "context": "Report 'DataSourceReport' overall structure overview",
+ "metadata": {
+ "report_name": "DataSourceReport",
+ "bands": [
+ "title",
+ "pageHeader",
+ "detail",
+ "pageFooter",
+ "lastPageFooter"
+ ],
+ "field_count": 4,
+ "parameter_count": 2,
+ "variable_count": 1,
+ "group_count": 1,
+ "chart_count": 0,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "DataAdapter",
+ "source": "datasource/DataSource3.jrdax",
+ "query_language": null,
+ "properties": {
+ "net.sf.jasperreports.print.create.bookmarks": "true",
+ "com.jaspersoft.studio.data.defaultdataadapter": "datasource/DataSource3.jrdax"
+ }
+ },
+ "attributes": {
+ "name": "DataSourceReport",
+ "language": "java",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "columnWidth": "515",
+ "leftMargin": "40",
+ "rightMargin": "40",
+ "topMargin": "50",
+ "bottomMargin": "50",
+ "uuid": "030574cb-2d4b-4281-8294-0f87619f0d7f"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'DataSourceReport'. Data adapter: datasource/DataSource3.jrdax.",
+ "raw_xml": "",
+ "context": "Report 'DataSourceReport' data source configuration",
+ "metadata": {
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "datasource/DataSource3.jrdax"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "parameters",
+ "human_description": "These are all parameter definitions for report 'DataSourceReport', total 2 parameters. Parameters: ReportTitle(java.lang.String), DataFile(java.lang.String).",
+ "raw_xml": "\n\t\t\"Address Report\"\n\t\n\t\n\n\t\t\"CustomBeanFactory.java - Bean Array\"\n\t\n\t",
+ "context": "Report 'DataSourceReport' parameter definitions",
+ "metadata": {
+ "parameter_names": [
+ "ReportTitle",
+ "DataFile"
+ ],
+ "parameter_types": {
+ "ReportTitle": "java.lang.String",
+ "DataFile": "java.lang.String"
+ },
+ "default_values": {
+ "ReportTitle": "\"Address Report\"",
+ "DataFile": "\"CustomBeanFactory.java - Bean Array\""
+ },
+ "count": 2
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "fields",
+ "human_description": "These are all field definitions for report 'DataSourceReport', total 4 fields. Fields: id(java.lang.Integer), name(java.lang.String), street(java.lang.String), the_city(java.lang.String).",
+ "raw_xml": "\n\t\n\n\t\n\n\t\n\n\t\t\"me.city\"\n\t\n\t",
+ "context": "Report 'DataSourceReport' field definitions",
+ "metadata": {
+ "field_names": [
+ "id",
+ "name",
+ "street",
+ "the_city"
+ ],
+ "field_types": {
+ "id": "java.lang.Integer",
+ "name": "java.lang.String",
+ "street": "java.lang.String",
+ "the_city": "java.lang.String"
+ },
+ "field_expressions": {},
+ "count": 4
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "variables_report",
+ "human_description": "These are variable definitions for report 'DataSourceReport' (resetType=Report), total 1 variables. Variables: CityNumber(java.lang.Integer, Count).",
+ "raw_xml": "\n\t\tBoolean.TRUE\n\t\n\t",
+ "context": "Report 'DataSourceReport' variable definitions (Report level reset)",
+ "metadata": {
+ "variable_names": [
+ "CityNumber"
+ ],
+ "variable_types": {
+ "CityNumber": "java.lang.Integer"
+ },
+ "variable_calculations": {
+ "CityNumber": "Count"
+ },
+ "reset_type": "Report",
+ "expressions": {
+ "CityNumber": {
+ "type": "expression",
+ "value": "Boolean.TRUE"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'DataSourceReport', total 3 styles. Styles: Sans_Normal, Sans_Bold, Sans_Italic. Default style: Sans_Normal.",
+ "raw_xml": "\n\t\n\n\t\n\n\t",
+ "context": "Report 'DataSourceReport' style definitions",
+ "metadata": {
+ "style_names": [
+ "Sans_Normal",
+ "Sans_Bold",
+ "Sans_Italic"
+ ],
+ "default_style": "Sans_Normal",
+ "has_conditional_styles": false,
+ "count": 3
+ }
+ },
+ {
+ "chunk_id": 6,
+ "chunk_type": "group",
+ "human_description": "This is group 'CityGroup' definition for report 'DataSourceReport'. Group expression: $F{the_city}. Has groupHeader: Yes, has groupFooter: Yes. Min height: 60, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t$F{the_city}\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\" \" + String.valueOf($V{CityNumber}) + \". \" + String.valueOf($F{the_city})\n\t\t\t\t\tString.valueOf($F{the_city})\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\tCount :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{CityGroup_COUNT}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' group 'CityGroup'",
+ "metadata": {
+ "group_name": "CityGroup",
+ "expression": "$F{the_city}",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "60",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'DataSourceReport'. Page size: 595 x 842 portrait. Contains 5 standard bands with content: title, pageHeader, detail, pageFooter, lastPageFooter. Defines 4 fields: id, name, street, the_city. Defines 2 parameters: ReportTitle, DataFile. Defines 1 variables: CityNumber. Defines 1 groups: CityGroup. Data source type: DataAdapter. Source: datasource/DataSource4.jrdax.",
+ "raw_xml": "",
+ "context": "Report 'DataSourceReport' overall structure overview",
+ "metadata": {
+ "report_name": "DataSourceReport",
+ "bands": [
+ "title",
+ "pageHeader",
+ "detail",
+ "pageFooter",
+ "lastPageFooter"
+ ],
+ "field_count": 4,
+ "parameter_count": 2,
+ "variable_count": 1,
+ "group_count": 1,
+ "chart_count": 0,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "DataAdapter",
+ "source": "datasource/DataSource4.jrdax",
+ "query_language": null,
+ "properties": {
+ "net.sf.jasperreports.print.create.bookmarks": "true",
+ "com.jaspersoft.studio.data.defaultdataadapter": "datasource/DataSource4.jrdax"
+ }
+ },
+ "attributes": {
+ "name": "DataSourceReport",
+ "language": "java",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "columnWidth": "515",
+ "leftMargin": "40",
+ "rightMargin": "40",
+ "topMargin": "50",
+ "bottomMargin": "50",
+ "uuid": "030574cb-2d4b-4281-8294-0f87619f0d7f"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'DataSourceReport'. Data adapter: datasource/DataSource4.jrdax.",
+ "raw_xml": "",
+ "context": "Report 'DataSourceReport' data source configuration",
+ "metadata": {
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "datasource/DataSource4.jrdax"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "parameters",
+ "human_description": "These are all parameter definitions for report 'DataSourceReport', total 2 parameters. Parameters: ReportTitle(java.lang.String), DataFile(java.lang.String).",
+ "raw_xml": "\n\t\t\"Address Report\"\n\t\n\t\n\n\t\t\"CustomBeanFactory.java - Bean Collection\"\n\t\n\t",
+ "context": "Report 'DataSourceReport' parameter definitions",
+ "metadata": {
+ "parameter_names": [
+ "ReportTitle",
+ "DataFile"
+ ],
+ "parameter_types": {
+ "ReportTitle": "java.lang.String",
+ "DataFile": "java.lang.String"
+ },
+ "default_values": {
+ "ReportTitle": "\"Address Report\"",
+ "DataFile": "\"CustomBeanFactory.java - Bean Collection\""
+ },
+ "count": 2
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "fields",
+ "human_description": "These are all field definitions for report 'DataSourceReport', total 4 fields. Fields: id(java.lang.Integer), name(java.lang.String), street(java.lang.String), the_city(java.lang.String).",
+ "raw_xml": "\n\t\n\n\t\n\n\t\n\n\t\t\"me.city\"\n\t\n\t",
+ "context": "Report 'DataSourceReport' field definitions",
+ "metadata": {
+ "field_names": [
+ "id",
+ "name",
+ "street",
+ "the_city"
+ ],
+ "field_types": {
+ "id": "java.lang.Integer",
+ "name": "java.lang.String",
+ "street": "java.lang.String",
+ "the_city": "java.lang.String"
+ },
+ "field_expressions": {},
+ "count": 4
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "variables_report",
+ "human_description": "These are variable definitions for report 'DataSourceReport' (resetType=Report), total 1 variables. Variables: CityNumber(java.lang.Integer, Count).",
+ "raw_xml": "\n\t\tBoolean.TRUE\n\t\n\t",
+ "context": "Report 'DataSourceReport' variable definitions (Report level reset)",
+ "metadata": {
+ "variable_names": [
+ "CityNumber"
+ ],
+ "variable_types": {
+ "CityNumber": "java.lang.Integer"
+ },
+ "variable_calculations": {
+ "CityNumber": "Count"
+ },
+ "reset_type": "Report",
+ "expressions": {
+ "CityNumber": {
+ "type": "expression",
+ "value": "Boolean.TRUE"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'DataSourceReport', total 3 styles. Styles: Sans_Normal, Sans_Bold, Sans_Italic. Default style: Sans_Normal.",
+ "raw_xml": "\n\t\n\n\t\n\n\t",
+ "context": "Report 'DataSourceReport' style definitions",
+ "metadata": {
+ "style_names": [
+ "Sans_Normal",
+ "Sans_Bold",
+ "Sans_Italic"
+ ],
+ "default_style": "Sans_Normal",
+ "has_conditional_styles": false,
+ "count": 3
+ }
+ },
+ {
+ "chunk_id": 6,
+ "chunk_type": "group",
+ "human_description": "This is group 'CityGroup' definition for report 'DataSourceReport'. Group expression: $F{the_city}. Has groupHeader: Yes, has groupFooter: Yes. Min height: 60, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t$F{the_city}\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\" \" + String.valueOf($V{CityNumber}) + \". \" + String.valueOf($F{the_city})\n\t\t\t\t\tString.valueOf($F{the_city})\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\tCount :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{CityGroup_COUNT}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' group 'CityGroup'",
+ "metadata": {
+ "group_name": "CityGroup",
+ "expression": "$F{the_city}",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "60",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DataSourceReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\t\"Title\"\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DataSourceReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t$F{name} + \" (\" + $F{id} + \")\"\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{street}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DataSourceReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'DataSourceReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"\n\t\t\t\"Summary\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'DataSourceReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" +\n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) +\n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DataSourceReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: ID; Name; Street",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'DataSourceReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'DateRangeReport'. Page size: 595 x 842 portrait. Contains 4 standard bands with content: title, pageHeader, detail, pageFooter. Defines 14 fields: ShippedDate, ShipCountry, RequiredDate, CustomerID, OrderID, ShipName, ShipVia, ShipPostalCode, OrderDate, ShipCity, ShipAddress, EmployeeID, ShipRegion, Freight. Defines 2 parameters: MaxOrderID, StartDate. Defines 0 variables: none. Defines 2 groups: CountryGroup, CityGroup. Data source type: JDBC/SQL. Source: Sample DB. Query language: sql.",
+ "raw_xml": "",
+ "context": "Report 'DateRangeReport' overall structure overview",
+ "metadata": {
+ "report_name": "DateRangeReport",
+ "bands": [
+ "title",
+ "pageHeader",
+ "detail",
+ "pageFooter"
+ ],
+ "field_count": 14,
+ "parameter_count": 2,
+ "variable_count": 0,
+ "group_count": 2,
+ "chart_count": 0,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "JDBC/SQL",
+ "source": "Sample DB",
+ "query_language": "sql",
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "Sample DB"
+ }
+ },
+ "attributes": {
+ "name": "DateRangeReport",
+ "language": "java",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "whenNoDataType": "AllSectionsNoDetail",
+ "columnWidth": "555",
+ "leftMargin": "20",
+ "rightMargin": "20",
+ "topMargin": "20",
+ "bottomMargin": "20",
+ "uuid": "7f657602-9913-42d7-b4e5-7f28789b1a8e"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'DateRangeReport'. Data adapter: Sample DB.",
+ "raw_xml": "",
+ "context": "Report 'DateRangeReport' data source configuration",
+ "metadata": {
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "Sample DB"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "query",
+ "human_description": "This is the data query for report 'DateRangeReport'. Language: SQL. Query: SELECT * FROM Orders WHERE \n\t\t OrderID <= $P{MaxOrderID} \n\t\t AND $X{[GREATER, OrderDate, StartDate} \n\t\t ORDER BY ShipCountry, ShipCity, OrderDate",
+ "raw_xml": "SELECT * FROM Orders WHERE \n\t\t OrderID <= $P{MaxOrderID} \n\t\t AND $X{[GREATER, OrderDate, StartDate} \n\t\t ORDER BY ShipCountry, ShipCity, OrderDate\n\t",
+ "context": "Report 'DateRangeReport' data query",
+ "metadata": {
+ "query_language": "sql",
+ "full_sql": "SELECT * FROM Orders WHERE \n\t\t OrderID <= $P{MaxOrderID} \n\t\t AND $X{[GREATER, OrderDate, StartDate} \n\t\t ORDER BY ShipCountry, ShipCity, OrderDate"
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "parameters",
+ "human_description": "These are all parameter definitions for report 'DateRangeReport', total 2 parameters. Parameters: MaxOrderID(java.lang.Integer), StartDate(net.sf.jasperreports.types.date.DateRange).",
+ "raw_xml": "\n\t\t\n\t\t10500\n\t\n\t\n\n\t\t\n\t\tDATERANGE(\"1996-09-01\")\n\t\n\t",
+ "context": "Report 'DateRangeReport' parameter definitions",
+ "metadata": {
+ "parameter_names": [
+ "MaxOrderID",
+ "StartDate"
+ ],
+ "parameter_types": {
+ "MaxOrderID": "java.lang.Integer",
+ "StartDate": "net.sf.jasperreports.types.date.DateRange"
+ },
+ "default_values": {
+ "MaxOrderID": "10500",
+ "StartDate": "DATERANGE(\"1996-09-01\")"
+ },
+ "count": 2
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'DateRangeReport': ShippedDate, type: java.sql.Timestamp",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' field 'ShippedDate'",
+ "metadata": {
+ "field_name": "ShippedDate",
+ "field_class": "java.sql.Timestamp",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'DateRangeReport': ShipCountry, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' field 'ShipCountry'",
+ "metadata": {
+ "field_name": "ShipCountry",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 6,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'DateRangeReport': RequiredDate, type: java.sql.Timestamp",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' field 'RequiredDate'",
+ "metadata": {
+ "field_name": "RequiredDate",
+ "field_class": "java.sql.Timestamp",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'DateRangeReport': CustomerID, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' field 'CustomerID'",
+ "metadata": {
+ "field_name": "CustomerID",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 8,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'DateRangeReport': OrderID, type: java.lang.Integer",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' field 'OrderID'",
+ "metadata": {
+ "field_name": "OrderID",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'DateRangeReport': ShipName, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' field 'ShipName'",
+ "metadata": {
+ "field_name": "ShipName",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'DateRangeReport': ShipVia, type: java.lang.Integer",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' field 'ShipVia'",
+ "metadata": {
+ "field_name": "ShipVia",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 11,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'DateRangeReport': ShipPostalCode, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' field 'ShipPostalCode'",
+ "metadata": {
+ "field_name": "ShipPostalCode",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 12,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'DateRangeReport': OrderDate, type: java.sql.Timestamp",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' field 'OrderDate'",
+ "metadata": {
+ "field_name": "OrderDate",
+ "field_class": "java.sql.Timestamp",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 13,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'DateRangeReport': ShipCity, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' field 'ShipCity'",
+ "metadata": {
+ "field_name": "ShipCity",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'DateRangeReport': ShipAddress, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' field 'ShipAddress'",
+ "metadata": {
+ "field_name": "ShipAddress",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'DateRangeReport': EmployeeID, type: java.lang.Integer",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' field 'EmployeeID'",
+ "metadata": {
+ "field_name": "EmployeeID",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 16,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'DateRangeReport': ShipRegion, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' field 'ShipRegion'",
+ "metadata": {
+ "field_name": "ShipRegion",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 17,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'DateRangeReport': Freight, type: java.lang.Double",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' field 'Freight'",
+ "metadata": {
+ "field_name": "Freight",
+ "field_class": "java.lang.Double",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'DateRangeReport', total 1 styles. Styles: detail. Contains conditional styles.",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' style definitions",
+ "metadata": {
+ "style_names": [
+ "detail"
+ ],
+ "default_style": null,
+ "has_conditional_styles": true,
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 19,
+ "chunk_type": "group",
+ "human_description": "This is group 'CountryGroup' definition for report 'DateRangeReport'. Group expression: $F{ShipCountry}. Has groupHeader: Yes, has groupFooter: No. Min height: 70, start new column: false, reprint header: true.",
+ "raw_xml": "\n\t\t$F{ShipCountry}\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\" \" + $F{ShipCountry}\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DateRangeReport' group 'CountryGroup'",
+ "metadata": {
+ "group_name": "CountryGroup",
+ "expression": "$F{ShipCountry}",
+ "has_header": true,
+ "has_footer": false,
+ "minHeightToStartNewPage": "70",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "true"
+ }
+ },
+ {
+ "chunk_id": 20,
+ "chunk_type": "group",
+ "human_description": "This is group 'CityGroup' definition for report 'DateRangeReport'. Group expression: $F{ShipCity}. Has groupHeader: Yes, has groupFooter: No. Min height: 40, start new column: false, reprint header: true.",
+ "raw_xml": "\n\t\t$F{ShipCity}\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\" \" + $F{ShipCity}\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DateRangeReport' group 'CityGroup'",
+ "metadata": {
+ "group_name": "CityGroup",
+ "expression": "$F{ShipCity}",
+ "has_header": true,
+ "has_footer": false,
+ "minHeightToStartNewPage": "40",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "true"
+ }
+ },
+ {
+ "chunk_id": 21,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Report', Position: (0, 0), Size: 555x40.",
+ "raw_xml": "\n\t\t\tDate Range Report\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "efe3afc1-067c-456d-8287-a6cf41a9f6d8",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "40",
+ "fontSize": "20.0",
+ "bold": "true",
+ "hTextAlign": "Center",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 22,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '1. Relative Date Ranges', Position: (0, 60), Size: 555x30.",
+ "raw_xml": "\n\t\t\t1. Relative Date Ranges\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "417edd63-2939-4f63-a4f4-7859bc00bd65",
+ "x": "0",
+ "y": "60",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 23,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range', Position: (0, 100), Size: 100x20.",
+ "raw_xml": "\n\t\t\tDate Range\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "b5437590-6926-4e90-ac8d-e2526769259e",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "100",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 24,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Expression', Position: (100, 100), Size: 95x20.",
+ "raw_xml": "\n\t\t\tExpression\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "d76e4d8a-b6d1-4a11-ae8f-d11d217576b9",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "100",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 25,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Start', Position: (195, 100), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range Start\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a0f5da29-800d-476e-b80c-7aa3d837744b",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "100",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range End', Position: (375, 100), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range End\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9623bd43-5ef1-43ff-8317-d3c385688389",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "100",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY\\\"\", Position: (100, 120), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "ec9ae446-8437-4f82-89f2-c67563100b65",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "120",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 28,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'today', Position: (0, 120), Size: 100x20.",
+ "raw_xml": "\n\t\t\ttoday\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a629e246-6b0d-455a-bbe7-8379e6443120",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "120",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 29,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY\").getStart(), Position: (195, 120), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "da63a638-5bc6-4a71-915f-cb5ea3c9d3a6",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "120",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 30,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY\").getEnd(), Position: (375, 120), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7fb693e9-2b12-47cf-8c0e-dc6c2f3c6bc2",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "120",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 31,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 days ago', Position: (0, 140), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 days ago\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "0232c581-2a0c-4939-8bd5-95eebb02b077",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "140",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 32,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY-3\\\"\", Position: (100, 140), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY-3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "711fa621-b354-4558-b883-d54fdd6c5192",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "140",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 33,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY-3\").getStart(), Position: (195, 140), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY-3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "443d6099-c0fc-479d-89ba-7efbff6b9be3",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "140",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 34,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY-3\").getEnd(), Position: (375, 140), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY-3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "0d8e362a-507f-4350-978b-02357736591e",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "140",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 35,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 days later', Position: (0, 160), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 days later\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2706e048-8d07-48c1-b798-9d0c20ededb6",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "160",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 36,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY+3\\\"\", Position: (100, 160), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY+3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "767eb648-e824-45ed-b080-40e63856986e",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "160",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 37,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY+3\").getStart(), Position: (195, 160), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY+3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "2f21ebac-e3e7-49be-b6a3-6c19e315a216",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "160",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 38,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY+3\").getEnd(), Position: (375, 160), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY+3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "d689df50-8a3c-44e0-ac83-0e27abf0379d",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "160",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 39,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'next week', Position: (0, 180), Size: 100x20.",
+ "raw_xml": "\n\t\t\tnext week\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "98347e9b-bd0a-479c-81e9-b114e3ef1935",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "180",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 40,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"WEEK+1\\\"\", Position: (100, 180), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"WEEK+1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "88a3c617-01b4-417c-84c8-eba5ea522a86",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "180",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 41,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"WEEK+1\").getStart(), Position: (195, 180), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"WEEK+1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "cf82b282-f0fe-4aec-aab8-5f71af80f727",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "180",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 42,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"WEEK+1\").getEnd(), Position: (375, 180), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"WEEK+1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "aff2b4c6-e3a3-4d07-8a68-68c9ad960b14",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "180",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 43,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'this year', Position: (0, 200), Size: 100x20.",
+ "raw_xml": "\n\t\t\tthis year\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a8de9137-7788-4c33-8207-c8cda28d5d04",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "200",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 44,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"YEAR\\\"\", Position: (100, 200), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"YEAR\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "5adff42d-f03e-44b0-8a3d-fd60031b31a0",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "200",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 45,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"YEAR\").getStart(), Position: (195, 200), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"YEAR\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8397152f-7d01-4e47-ac56-2fba48b16146",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "200",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 46,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"YEAR\").getEnd(), Position: (375, 200), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"YEAR\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "2687a4f5-dacc-4fc0-94a1-80bd01c928a2",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "200",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 47,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'last month', Position: (0, 220), Size: 100x20.",
+ "raw_xml": "\n\t\t\tlast month\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "51c840d5-82e8-4b43-8d2c-d6525113f5c5",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "220",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 48,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"MONTH-1\\\"\", Position: (100, 220), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"MONTH-1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7b26215d-4d73-4adc-81e0-f0421749431a",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "220",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 49,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"MONTH-1\").getStart(), Position: (195, 220), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"MONTH-1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "27726ba2-b18b-42b9-a3ae-cc61b74fd8b8",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "220",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 50,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"MONTH-1\").getEnd(), Position: (375, 220), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"MONTH-1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "837d42b0-ee53-4383-a528-cd2039852cd5",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "220",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 51,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'next quarter', Position: (0, 240), Size: 100x20.",
+ "raw_xml": "\n\t\t\tnext quarter\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "6753bc83-e017-46bb-af0c-0ca3c27b4d57",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "240",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 52,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"QUARTER+1\\\"\", Position: (100, 240), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"QUARTER+1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f145f054-d42c-45b4-a2db-5bbe18bda049",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "240",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 53,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"QUARTER+1\").getStart(), Position: (195, 240), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"QUARTER+1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "99ff2c8f-ce1b-45dd-b738-f246aa97e63f",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "240",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 54,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"QUARTER+1\").getEnd(), Position: (375, 240), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"QUARTER+1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f5d04922-5329-4366-98d1-a51ed6b758f1",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "240",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 55,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 semesters ago', Position: (0, 260), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 semesters ago\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e667d8d6-56c2-4c60-a9f1-80cd68455172",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "260",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 56,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"SEMI-3\\\"\", Position: (100, 260), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"SEMI-3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c9b24fbd-32f8-41b8-a6ea-7dccd7c539b0",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "260",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 57,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"SEMI-3\").getStart(), Position: (195, 260), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"SEMI-3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6f91f1c6-1bbf-4426-9757-790325f5890d",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "260",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 58,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"SEMI-3\").getEnd(), Position: (375, 260), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"SEMI-3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "dea71ffe-0e56-4d43-9de7-96035eb6643f",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "260",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 59,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '2. Fixed Date and Timestamp with Report Timezon...', Position: (0, 300), Size: 555x30.",
+ "raw_xml": "\n\t\t\t2. Fixed Date and Timestamp with Report Timezone\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "19a61274-0bd4-46bf-9f31-211b9b4f4f89",
+ "x": "0",
+ "y": "300",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 60,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date/Time', Position: (0, 340), Size: 195x20.",
+ "raw_xml": "\n\t\t\tDate/Time\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9cbd56c9-6ce9-4087-9bf0-1faefd95b76c",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "340",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 61,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Expression', Position: (195, 340), Size: 180x20.",
+ "raw_xml": "\n\t\t\tExpression\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "1ea4e353-910e-4e2f-9ab4-4b3a68d90edb",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "340",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 62,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Start/End', Position: (375, 340), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range Start/End\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "50b03487-23d8-4f56-a188-97b4984a2958",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "340",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 63,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'May 1, 2017', Position: (0, 360), Size: 195x20.",
+ "raw_xml": "\n\t\t\tMay 1, 2017\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "7ba3fa7d-3eee-44a9-84ea-fc3aea25aade",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "360",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 64,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"2017-05-01\\\"\", Position: (195, 360), Size: 180x20.",
+ "raw_xml": "\n\t\t\t\"\\\"2017-05-01\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "83d69fbe-3b8b-4c40-a67f-2f5655b0f83f",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "360",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 65,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"2017-05-01+3\").getStart(), Position: (375, 360), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"2017-05-01+3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c3cc02d9-f3c3-4c1b-9545-b6be16c4b5d7",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "360",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss z",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 66,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"2017-05-01 14:25:48\\\"\", Position: (195, 380), Size: 180x20.",
+ "raw_xml": "\n\t\t\t\"\\\"2017-05-01 14:25:48\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "ca84eecd-d1f6-4e9e-852d-fac232e95099",
+ "stretchType": "ElementGroupHeight",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "380",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "textAdjust": "StretchHeight",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 67,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"2017-05-01 14:25:48\").getEnd(), Position: (375, 380), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"2017-05-01 14:25:48\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "4e307c90-3897-4ae3-a909-f66017abec41",
+ "stretchType": "ElementGroupHeight",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "380",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "textAdjust": "StretchHeight",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss z",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 68,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'May 1, 2017 2:25:48 PM', Position: (0, 380), Size: 195x20.",
+ "raw_xml": "\n\t\t\tMay 1, 2017 2:25:48 PM\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "f573b087-f5b7-4b86-b6c5-f78699ac98f0",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "380",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 69,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3. Orders Newer than Sep 1, 1996', Position: (0, 422), Size: 555x30.",
+ "raw_xml": "\n\t\t\t3. Orders Newer than Sep 1, 1996\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "526d23d5-a2b4-43af-aefe-7339889be7d4",
+ "x": "0",
+ "y": "422",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 70,
+ "chunk_type": "style_element_property",
+ "human_description": "'title' band of report 'DateRangeReport': property style element.",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_tag": "property"
+ }
+ },
+ {
+ "chunk_id": 71,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DateRangeReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=20).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DateRangeReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 71,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DateRangeReport', height: 43 pixels, splitType: Stretch. Contains 3 elements: 2x textField, 1x line. Visible text samples: ${\"Page \" + $V{PAGE_NUMBER}}; ${\" of \" + $V{PAGE_NUMBER}}",
+ "raw_xml": "\n\t\t\n\t\t\t\"Page \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\" of \" + $V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\n",
+ "context": "Report 'DateRangeReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "43",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 2,
+ "line": 1
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + $V{PAGE_NUMBER}}",
+ "${\" of \" + $V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 71,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DateRangeReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: Freight; Order Date; Order ID",
+ "raw_xml": "\n\t\t\n\t\t\tFreight\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\tOrder Date\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\tOrder ID\n\t\t\t\n\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DateRangeReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Freight",
+ "Order Date",
+ "Order ID"
+ ]
+ }
+ },
+ {
+ "chunk_id": 71,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Report', Position: (0, 0), Size: 555x40.",
+ "raw_xml": "\n\t\t\tDate Range Report\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "efe3afc1-067c-456d-8287-a6cf41a9f6d8",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "40",
+ "fontSize": "20.0",
+ "bold": "true",
+ "hTextAlign": "Center",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 72,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '1. Relative Date Ranges', Position: (0, 60), Size: 555x30.",
+ "raw_xml": "\n\t\t\t1. Relative Date Ranges\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "417edd63-2939-4f63-a4f4-7859bc00bd65",
+ "x": "0",
+ "y": "60",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 73,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range', Position: (0, 100), Size: 100x20.",
+ "raw_xml": "\n\t\t\tDate Range\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "b5437590-6926-4e90-ac8d-e2526769259e",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "100",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 74,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Expression', Position: (100, 100), Size: 95x20.",
+ "raw_xml": "\n\t\t\tExpression\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "d76e4d8a-b6d1-4a11-ae8f-d11d217576b9",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "100",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 75,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Start', Position: (195, 100), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range Start\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a0f5da29-800d-476e-b80c-7aa3d837744b",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "100",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 76,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range End', Position: (375, 100), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range End\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9623bd43-5ef1-43ff-8317-d3c385688389",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "100",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 77,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY\\\"\", Position: (100, 120), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "ec9ae446-8437-4f82-89f2-c67563100b65",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "120",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 78,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'today', Position: (0, 120), Size: 100x20.",
+ "raw_xml": "\n\t\t\ttoday\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a629e246-6b0d-455a-bbe7-8379e6443120",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "120",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 79,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY\").getStart(), Position: (195, 120), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "da63a638-5bc6-4a71-915f-cb5ea3c9d3a6",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "120",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 80,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY\").getEnd(), Position: (375, 120), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7fb693e9-2b12-47cf-8c0e-dc6c2f3c6bc2",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "120",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 81,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 days ago', Position: (0, 140), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 days ago\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "0232c581-2a0c-4939-8bd5-95eebb02b077",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "140",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 82,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY-3\\\"\", Position: (100, 140), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY-3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "711fa621-b354-4558-b883-d54fdd6c5192",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "140",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 83,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY-3\").getStart(), Position: (195, 140), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY-3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "443d6099-c0fc-479d-89ba-7efbff6b9be3",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "140",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 84,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY-3\").getEnd(), Position: (375, 140), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY-3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "0d8e362a-507f-4350-978b-02357736591e",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "140",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 85,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 days later', Position: (0, 160), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 days later\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2706e048-8d07-48c1-b798-9d0c20ededb6",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "160",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 86,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY+3\\\"\", Position: (100, 160), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY+3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "767eb648-e824-45ed-b080-40e63856986e",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "160",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 87,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY+3\").getStart(), Position: (195, 160), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY+3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "2f21ebac-e3e7-49be-b6a3-6c19e315a216",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "160",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 88,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY+3\").getEnd(), Position: (375, 160), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY+3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "d689df50-8a3c-44e0-ac83-0e27abf0379d",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "160",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 89,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'next week', Position: (0, 180), Size: 100x20.",
+ "raw_xml": "\n\t\t\tnext week\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "98347e9b-bd0a-479c-81e9-b114e3ef1935",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "180",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 90,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"WEEK+1\\\"\", Position: (100, 180), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"WEEK+1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "88a3c617-01b4-417c-84c8-eba5ea522a86",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "180",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 91,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"WEEK+1\").getStart(), Position: (195, 180), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"WEEK+1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "cf82b282-f0fe-4aec-aab8-5f71af80f727",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "180",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 92,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"WEEK+1\").getEnd(), Position: (375, 180), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"WEEK+1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "aff2b4c6-e3a3-4d07-8a68-68c9ad960b14",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "180",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 93,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'this year', Position: (0, 200), Size: 100x20.",
+ "raw_xml": "\n\t\t\tthis year\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a8de9137-7788-4c33-8207-c8cda28d5d04",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "200",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 94,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"YEAR\\\"\", Position: (100, 200), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"YEAR\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "5adff42d-f03e-44b0-8a3d-fd60031b31a0",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "200",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 95,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"YEAR\").getStart(), Position: (195, 200), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"YEAR\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8397152f-7d01-4e47-ac56-2fba48b16146",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "200",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 96,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"YEAR\").getEnd(), Position: (375, 200), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"YEAR\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "2687a4f5-dacc-4fc0-94a1-80bd01c928a2",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "200",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 97,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'last month', Position: (0, 220), Size: 100x20.",
+ "raw_xml": "\n\t\t\tlast month\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "51c840d5-82e8-4b43-8d2c-d6525113f5c5",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "220",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 98,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"MONTH-1\\\"\", Position: (100, 220), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"MONTH-1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7b26215d-4d73-4adc-81e0-f0421749431a",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "220",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 99,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"MONTH-1\").getStart(), Position: (195, 220), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"MONTH-1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "27726ba2-b18b-42b9-a3ae-cc61b74fd8b8",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "220",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 100,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"MONTH-1\").getEnd(), Position: (375, 220), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"MONTH-1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "837d42b0-ee53-4383-a528-cd2039852cd5",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "220",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 101,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'next quarter', Position: (0, 240), Size: 100x20.",
+ "raw_xml": "\n\t\t\tnext quarter\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "6753bc83-e017-46bb-af0c-0ca3c27b4d57",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "240",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 102,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"QUARTER+1\\\"\", Position: (100, 240), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"QUARTER+1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f145f054-d42c-45b4-a2db-5bbe18bda049",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "240",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 103,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"QUARTER+1\").getStart(), Position: (195, 240), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"QUARTER+1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "99ff2c8f-ce1b-45dd-b738-f246aa97e63f",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "240",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 104,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"QUARTER+1\").getEnd(), Position: (375, 240), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"QUARTER+1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f5d04922-5329-4366-98d1-a51ed6b758f1",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "240",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 105,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 semesters ago', Position: (0, 260), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 semesters ago\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e667d8d6-56c2-4c60-a9f1-80cd68455172",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "260",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 106,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"SEMI-3\\\"\", Position: (100, 260), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"SEMI-3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c9b24fbd-32f8-41b8-a6ea-7dccd7c539b0",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "260",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 107,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"SEMI-3\").getStart(), Position: (195, 260), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"SEMI-3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6f91f1c6-1bbf-4426-9757-790325f5890d",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "260",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 108,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"SEMI-3\").getEnd(), Position: (375, 260), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"SEMI-3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "dea71ffe-0e56-4d43-9de7-96035eb6643f",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "260",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 109,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '2. Fixed Date and Timestamp with Report Timezon...', Position: (0, 300), Size: 555x30.",
+ "raw_xml": "\n\t\t\t2. Fixed Date and Timestamp with Report Timezone\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "19a61274-0bd4-46bf-9f31-211b9b4f4f89",
+ "x": "0",
+ "y": "300",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 110,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date/Time', Position: (0, 340), Size: 195x20.",
+ "raw_xml": "\n\t\t\tDate/Time\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9cbd56c9-6ce9-4087-9bf0-1faefd95b76c",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "340",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 111,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Expression', Position: (195, 340), Size: 180x20.",
+ "raw_xml": "\n\t\t\tExpression\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "1ea4e353-910e-4e2f-9ab4-4b3a68d90edb",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "340",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 112,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Start/End', Position: (375, 340), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range Start/End\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "50b03487-23d8-4f56-a188-97b4984a2958",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "340",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 113,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'May 1, 2017', Position: (0, 360), Size: 195x20.",
+ "raw_xml": "\n\t\t\tMay 1, 2017\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "7ba3fa7d-3eee-44a9-84ea-fc3aea25aade",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "360",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 114,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"2017-05-01\\\"\", Position: (195, 360), Size: 180x20.",
+ "raw_xml": "\n\t\t\t\"\\\"2017-05-01\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "83d69fbe-3b8b-4c40-a67f-2f5655b0f83f",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "360",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 115,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"2017-05-01+3\").getStart(), Position: (375, 360), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"2017-05-01+3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c3cc02d9-f3c3-4c1b-9545-b6be16c4b5d7",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "360",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss z",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 116,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"2017-05-01 14:25:48\\\"\", Position: (195, 380), Size: 180x20.",
+ "raw_xml": "\n\t\t\t\"\\\"2017-05-01 14:25:48\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "ca84eecd-d1f6-4e9e-852d-fac232e95099",
+ "stretchType": "ElementGroupHeight",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "380",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "textAdjust": "StretchHeight",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 117,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"2017-05-01 14:25:48\").getEnd(), Position: (375, 380), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"2017-05-01 14:25:48\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "4e307c90-3897-4ae3-a909-f66017abec41",
+ "stretchType": "ElementGroupHeight",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "380",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "textAdjust": "StretchHeight",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss z",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 118,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'May 1, 2017 2:25:48 PM', Position: (0, 380), Size: 195x20.",
+ "raw_xml": "\n\t\t\tMay 1, 2017 2:25:48 PM\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "f573b087-f5b7-4b86-b6c5-f78699ac98f0",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "380",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 119,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3. Orders Newer than Sep 1, 1996', Position: (0, 422), Size: 555x30.",
+ "raw_xml": "\n\t\t\t3. Orders Newer than Sep 1, 1996\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "526d23d5-a2b4-43af-aefe-7339889be7d4",
+ "x": "0",
+ "y": "422",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 120,
+ "chunk_type": "style_element_property",
+ "human_description": "'title' band of report 'DateRangeReport': property style element.",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_tag": "property"
+ }
+ },
+ {
+ "chunk_id": 121,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DateRangeReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=20).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DateRangeReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 121,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DateRangeReport', height: 43 pixels, splitType: Stretch. Contains 3 elements: 2x textField, 1x line. Visible text samples: ${\"Page \" + $V{PAGE_NUMBER}}; ${\" of \" + $V{PAGE_NUMBER}}",
+ "raw_xml": "\n\t\t\n\t\t\t\"Page \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\" of \" + $V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\n",
+ "context": "Report 'DateRangeReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "43",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 2,
+ "line": 1
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + $V{PAGE_NUMBER}}",
+ "${\" of \" + $V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 121,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DateRangeReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: Freight; Order Date; Order ID",
+ "raw_xml": "\n\t\t\n\t\t\tFreight\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\tOrder Date\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\tOrder ID\n\t\t\t\n\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DateRangeReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Freight",
+ "Order Date",
+ "Order ID"
+ ]
+ }
+ },
+ {
+ "chunk_id": 121,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Report', Position: (0, 0), Size: 555x40.",
+ "raw_xml": "\n\t\t\tDate Range Report\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "efe3afc1-067c-456d-8287-a6cf41a9f6d8",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "40",
+ "fontSize": "20.0",
+ "bold": "true",
+ "hTextAlign": "Center",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 122,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '1. Relative Date Ranges', Position: (0, 60), Size: 555x30.",
+ "raw_xml": "\n\t\t\t1. Relative Date Ranges\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "417edd63-2939-4f63-a4f4-7859bc00bd65",
+ "x": "0",
+ "y": "60",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 123,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range', Position: (0, 100), Size: 100x20.",
+ "raw_xml": "\n\t\t\tDate Range\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "b5437590-6926-4e90-ac8d-e2526769259e",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "100",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 124,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Expression', Position: (100, 100), Size: 95x20.",
+ "raw_xml": "\n\t\t\tExpression\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "d76e4d8a-b6d1-4a11-ae8f-d11d217576b9",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "100",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 125,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Start', Position: (195, 100), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range Start\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a0f5da29-800d-476e-b80c-7aa3d837744b",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "100",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 126,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range End', Position: (375, 100), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range End\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9623bd43-5ef1-43ff-8317-d3c385688389",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "100",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 127,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY\\\"\", Position: (100, 120), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "ec9ae446-8437-4f82-89f2-c67563100b65",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "120",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 128,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'today', Position: (0, 120), Size: 100x20.",
+ "raw_xml": "\n\t\t\ttoday\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a629e246-6b0d-455a-bbe7-8379e6443120",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "120",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 129,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY\").getStart(), Position: (195, 120), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "da63a638-5bc6-4a71-915f-cb5ea3c9d3a6",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "120",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 130,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY\").getEnd(), Position: (375, 120), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7fb693e9-2b12-47cf-8c0e-dc6c2f3c6bc2",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "120",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 131,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 days ago', Position: (0, 140), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 days ago\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "0232c581-2a0c-4939-8bd5-95eebb02b077",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "140",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 132,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY-3\\\"\", Position: (100, 140), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY-3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "711fa621-b354-4558-b883-d54fdd6c5192",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "140",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 133,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY-3\").getStart(), Position: (195, 140), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY-3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "443d6099-c0fc-479d-89ba-7efbff6b9be3",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "140",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 134,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY-3\").getEnd(), Position: (375, 140), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY-3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "0d8e362a-507f-4350-978b-02357736591e",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "140",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 135,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 days later', Position: (0, 160), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 days later\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2706e048-8d07-48c1-b798-9d0c20ededb6",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "160",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 136,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY+3\\\"\", Position: (100, 160), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY+3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "767eb648-e824-45ed-b080-40e63856986e",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "160",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 137,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY+3\").getStart(), Position: (195, 160), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY+3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "2f21ebac-e3e7-49be-b6a3-6c19e315a216",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "160",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 138,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY+3\").getEnd(), Position: (375, 160), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY+3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "d689df50-8a3c-44e0-ac83-0e27abf0379d",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "160",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 139,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'next week', Position: (0, 180), Size: 100x20.",
+ "raw_xml": "\n\t\t\tnext week\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "98347e9b-bd0a-479c-81e9-b114e3ef1935",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "180",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 140,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"WEEK+1\\\"\", Position: (100, 180), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"WEEK+1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "88a3c617-01b4-417c-84c8-eba5ea522a86",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "180",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 141,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"WEEK+1\").getStart(), Position: (195, 180), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"WEEK+1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "cf82b282-f0fe-4aec-aab8-5f71af80f727",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "180",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 142,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"WEEK+1\").getEnd(), Position: (375, 180), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"WEEK+1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "aff2b4c6-e3a3-4d07-8a68-68c9ad960b14",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "180",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 143,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'this year', Position: (0, 200), Size: 100x20.",
+ "raw_xml": "\n\t\t\tthis year\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a8de9137-7788-4c33-8207-c8cda28d5d04",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "200",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 144,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"YEAR\\\"\", Position: (100, 200), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"YEAR\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "5adff42d-f03e-44b0-8a3d-fd60031b31a0",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "200",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 145,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"YEAR\").getStart(), Position: (195, 200), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"YEAR\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8397152f-7d01-4e47-ac56-2fba48b16146",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "200",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 146,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"YEAR\").getEnd(), Position: (375, 200), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"YEAR\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "2687a4f5-dacc-4fc0-94a1-80bd01c928a2",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "200",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 147,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'last month', Position: (0, 220), Size: 100x20.",
+ "raw_xml": "\n\t\t\tlast month\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "51c840d5-82e8-4b43-8d2c-d6525113f5c5",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "220",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 148,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"MONTH-1\\\"\", Position: (100, 220), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"MONTH-1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7b26215d-4d73-4adc-81e0-f0421749431a",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "220",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 149,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"MONTH-1\").getStart(), Position: (195, 220), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"MONTH-1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "27726ba2-b18b-42b9-a3ae-cc61b74fd8b8",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "220",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 150,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"MONTH-1\").getEnd(), Position: (375, 220), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"MONTH-1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "837d42b0-ee53-4383-a528-cd2039852cd5",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "220",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 151,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'next quarter', Position: (0, 240), Size: 100x20.",
+ "raw_xml": "\n\t\t\tnext quarter\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "6753bc83-e017-46bb-af0c-0ca3c27b4d57",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "240",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 152,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"QUARTER+1\\\"\", Position: (100, 240), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"QUARTER+1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f145f054-d42c-45b4-a2db-5bbe18bda049",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "240",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 153,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"QUARTER+1\").getStart(), Position: (195, 240), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"QUARTER+1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "99ff2c8f-ce1b-45dd-b738-f246aa97e63f",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "240",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 154,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"QUARTER+1\").getEnd(), Position: (375, 240), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"QUARTER+1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f5d04922-5329-4366-98d1-a51ed6b758f1",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "240",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 155,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 semesters ago', Position: (0, 260), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 semesters ago\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e667d8d6-56c2-4c60-a9f1-80cd68455172",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "260",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 156,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"SEMI-3\\\"\", Position: (100, 260), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"SEMI-3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c9b24fbd-32f8-41b8-a6ea-7dccd7c539b0",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "260",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 157,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"SEMI-3\").getStart(), Position: (195, 260), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"SEMI-3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6f91f1c6-1bbf-4426-9757-790325f5890d",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "260",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 158,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"SEMI-3\").getEnd(), Position: (375, 260), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"SEMI-3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "dea71ffe-0e56-4d43-9de7-96035eb6643f",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "260",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 159,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '2. Fixed Date and Timestamp with Report Timezon...', Position: (0, 300), Size: 555x30.",
+ "raw_xml": "\n\t\t\t2. Fixed Date and Timestamp with Report Timezone\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "19a61274-0bd4-46bf-9f31-211b9b4f4f89",
+ "x": "0",
+ "y": "300",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 160,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date/Time', Position: (0, 340), Size: 195x20.",
+ "raw_xml": "\n\t\t\tDate/Time\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9cbd56c9-6ce9-4087-9bf0-1faefd95b76c",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "340",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 161,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Expression', Position: (195, 340), Size: 180x20.",
+ "raw_xml": "\n\t\t\tExpression\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "1ea4e353-910e-4e2f-9ab4-4b3a68d90edb",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "340",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 162,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Start/End', Position: (375, 340), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range Start/End\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "50b03487-23d8-4f56-a188-97b4984a2958",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "340",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 163,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'May 1, 2017', Position: (0, 360), Size: 195x20.",
+ "raw_xml": "\n\t\t\tMay 1, 2017\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "7ba3fa7d-3eee-44a9-84ea-fc3aea25aade",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "360",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 164,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"2017-05-01\\\"\", Position: (195, 360), Size: 180x20.",
+ "raw_xml": "\n\t\t\t\"\\\"2017-05-01\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "83d69fbe-3b8b-4c40-a67f-2f5655b0f83f",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "360",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 165,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"2017-05-01+3\").getStart(), Position: (375, 360), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"2017-05-01+3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c3cc02d9-f3c3-4c1b-9545-b6be16c4b5d7",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "360",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss z",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 166,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"2017-05-01 14:25:48\\\"\", Position: (195, 380), Size: 180x20.",
+ "raw_xml": "\n\t\t\t\"\\\"2017-05-01 14:25:48\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "ca84eecd-d1f6-4e9e-852d-fac232e95099",
+ "stretchType": "ElementGroupHeight",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "380",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "textAdjust": "StretchHeight",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 167,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"2017-05-01 14:25:48\").getEnd(), Position: (375, 380), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"2017-05-01 14:25:48\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "4e307c90-3897-4ae3-a909-f66017abec41",
+ "stretchType": "ElementGroupHeight",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "380",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "textAdjust": "StretchHeight",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss z",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 168,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'May 1, 2017 2:25:48 PM', Position: (0, 380), Size: 195x20.",
+ "raw_xml": "\n\t\t\tMay 1, 2017 2:25:48 PM\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "f573b087-f5b7-4b86-b6c5-f78699ac98f0",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "380",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 169,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3. Orders Newer than Sep 1, 1996', Position: (0, 422), Size: 555x30.",
+ "raw_xml": "\n\t\t\t3. Orders Newer than Sep 1, 1996\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "526d23d5-a2b4-43af-aefe-7339889be7d4",
+ "x": "0",
+ "y": "422",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 170,
+ "chunk_type": "style_element_property",
+ "human_description": "'title' band of report 'DateRangeReport': property style element.",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_tag": "property"
+ }
+ },
+ {
+ "chunk_id": 171,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DateRangeReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=20).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DateRangeReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 171,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DateRangeReport', height: 43 pixels, splitType: Stretch. Contains 3 elements: 2x textField, 1x line. Visible text samples: ${\"Page \" + $V{PAGE_NUMBER}}; ${\" of \" + $V{PAGE_NUMBER}}",
+ "raw_xml": "\n\t\t\n\t\t\t\"Page \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\" of \" + $V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\n",
+ "context": "Report 'DateRangeReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "43",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 2,
+ "line": 1
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + $V{PAGE_NUMBER}}",
+ "${\" of \" + $V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 171,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DateRangeReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: Freight; Order Date; Order ID",
+ "raw_xml": "\n\t\t\n\t\t\tFreight\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\tOrder Date\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\tOrder ID\n\t\t\t\n\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DateRangeReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Freight",
+ "Order Date",
+ "Order ID"
+ ]
+ }
+ },
+ {
+ "chunk_id": 171,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Report', Position: (0, 0), Size: 555x40.",
+ "raw_xml": "\n\t\t\tDate Range Report\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "efe3afc1-067c-456d-8287-a6cf41a9f6d8",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "40",
+ "fontSize": "20.0",
+ "bold": "true",
+ "hTextAlign": "Center",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 172,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '1. Relative Date Ranges', Position: (0, 60), Size: 555x30.",
+ "raw_xml": "\n\t\t\t1. Relative Date Ranges\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "417edd63-2939-4f63-a4f4-7859bc00bd65",
+ "x": "0",
+ "y": "60",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 173,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range', Position: (0, 100), Size: 100x20.",
+ "raw_xml": "\n\t\t\tDate Range\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "b5437590-6926-4e90-ac8d-e2526769259e",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "100",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 174,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Expression', Position: (100, 100), Size: 95x20.",
+ "raw_xml": "\n\t\t\tExpression\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "d76e4d8a-b6d1-4a11-ae8f-d11d217576b9",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "100",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 175,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Start', Position: (195, 100), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range Start\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a0f5da29-800d-476e-b80c-7aa3d837744b",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "100",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 176,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range End', Position: (375, 100), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range End\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9623bd43-5ef1-43ff-8317-d3c385688389",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "100",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 177,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY\\\"\", Position: (100, 120), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "ec9ae446-8437-4f82-89f2-c67563100b65",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "120",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 178,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'today', Position: (0, 120), Size: 100x20.",
+ "raw_xml": "\n\t\t\ttoday\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a629e246-6b0d-455a-bbe7-8379e6443120",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "120",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 179,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY\").getStart(), Position: (195, 120), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "da63a638-5bc6-4a71-915f-cb5ea3c9d3a6",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "120",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 180,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY\").getEnd(), Position: (375, 120), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7fb693e9-2b12-47cf-8c0e-dc6c2f3c6bc2",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "120",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 181,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 days ago', Position: (0, 140), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 days ago\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "0232c581-2a0c-4939-8bd5-95eebb02b077",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "140",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 182,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY-3\\\"\", Position: (100, 140), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY-3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "711fa621-b354-4558-b883-d54fdd6c5192",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "140",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 183,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY-3\").getStart(), Position: (195, 140), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY-3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "443d6099-c0fc-479d-89ba-7efbff6b9be3",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "140",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 184,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY-3\").getEnd(), Position: (375, 140), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY-3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "0d8e362a-507f-4350-978b-02357736591e",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "140",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 185,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 days later', Position: (0, 160), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 days later\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2706e048-8d07-48c1-b798-9d0c20ededb6",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "160",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 186,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY+3\\\"\", Position: (100, 160), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY+3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "767eb648-e824-45ed-b080-40e63856986e",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "160",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 187,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY+3\").getStart(), Position: (195, 160), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY+3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "2f21ebac-e3e7-49be-b6a3-6c19e315a216",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "160",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 188,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY+3\").getEnd(), Position: (375, 160), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY+3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "d689df50-8a3c-44e0-ac83-0e27abf0379d",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "160",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 189,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'next week', Position: (0, 180), Size: 100x20.",
+ "raw_xml": "\n\t\t\tnext week\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "98347e9b-bd0a-479c-81e9-b114e3ef1935",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "180",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 190,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"WEEK+1\\\"\", Position: (100, 180), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"WEEK+1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "88a3c617-01b4-417c-84c8-eba5ea522a86",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "180",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 191,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"WEEK+1\").getStart(), Position: (195, 180), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"WEEK+1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "cf82b282-f0fe-4aec-aab8-5f71af80f727",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "180",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 192,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"WEEK+1\").getEnd(), Position: (375, 180), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"WEEK+1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "aff2b4c6-e3a3-4d07-8a68-68c9ad960b14",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "180",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 193,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'this year', Position: (0, 200), Size: 100x20.",
+ "raw_xml": "\n\t\t\tthis year\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a8de9137-7788-4c33-8207-c8cda28d5d04",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "200",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 194,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"YEAR\\\"\", Position: (100, 200), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"YEAR\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "5adff42d-f03e-44b0-8a3d-fd60031b31a0",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "200",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 195,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"YEAR\").getStart(), Position: (195, 200), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"YEAR\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8397152f-7d01-4e47-ac56-2fba48b16146",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "200",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 196,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"YEAR\").getEnd(), Position: (375, 200), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"YEAR\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "2687a4f5-dacc-4fc0-94a1-80bd01c928a2",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "200",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 197,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'last month', Position: (0, 220), Size: 100x20.",
+ "raw_xml": "\n\t\t\tlast month\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "51c840d5-82e8-4b43-8d2c-d6525113f5c5",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "220",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 198,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"MONTH-1\\\"\", Position: (100, 220), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"MONTH-1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7b26215d-4d73-4adc-81e0-f0421749431a",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "220",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 199,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"MONTH-1\").getStart(), Position: (195, 220), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"MONTH-1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "27726ba2-b18b-42b9-a3ae-cc61b74fd8b8",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "220",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 200,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"MONTH-1\").getEnd(), Position: (375, 220), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"MONTH-1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "837d42b0-ee53-4383-a528-cd2039852cd5",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "220",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 201,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'next quarter', Position: (0, 240), Size: 100x20.",
+ "raw_xml": "\n\t\t\tnext quarter\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "6753bc83-e017-46bb-af0c-0ca3c27b4d57",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "240",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 202,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"QUARTER+1\\\"\", Position: (100, 240), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"QUARTER+1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f145f054-d42c-45b4-a2db-5bbe18bda049",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "240",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 203,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"QUARTER+1\").getStart(), Position: (195, 240), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"QUARTER+1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "99ff2c8f-ce1b-45dd-b738-f246aa97e63f",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "240",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 204,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"QUARTER+1\").getEnd(), Position: (375, 240), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"QUARTER+1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f5d04922-5329-4366-98d1-a51ed6b758f1",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "240",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 205,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 semesters ago', Position: (0, 260), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 semesters ago\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e667d8d6-56c2-4c60-a9f1-80cd68455172",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "260",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 206,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"SEMI-3\\\"\", Position: (100, 260), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"SEMI-3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c9b24fbd-32f8-41b8-a6ea-7dccd7c539b0",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "260",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 207,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"SEMI-3\").getStart(), Position: (195, 260), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"SEMI-3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6f91f1c6-1bbf-4426-9757-790325f5890d",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "260",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 208,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"SEMI-3\").getEnd(), Position: (375, 260), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"SEMI-3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "dea71ffe-0e56-4d43-9de7-96035eb6643f",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "260",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 209,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '2. Fixed Date and Timestamp with Report Timezon...', Position: (0, 300), Size: 555x30.",
+ "raw_xml": "\n\t\t\t2. Fixed Date and Timestamp with Report Timezone\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "19a61274-0bd4-46bf-9f31-211b9b4f4f89",
+ "x": "0",
+ "y": "300",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 210,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date/Time', Position: (0, 340), Size: 195x20.",
+ "raw_xml": "\n\t\t\tDate/Time\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9cbd56c9-6ce9-4087-9bf0-1faefd95b76c",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "340",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 211,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Expression', Position: (195, 340), Size: 180x20.",
+ "raw_xml": "\n\t\t\tExpression\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "1ea4e353-910e-4e2f-9ab4-4b3a68d90edb",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "340",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 212,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Start/End', Position: (375, 340), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range Start/End\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "50b03487-23d8-4f56-a188-97b4984a2958",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "340",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 213,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'May 1, 2017', Position: (0, 360), Size: 195x20.",
+ "raw_xml": "\n\t\t\tMay 1, 2017\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "7ba3fa7d-3eee-44a9-84ea-fc3aea25aade",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "360",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 214,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"2017-05-01\\\"\", Position: (195, 360), Size: 180x20.",
+ "raw_xml": "\n\t\t\t\"\\\"2017-05-01\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "83d69fbe-3b8b-4c40-a67f-2f5655b0f83f",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "360",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 215,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"2017-05-01+3\").getStart(), Position: (375, 360), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"2017-05-01+3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c3cc02d9-f3c3-4c1b-9545-b6be16c4b5d7",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "360",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss z",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 216,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"2017-05-01 14:25:48\\\"\", Position: (195, 380), Size: 180x20.",
+ "raw_xml": "\n\t\t\t\"\\\"2017-05-01 14:25:48\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "ca84eecd-d1f6-4e9e-852d-fac232e95099",
+ "stretchType": "ElementGroupHeight",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "380",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "textAdjust": "StretchHeight",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 217,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"2017-05-01 14:25:48\").getEnd(), Position: (375, 380), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"2017-05-01 14:25:48\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "4e307c90-3897-4ae3-a909-f66017abec41",
+ "stretchType": "ElementGroupHeight",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "380",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "textAdjust": "StretchHeight",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss z",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 218,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'May 1, 2017 2:25:48 PM', Position: (0, 380), Size: 195x20.",
+ "raw_xml": "\n\t\t\tMay 1, 2017 2:25:48 PM\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "f573b087-f5b7-4b86-b6c5-f78699ac98f0",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "380",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 219,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3. Orders Newer than Sep 1, 1996', Position: (0, 422), Size: 555x30.",
+ "raw_xml": "\n\t\t\t3. Orders Newer than Sep 1, 1996\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "526d23d5-a2b4-43af-aefe-7339889be7d4",
+ "x": "0",
+ "y": "422",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 220,
+ "chunk_type": "style_element_property",
+ "human_description": "'title' band of report 'DateRangeReport': property style element.",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_tag": "property"
+ }
+ },
+ {
+ "chunk_id": 221,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DateRangeReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=20).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DateRangeReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 221,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DateRangeReport', height: 43 pixels, splitType: Stretch. Contains 3 elements: 2x textField, 1x line. Visible text samples: ${\"Page \" + $V{PAGE_NUMBER}}; ${\" of \" + $V{PAGE_NUMBER}}",
+ "raw_xml": "\n\t\t\n\t\t\t\"Page \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\" of \" + $V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\n",
+ "context": "Report 'DateRangeReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "43",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 2,
+ "line": 1
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + $V{PAGE_NUMBER}}",
+ "${\" of \" + $V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 221,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DateRangeReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: Freight; Order Date; Order ID",
+ "raw_xml": "\n\t\t\n\t\t\tFreight\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\tOrder Date\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\tOrder ID\n\t\t\t\n\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DateRangeReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Freight",
+ "Order Date",
+ "Order ID"
+ ]
+ }
+ },
+ {
+ "chunk_id": 221,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Report', Position: (0, 0), Size: 555x40.",
+ "raw_xml": "\n\t\t\tDate Range Report\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "efe3afc1-067c-456d-8287-a6cf41a9f6d8",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "40",
+ "fontSize": "20.0",
+ "bold": "true",
+ "hTextAlign": "Center",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 222,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '1. Relative Date Ranges', Position: (0, 60), Size: 555x30.",
+ "raw_xml": "\n\t\t\t1. Relative Date Ranges\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "417edd63-2939-4f63-a4f4-7859bc00bd65",
+ "x": "0",
+ "y": "60",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 223,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range', Position: (0, 100), Size: 100x20.",
+ "raw_xml": "\n\t\t\tDate Range\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "b5437590-6926-4e90-ac8d-e2526769259e",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "100",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 224,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Expression', Position: (100, 100), Size: 95x20.",
+ "raw_xml": "\n\t\t\tExpression\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "d76e4d8a-b6d1-4a11-ae8f-d11d217576b9",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "100",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 225,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Start', Position: (195, 100), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range Start\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a0f5da29-800d-476e-b80c-7aa3d837744b",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "100",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 226,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range End', Position: (375, 100), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range End\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9623bd43-5ef1-43ff-8317-d3c385688389",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "100",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 227,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY\\\"\", Position: (100, 120), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "ec9ae446-8437-4f82-89f2-c67563100b65",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "120",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 228,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'today', Position: (0, 120), Size: 100x20.",
+ "raw_xml": "\n\t\t\ttoday\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a629e246-6b0d-455a-bbe7-8379e6443120",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "120",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 229,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY\").getStart(), Position: (195, 120), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "da63a638-5bc6-4a71-915f-cb5ea3c9d3a6",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "120",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 230,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY\").getEnd(), Position: (375, 120), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7fb693e9-2b12-47cf-8c0e-dc6c2f3c6bc2",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "120",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 231,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 days ago', Position: (0, 140), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 days ago\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "0232c581-2a0c-4939-8bd5-95eebb02b077",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "140",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 232,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY-3\\\"\", Position: (100, 140), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY-3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "711fa621-b354-4558-b883-d54fdd6c5192",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "140",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 233,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY-3\").getStart(), Position: (195, 140), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY-3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "443d6099-c0fc-479d-89ba-7efbff6b9be3",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "140",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 234,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY-3\").getEnd(), Position: (375, 140), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY-3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "0d8e362a-507f-4350-978b-02357736591e",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "140",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 235,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 days later', Position: (0, 160), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 days later\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2706e048-8d07-48c1-b798-9d0c20ededb6",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "160",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 236,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY+3\\\"\", Position: (100, 160), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY+3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "767eb648-e824-45ed-b080-40e63856986e",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "160",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 237,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY+3\").getStart(), Position: (195, 160), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY+3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "2f21ebac-e3e7-49be-b6a3-6c19e315a216",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "160",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 238,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY+3\").getEnd(), Position: (375, 160), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY+3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "d689df50-8a3c-44e0-ac83-0e27abf0379d",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "160",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 239,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'next week', Position: (0, 180), Size: 100x20.",
+ "raw_xml": "\n\t\t\tnext week\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "98347e9b-bd0a-479c-81e9-b114e3ef1935",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "180",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 240,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"WEEK+1\\\"\", Position: (100, 180), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"WEEK+1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "88a3c617-01b4-417c-84c8-eba5ea522a86",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "180",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 241,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"WEEK+1\").getStart(), Position: (195, 180), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"WEEK+1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "cf82b282-f0fe-4aec-aab8-5f71af80f727",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "180",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 242,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"WEEK+1\").getEnd(), Position: (375, 180), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"WEEK+1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "aff2b4c6-e3a3-4d07-8a68-68c9ad960b14",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "180",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 243,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'this year', Position: (0, 200), Size: 100x20.",
+ "raw_xml": "\n\t\t\tthis year\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a8de9137-7788-4c33-8207-c8cda28d5d04",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "200",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 244,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"YEAR\\\"\", Position: (100, 200), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"YEAR\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "5adff42d-f03e-44b0-8a3d-fd60031b31a0",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "200",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 245,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"YEAR\").getStart(), Position: (195, 200), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"YEAR\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8397152f-7d01-4e47-ac56-2fba48b16146",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "200",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 246,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"YEAR\").getEnd(), Position: (375, 200), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"YEAR\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "2687a4f5-dacc-4fc0-94a1-80bd01c928a2",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "200",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 247,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'last month', Position: (0, 220), Size: 100x20.",
+ "raw_xml": "\n\t\t\tlast month\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "51c840d5-82e8-4b43-8d2c-d6525113f5c5",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "220",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 248,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"MONTH-1\\\"\", Position: (100, 220), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"MONTH-1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7b26215d-4d73-4adc-81e0-f0421749431a",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "220",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 249,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"MONTH-1\").getStart(), Position: (195, 220), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"MONTH-1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "27726ba2-b18b-42b9-a3ae-cc61b74fd8b8",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "220",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 250,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"MONTH-1\").getEnd(), Position: (375, 220), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"MONTH-1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "837d42b0-ee53-4383-a528-cd2039852cd5",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "220",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 251,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'next quarter', Position: (0, 240), Size: 100x20.",
+ "raw_xml": "\n\t\t\tnext quarter\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "6753bc83-e017-46bb-af0c-0ca3c27b4d57",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "240",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 252,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"QUARTER+1\\\"\", Position: (100, 240), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"QUARTER+1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f145f054-d42c-45b4-a2db-5bbe18bda049",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "240",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 253,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"QUARTER+1\").getStart(), Position: (195, 240), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"QUARTER+1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "99ff2c8f-ce1b-45dd-b738-f246aa97e63f",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "240",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 254,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"QUARTER+1\").getEnd(), Position: (375, 240), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"QUARTER+1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f5d04922-5329-4366-98d1-a51ed6b758f1",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "240",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 255,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 semesters ago', Position: (0, 260), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 semesters ago\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e667d8d6-56c2-4c60-a9f1-80cd68455172",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "260",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 256,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"SEMI-3\\\"\", Position: (100, 260), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"SEMI-3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c9b24fbd-32f8-41b8-a6ea-7dccd7c539b0",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "260",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 257,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"SEMI-3\").getStart(), Position: (195, 260), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"SEMI-3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6f91f1c6-1bbf-4426-9757-790325f5890d",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "260",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 258,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"SEMI-3\").getEnd(), Position: (375, 260), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"SEMI-3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "dea71ffe-0e56-4d43-9de7-96035eb6643f",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "260",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 259,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '2. Fixed Date and Timestamp with Report Timezon...', Position: (0, 300), Size: 555x30.",
+ "raw_xml": "\n\t\t\t2. Fixed Date and Timestamp with Report Timezone\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "19a61274-0bd4-46bf-9f31-211b9b4f4f89",
+ "x": "0",
+ "y": "300",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 260,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date/Time', Position: (0, 340), Size: 195x20.",
+ "raw_xml": "\n\t\t\tDate/Time\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9cbd56c9-6ce9-4087-9bf0-1faefd95b76c",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "340",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 261,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Expression', Position: (195, 340), Size: 180x20.",
+ "raw_xml": "\n\t\t\tExpression\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "1ea4e353-910e-4e2f-9ab4-4b3a68d90edb",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "340",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 262,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Start/End', Position: (375, 340), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range Start/End\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "50b03487-23d8-4f56-a188-97b4984a2958",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "340",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 263,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'May 1, 2017', Position: (0, 360), Size: 195x20.",
+ "raw_xml": "\n\t\t\tMay 1, 2017\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "7ba3fa7d-3eee-44a9-84ea-fc3aea25aade",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "360",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 264,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"2017-05-01\\\"\", Position: (195, 360), Size: 180x20.",
+ "raw_xml": "\n\t\t\t\"\\\"2017-05-01\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "83d69fbe-3b8b-4c40-a67f-2f5655b0f83f",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "360",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 265,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"2017-05-01+3\").getStart(), Position: (375, 360), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"2017-05-01+3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c3cc02d9-f3c3-4c1b-9545-b6be16c4b5d7",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "360",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss z",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 266,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"2017-05-01 14:25:48\\\"\", Position: (195, 380), Size: 180x20.",
+ "raw_xml": "\n\t\t\t\"\\\"2017-05-01 14:25:48\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "ca84eecd-d1f6-4e9e-852d-fac232e95099",
+ "stretchType": "ElementGroupHeight",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "380",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "textAdjust": "StretchHeight",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 267,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"2017-05-01 14:25:48\").getEnd(), Position: (375, 380), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"2017-05-01 14:25:48\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "4e307c90-3897-4ae3-a909-f66017abec41",
+ "stretchType": "ElementGroupHeight",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "380",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "textAdjust": "StretchHeight",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss z",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 268,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'May 1, 2017 2:25:48 PM', Position: (0, 380), Size: 195x20.",
+ "raw_xml": "\n\t\t\tMay 1, 2017 2:25:48 PM\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "f573b087-f5b7-4b86-b6c5-f78699ac98f0",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "380",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 269,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3. Orders Newer than Sep 1, 1996', Position: (0, 422), Size: 555x30.",
+ "raw_xml": "\n\t\t\t3. Orders Newer than Sep 1, 1996\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "526d23d5-a2b4-43af-aefe-7339889be7d4",
+ "x": "0",
+ "y": "422",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 270,
+ "chunk_type": "style_element_property",
+ "human_description": "'title' band of report 'DateRangeReport': property style element.",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_tag": "property"
+ }
+ },
+ {
+ "chunk_id": 271,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DateRangeReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=20).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DateRangeReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 271,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DateRangeReport', height: 43 pixels, splitType: Stretch. Contains 3 elements: 2x textField, 1x line. Visible text samples: ${\"Page \" + $V{PAGE_NUMBER}}; ${\" of \" + $V{PAGE_NUMBER}}",
+ "raw_xml": "\n\t\t\n\t\t\t\"Page \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\" of \" + $V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\n",
+ "context": "Report 'DateRangeReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "43",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 2,
+ "line": 1
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + $V{PAGE_NUMBER}}",
+ "${\" of \" + $V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 271,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DateRangeReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: Freight; Order Date; Order ID",
+ "raw_xml": "\n\t\t\n\t\t\tFreight\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\tOrder Date\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\tOrder ID\n\t\t\t\n\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DateRangeReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Freight",
+ "Order Date",
+ "Order ID"
+ ]
+ }
+ },
+ {
+ "chunk_id": 271,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Report', Position: (0, 0), Size: 555x40.",
+ "raw_xml": "\n\t\t\tDate Range Report\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "efe3afc1-067c-456d-8287-a6cf41a9f6d8",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "40",
+ "fontSize": "20.0",
+ "bold": "true",
+ "hTextAlign": "Center",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 272,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '1. Relative Date Ranges', Position: (0, 60), Size: 555x30.",
+ "raw_xml": "\n\t\t\t1. Relative Date Ranges\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "417edd63-2939-4f63-a4f4-7859bc00bd65",
+ "x": "0",
+ "y": "60",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 273,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range', Position: (0, 100), Size: 100x20.",
+ "raw_xml": "\n\t\t\tDate Range\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "b5437590-6926-4e90-ac8d-e2526769259e",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "100",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 274,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Expression', Position: (100, 100), Size: 95x20.",
+ "raw_xml": "\n\t\t\tExpression\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "d76e4d8a-b6d1-4a11-ae8f-d11d217576b9",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "100",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 275,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Start', Position: (195, 100), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range Start\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a0f5da29-800d-476e-b80c-7aa3d837744b",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "100",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 276,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range End', Position: (375, 100), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range End\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9623bd43-5ef1-43ff-8317-d3c385688389",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "100",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 277,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY\\\"\", Position: (100, 120), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "ec9ae446-8437-4f82-89f2-c67563100b65",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "120",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 278,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'today', Position: (0, 120), Size: 100x20.",
+ "raw_xml": "\n\t\t\ttoday\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a629e246-6b0d-455a-bbe7-8379e6443120",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "120",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 279,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY\").getStart(), Position: (195, 120), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "da63a638-5bc6-4a71-915f-cb5ea3c9d3a6",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "120",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 280,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY\").getEnd(), Position: (375, 120), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7fb693e9-2b12-47cf-8c0e-dc6c2f3c6bc2",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "120",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 281,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 days ago', Position: (0, 140), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 days ago\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "0232c581-2a0c-4939-8bd5-95eebb02b077",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "140",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 282,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY-3\\\"\", Position: (100, 140), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY-3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "711fa621-b354-4558-b883-d54fdd6c5192",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "140",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 283,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY-3\").getStart(), Position: (195, 140), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY-3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "443d6099-c0fc-479d-89ba-7efbff6b9be3",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "140",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 284,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY-3\").getEnd(), Position: (375, 140), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY-3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "0d8e362a-507f-4350-978b-02357736591e",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "140",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 285,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 days later', Position: (0, 160), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 days later\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2706e048-8d07-48c1-b798-9d0c20ededb6",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "160",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 286,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY+3\\\"\", Position: (100, 160), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY+3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "767eb648-e824-45ed-b080-40e63856986e",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "160",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 287,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY+3\").getStart(), Position: (195, 160), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY+3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "2f21ebac-e3e7-49be-b6a3-6c19e315a216",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "160",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 288,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY+3\").getEnd(), Position: (375, 160), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY+3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "d689df50-8a3c-44e0-ac83-0e27abf0379d",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "160",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 289,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'next week', Position: (0, 180), Size: 100x20.",
+ "raw_xml": "\n\t\t\tnext week\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "98347e9b-bd0a-479c-81e9-b114e3ef1935",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "180",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 290,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"WEEK+1\\\"\", Position: (100, 180), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"WEEK+1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "88a3c617-01b4-417c-84c8-eba5ea522a86",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "180",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 291,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"WEEK+1\").getStart(), Position: (195, 180), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"WEEK+1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "cf82b282-f0fe-4aec-aab8-5f71af80f727",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "180",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 292,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"WEEK+1\").getEnd(), Position: (375, 180), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"WEEK+1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "aff2b4c6-e3a3-4d07-8a68-68c9ad960b14",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "180",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 293,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'this year', Position: (0, 200), Size: 100x20.",
+ "raw_xml": "\n\t\t\tthis year\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a8de9137-7788-4c33-8207-c8cda28d5d04",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "200",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 294,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"YEAR\\\"\", Position: (100, 200), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"YEAR\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "5adff42d-f03e-44b0-8a3d-fd60031b31a0",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "200",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 295,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"YEAR\").getStart(), Position: (195, 200), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"YEAR\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8397152f-7d01-4e47-ac56-2fba48b16146",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "200",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 296,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"YEAR\").getEnd(), Position: (375, 200), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"YEAR\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "2687a4f5-dacc-4fc0-94a1-80bd01c928a2",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "200",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 297,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'last month', Position: (0, 220), Size: 100x20.",
+ "raw_xml": "\n\t\t\tlast month\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "51c840d5-82e8-4b43-8d2c-d6525113f5c5",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "220",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 298,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"MONTH-1\\\"\", Position: (100, 220), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"MONTH-1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7b26215d-4d73-4adc-81e0-f0421749431a",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "220",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 299,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"MONTH-1\").getStart(), Position: (195, 220), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"MONTH-1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "27726ba2-b18b-42b9-a3ae-cc61b74fd8b8",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "220",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 300,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"MONTH-1\").getEnd(), Position: (375, 220), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"MONTH-1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "837d42b0-ee53-4383-a528-cd2039852cd5",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "220",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 301,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'next quarter', Position: (0, 240), Size: 100x20.",
+ "raw_xml": "\n\t\t\tnext quarter\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "6753bc83-e017-46bb-af0c-0ca3c27b4d57",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "240",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 302,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"QUARTER+1\\\"\", Position: (100, 240), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"QUARTER+1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f145f054-d42c-45b4-a2db-5bbe18bda049",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "240",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 303,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"QUARTER+1\").getStart(), Position: (195, 240), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"QUARTER+1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "99ff2c8f-ce1b-45dd-b738-f246aa97e63f",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "240",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 304,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"QUARTER+1\").getEnd(), Position: (375, 240), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"QUARTER+1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f5d04922-5329-4366-98d1-a51ed6b758f1",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "240",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 305,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 semesters ago', Position: (0, 260), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 semesters ago\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e667d8d6-56c2-4c60-a9f1-80cd68455172",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "260",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 306,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"SEMI-3\\\"\", Position: (100, 260), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"SEMI-3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c9b24fbd-32f8-41b8-a6ea-7dccd7c539b0",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "260",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 307,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"SEMI-3\").getStart(), Position: (195, 260), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"SEMI-3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6f91f1c6-1bbf-4426-9757-790325f5890d",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "260",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 308,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"SEMI-3\").getEnd(), Position: (375, 260), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"SEMI-3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "dea71ffe-0e56-4d43-9de7-96035eb6643f",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "260",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 309,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '2. Fixed Date and Timestamp with Report Timezon...', Position: (0, 300), Size: 555x30.",
+ "raw_xml": "\n\t\t\t2. Fixed Date and Timestamp with Report Timezone\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "19a61274-0bd4-46bf-9f31-211b9b4f4f89",
+ "x": "0",
+ "y": "300",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 310,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date/Time', Position: (0, 340), Size: 195x20.",
+ "raw_xml": "\n\t\t\tDate/Time\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9cbd56c9-6ce9-4087-9bf0-1faefd95b76c",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "340",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 311,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Expression', Position: (195, 340), Size: 180x20.",
+ "raw_xml": "\n\t\t\tExpression\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "1ea4e353-910e-4e2f-9ab4-4b3a68d90edb",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "340",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 312,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Start/End', Position: (375, 340), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range Start/End\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "50b03487-23d8-4f56-a188-97b4984a2958",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "340",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 313,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'May 1, 2017', Position: (0, 360), Size: 195x20.",
+ "raw_xml": "\n\t\t\tMay 1, 2017\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "7ba3fa7d-3eee-44a9-84ea-fc3aea25aade",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "360",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 314,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"2017-05-01\\\"\", Position: (195, 360), Size: 180x20.",
+ "raw_xml": "\n\t\t\t\"\\\"2017-05-01\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "83d69fbe-3b8b-4c40-a67f-2f5655b0f83f",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "360",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 315,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"2017-05-01+3\").getStart(), Position: (375, 360), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"2017-05-01+3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c3cc02d9-f3c3-4c1b-9545-b6be16c4b5d7",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "360",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss z",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 316,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"2017-05-01 14:25:48\\\"\", Position: (195, 380), Size: 180x20.",
+ "raw_xml": "\n\t\t\t\"\\\"2017-05-01 14:25:48\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "ca84eecd-d1f6-4e9e-852d-fac232e95099",
+ "stretchType": "ElementGroupHeight",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "380",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "textAdjust": "StretchHeight",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 317,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"2017-05-01 14:25:48\").getEnd(), Position: (375, 380), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"2017-05-01 14:25:48\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "4e307c90-3897-4ae3-a909-f66017abec41",
+ "stretchType": "ElementGroupHeight",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "380",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "textAdjust": "StretchHeight",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss z",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 318,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'May 1, 2017 2:25:48 PM', Position: (0, 380), Size: 195x20.",
+ "raw_xml": "\n\t\t\tMay 1, 2017 2:25:48 PM\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "f573b087-f5b7-4b86-b6c5-f78699ac98f0",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "380",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 319,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3. Orders Newer than Sep 1, 1996', Position: (0, 422), Size: 555x30.",
+ "raw_xml": "\n\t\t\t3. Orders Newer than Sep 1, 1996\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "526d23d5-a2b4-43af-aefe-7339889be7d4",
+ "x": "0",
+ "y": "422",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 320,
+ "chunk_type": "style_element_property",
+ "human_description": "'title' band of report 'DateRangeReport': property style element.",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_tag": "property"
+ }
+ },
+ {
+ "chunk_id": 321,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DateRangeReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=20).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DateRangeReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 321,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DateRangeReport', height: 43 pixels, splitType: Stretch. Contains 3 elements: 2x textField, 1x line. Visible text samples: ${\"Page \" + $V{PAGE_NUMBER}}; ${\" of \" + $V{PAGE_NUMBER}}",
+ "raw_xml": "\n\t\t\n\t\t\t\"Page \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\" of \" + $V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\n",
+ "context": "Report 'DateRangeReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "43",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 2,
+ "line": 1
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + $V{PAGE_NUMBER}}",
+ "${\" of \" + $V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 321,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DateRangeReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: Freight; Order Date; Order ID",
+ "raw_xml": "\n\t\t\n\t\t\tFreight\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\tOrder Date\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\tOrder ID\n\t\t\t\n\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DateRangeReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Freight",
+ "Order Date",
+ "Order ID"
+ ]
+ }
+ },
+ {
+ "chunk_id": 321,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Report', Position: (0, 0), Size: 555x40.",
+ "raw_xml": "\n\t\t\tDate Range Report\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "efe3afc1-067c-456d-8287-a6cf41a9f6d8",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "40",
+ "fontSize": "20.0",
+ "bold": "true",
+ "hTextAlign": "Center",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 322,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '1. Relative Date Ranges', Position: (0, 60), Size: 555x30.",
+ "raw_xml": "\n\t\t\t1. Relative Date Ranges\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "417edd63-2939-4f63-a4f4-7859bc00bd65",
+ "x": "0",
+ "y": "60",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 323,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range', Position: (0, 100), Size: 100x20.",
+ "raw_xml": "\n\t\t\tDate Range\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "b5437590-6926-4e90-ac8d-e2526769259e",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "100",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 324,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Expression', Position: (100, 100), Size: 95x20.",
+ "raw_xml": "\n\t\t\tExpression\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "d76e4d8a-b6d1-4a11-ae8f-d11d217576b9",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "100",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 325,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Start', Position: (195, 100), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range Start\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a0f5da29-800d-476e-b80c-7aa3d837744b",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "100",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 326,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range End', Position: (375, 100), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range End\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9623bd43-5ef1-43ff-8317-d3c385688389",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "100",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 327,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY\\\"\", Position: (100, 120), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "ec9ae446-8437-4f82-89f2-c67563100b65",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "120",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 328,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'today', Position: (0, 120), Size: 100x20.",
+ "raw_xml": "\n\t\t\ttoday\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a629e246-6b0d-455a-bbe7-8379e6443120",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "120",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 329,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY\").getStart(), Position: (195, 120), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "da63a638-5bc6-4a71-915f-cb5ea3c9d3a6",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "120",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 330,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY\").getEnd(), Position: (375, 120), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7fb693e9-2b12-47cf-8c0e-dc6c2f3c6bc2",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "120",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 331,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 days ago', Position: (0, 140), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 days ago\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "0232c581-2a0c-4939-8bd5-95eebb02b077",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "140",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 332,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY-3\\\"\", Position: (100, 140), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY-3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "711fa621-b354-4558-b883-d54fdd6c5192",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "140",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 333,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY-3\").getStart(), Position: (195, 140), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY-3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "443d6099-c0fc-479d-89ba-7efbff6b9be3",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "140",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 334,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY-3\").getEnd(), Position: (375, 140), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY-3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "0d8e362a-507f-4350-978b-02357736591e",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "140",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 335,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 days later', Position: (0, 160), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 days later\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2706e048-8d07-48c1-b798-9d0c20ededb6",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "160",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 336,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY+3\\\"\", Position: (100, 160), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY+3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "767eb648-e824-45ed-b080-40e63856986e",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "160",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 337,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY+3\").getStart(), Position: (195, 160), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY+3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "2f21ebac-e3e7-49be-b6a3-6c19e315a216",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "160",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 338,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY+3\").getEnd(), Position: (375, 160), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY+3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "d689df50-8a3c-44e0-ac83-0e27abf0379d",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "160",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 339,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'next week', Position: (0, 180), Size: 100x20.",
+ "raw_xml": "\n\t\t\tnext week\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "98347e9b-bd0a-479c-81e9-b114e3ef1935",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "180",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 340,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"WEEK+1\\\"\", Position: (100, 180), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"WEEK+1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "88a3c617-01b4-417c-84c8-eba5ea522a86",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "180",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 341,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"WEEK+1\").getStart(), Position: (195, 180), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"WEEK+1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "cf82b282-f0fe-4aec-aab8-5f71af80f727",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "180",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 342,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"WEEK+1\").getEnd(), Position: (375, 180), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"WEEK+1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "aff2b4c6-e3a3-4d07-8a68-68c9ad960b14",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "180",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 343,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'this year', Position: (0, 200), Size: 100x20.",
+ "raw_xml": "\n\t\t\tthis year\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a8de9137-7788-4c33-8207-c8cda28d5d04",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "200",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 344,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"YEAR\\\"\", Position: (100, 200), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"YEAR\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "5adff42d-f03e-44b0-8a3d-fd60031b31a0",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "200",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 345,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"YEAR\").getStart(), Position: (195, 200), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"YEAR\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8397152f-7d01-4e47-ac56-2fba48b16146",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "200",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 346,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"YEAR\").getEnd(), Position: (375, 200), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"YEAR\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "2687a4f5-dacc-4fc0-94a1-80bd01c928a2",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "200",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 347,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'last month', Position: (0, 220), Size: 100x20.",
+ "raw_xml": "\n\t\t\tlast month\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "51c840d5-82e8-4b43-8d2c-d6525113f5c5",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "220",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 348,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"MONTH-1\\\"\", Position: (100, 220), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"MONTH-1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7b26215d-4d73-4adc-81e0-f0421749431a",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "220",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 349,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"MONTH-1\").getStart(), Position: (195, 220), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"MONTH-1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "27726ba2-b18b-42b9-a3ae-cc61b74fd8b8",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "220",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 350,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"MONTH-1\").getEnd(), Position: (375, 220), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"MONTH-1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "837d42b0-ee53-4383-a528-cd2039852cd5",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "220",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 351,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'next quarter', Position: (0, 240), Size: 100x20.",
+ "raw_xml": "\n\t\t\tnext quarter\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "6753bc83-e017-46bb-af0c-0ca3c27b4d57",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "240",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 352,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"QUARTER+1\\\"\", Position: (100, 240), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"QUARTER+1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f145f054-d42c-45b4-a2db-5bbe18bda049",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "240",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 353,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"QUARTER+1\").getStart(), Position: (195, 240), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"QUARTER+1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "99ff2c8f-ce1b-45dd-b738-f246aa97e63f",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "240",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 354,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"QUARTER+1\").getEnd(), Position: (375, 240), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"QUARTER+1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f5d04922-5329-4366-98d1-a51ed6b758f1",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "240",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 355,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 semesters ago', Position: (0, 260), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 semesters ago\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e667d8d6-56c2-4c60-a9f1-80cd68455172",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "260",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 356,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"SEMI-3\\\"\", Position: (100, 260), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"SEMI-3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c9b24fbd-32f8-41b8-a6ea-7dccd7c539b0",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "260",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 357,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"SEMI-3\").getStart(), Position: (195, 260), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"SEMI-3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6f91f1c6-1bbf-4426-9757-790325f5890d",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "260",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 358,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"SEMI-3\").getEnd(), Position: (375, 260), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"SEMI-3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "dea71ffe-0e56-4d43-9de7-96035eb6643f",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "260",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 359,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '2. Fixed Date and Timestamp with Report Timezon...', Position: (0, 300), Size: 555x30.",
+ "raw_xml": "\n\t\t\t2. Fixed Date and Timestamp with Report Timezone\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "19a61274-0bd4-46bf-9f31-211b9b4f4f89",
+ "x": "0",
+ "y": "300",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 360,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date/Time', Position: (0, 340), Size: 195x20.",
+ "raw_xml": "\n\t\t\tDate/Time\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9cbd56c9-6ce9-4087-9bf0-1faefd95b76c",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "340",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 361,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Expression', Position: (195, 340), Size: 180x20.",
+ "raw_xml": "\n\t\t\tExpression\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "1ea4e353-910e-4e2f-9ab4-4b3a68d90edb",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "340",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 362,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Start/End', Position: (375, 340), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range Start/End\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "50b03487-23d8-4f56-a188-97b4984a2958",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "340",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 363,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'May 1, 2017', Position: (0, 360), Size: 195x20.",
+ "raw_xml": "\n\t\t\tMay 1, 2017\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "7ba3fa7d-3eee-44a9-84ea-fc3aea25aade",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "360",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 364,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"2017-05-01\\\"\", Position: (195, 360), Size: 180x20.",
+ "raw_xml": "\n\t\t\t\"\\\"2017-05-01\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "83d69fbe-3b8b-4c40-a67f-2f5655b0f83f",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "360",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 365,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"2017-05-01+3\").getStart(), Position: (375, 360), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"2017-05-01+3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c3cc02d9-f3c3-4c1b-9545-b6be16c4b5d7",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "360",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss z",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 366,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"2017-05-01 14:25:48\\\"\", Position: (195, 380), Size: 180x20.",
+ "raw_xml": "\n\t\t\t\"\\\"2017-05-01 14:25:48\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "ca84eecd-d1f6-4e9e-852d-fac232e95099",
+ "stretchType": "ElementGroupHeight",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "380",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "textAdjust": "StretchHeight",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 367,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"2017-05-01 14:25:48\").getEnd(), Position: (375, 380), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"2017-05-01 14:25:48\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "4e307c90-3897-4ae3-a909-f66017abec41",
+ "stretchType": "ElementGroupHeight",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "380",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "textAdjust": "StretchHeight",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss z",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 368,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'May 1, 2017 2:25:48 PM', Position: (0, 380), Size: 195x20.",
+ "raw_xml": "\n\t\t\tMay 1, 2017 2:25:48 PM\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "f573b087-f5b7-4b86-b6c5-f78699ac98f0",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "380",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 369,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3. Orders Newer than Sep 1, 1996', Position: (0, 422), Size: 555x30.",
+ "raw_xml": "\n\t\t\t3. Orders Newer than Sep 1, 1996\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "526d23d5-a2b4-43af-aefe-7339889be7d4",
+ "x": "0",
+ "y": "422",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 370,
+ "chunk_type": "style_element_property",
+ "human_description": "'title' band of report 'DateRangeReport': property style element.",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_tag": "property"
+ }
+ },
+ {
+ "chunk_id": 371,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DateRangeReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=20).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DateRangeReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 371,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DateRangeReport', height: 43 pixels, splitType: Stretch. Contains 3 elements: 2x textField, 1x line. Visible text samples: ${\"Page \" + $V{PAGE_NUMBER}}; ${\" of \" + $V{PAGE_NUMBER}}",
+ "raw_xml": "\n\t\t\n\t\t\t\"Page \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\" of \" + $V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\n",
+ "context": "Report 'DateRangeReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "43",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 2,
+ "line": 1
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + $V{PAGE_NUMBER}}",
+ "${\" of \" + $V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 371,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DateRangeReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: Freight; Order Date; Order ID",
+ "raw_xml": "\n\t\t\n\t\t\tFreight\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\tOrder Date\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\tOrder ID\n\t\t\t\n\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DateRangeReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Freight",
+ "Order Date",
+ "Order ID"
+ ]
+ }
+ },
+ {
+ "chunk_id": 371,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Report', Position: (0, 0), Size: 555x40.",
+ "raw_xml": "\n\t\t\tDate Range Report\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "efe3afc1-067c-456d-8287-a6cf41a9f6d8",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "40",
+ "fontSize": "20.0",
+ "bold": "true",
+ "hTextAlign": "Center",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 372,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '1. Relative Date Ranges', Position: (0, 60), Size: 555x30.",
+ "raw_xml": "\n\t\t\t1. Relative Date Ranges\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "417edd63-2939-4f63-a4f4-7859bc00bd65",
+ "x": "0",
+ "y": "60",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 373,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range', Position: (0, 100), Size: 100x20.",
+ "raw_xml": "\n\t\t\tDate Range\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "b5437590-6926-4e90-ac8d-e2526769259e",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "100",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 374,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Expression', Position: (100, 100), Size: 95x20.",
+ "raw_xml": "\n\t\t\tExpression\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "d76e4d8a-b6d1-4a11-ae8f-d11d217576b9",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "100",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 375,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Start', Position: (195, 100), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range Start\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a0f5da29-800d-476e-b80c-7aa3d837744b",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "100",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 376,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range End', Position: (375, 100), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range End\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9623bd43-5ef1-43ff-8317-d3c385688389",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "100",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 377,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY\\\"\", Position: (100, 120), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "ec9ae446-8437-4f82-89f2-c67563100b65",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "120",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 378,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'today', Position: (0, 120), Size: 100x20.",
+ "raw_xml": "\n\t\t\ttoday\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a629e246-6b0d-455a-bbe7-8379e6443120",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "120",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 379,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY\").getStart(), Position: (195, 120), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "da63a638-5bc6-4a71-915f-cb5ea3c9d3a6",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "120",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 380,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY\").getEnd(), Position: (375, 120), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7fb693e9-2b12-47cf-8c0e-dc6c2f3c6bc2",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "120",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 381,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 days ago', Position: (0, 140), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 days ago\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "0232c581-2a0c-4939-8bd5-95eebb02b077",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "140",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 382,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY-3\\\"\", Position: (100, 140), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY-3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "711fa621-b354-4558-b883-d54fdd6c5192",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "140",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 383,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY-3\").getStart(), Position: (195, 140), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY-3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "443d6099-c0fc-479d-89ba-7efbff6b9be3",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "140",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 384,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY-3\").getEnd(), Position: (375, 140), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY-3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "0d8e362a-507f-4350-978b-02357736591e",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "140",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 385,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 days later', Position: (0, 160), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 days later\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2706e048-8d07-48c1-b798-9d0c20ededb6",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "160",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 386,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY+3\\\"\", Position: (100, 160), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY+3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "767eb648-e824-45ed-b080-40e63856986e",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "160",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 387,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY+3\").getStart(), Position: (195, 160), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY+3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "2f21ebac-e3e7-49be-b6a3-6c19e315a216",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "160",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 388,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY+3\").getEnd(), Position: (375, 160), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY+3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "d689df50-8a3c-44e0-ac83-0e27abf0379d",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "160",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 389,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'next week', Position: (0, 180), Size: 100x20.",
+ "raw_xml": "\n\t\t\tnext week\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "98347e9b-bd0a-479c-81e9-b114e3ef1935",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "180",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 390,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"WEEK+1\\\"\", Position: (100, 180), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"WEEK+1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "88a3c617-01b4-417c-84c8-eba5ea522a86",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "180",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 391,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"WEEK+1\").getStart(), Position: (195, 180), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"WEEK+1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "cf82b282-f0fe-4aec-aab8-5f71af80f727",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "180",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 392,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"WEEK+1\").getEnd(), Position: (375, 180), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"WEEK+1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "aff2b4c6-e3a3-4d07-8a68-68c9ad960b14",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "180",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 393,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'this year', Position: (0, 200), Size: 100x20.",
+ "raw_xml": "\n\t\t\tthis year\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a8de9137-7788-4c33-8207-c8cda28d5d04",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "200",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 394,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"YEAR\\\"\", Position: (100, 200), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"YEAR\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "5adff42d-f03e-44b0-8a3d-fd60031b31a0",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "200",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 395,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"YEAR\").getStart(), Position: (195, 200), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"YEAR\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8397152f-7d01-4e47-ac56-2fba48b16146",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "200",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 396,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"YEAR\").getEnd(), Position: (375, 200), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"YEAR\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "2687a4f5-dacc-4fc0-94a1-80bd01c928a2",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "200",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 397,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'last month', Position: (0, 220), Size: 100x20.",
+ "raw_xml": "\n\t\t\tlast month\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "51c840d5-82e8-4b43-8d2c-d6525113f5c5",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "220",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 398,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"MONTH-1\\\"\", Position: (100, 220), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"MONTH-1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7b26215d-4d73-4adc-81e0-f0421749431a",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "220",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 399,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"MONTH-1\").getStart(), Position: (195, 220), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"MONTH-1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "27726ba2-b18b-42b9-a3ae-cc61b74fd8b8",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "220",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 400,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"MONTH-1\").getEnd(), Position: (375, 220), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"MONTH-1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "837d42b0-ee53-4383-a528-cd2039852cd5",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "220",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 401,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'next quarter', Position: (0, 240), Size: 100x20.",
+ "raw_xml": "\n\t\t\tnext quarter\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "6753bc83-e017-46bb-af0c-0ca3c27b4d57",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "240",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 402,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"QUARTER+1\\\"\", Position: (100, 240), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"QUARTER+1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f145f054-d42c-45b4-a2db-5bbe18bda049",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "240",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 403,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"QUARTER+1\").getStart(), Position: (195, 240), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"QUARTER+1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "99ff2c8f-ce1b-45dd-b738-f246aa97e63f",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "240",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 404,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"QUARTER+1\").getEnd(), Position: (375, 240), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"QUARTER+1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f5d04922-5329-4366-98d1-a51ed6b758f1",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "240",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 405,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 semesters ago', Position: (0, 260), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 semesters ago\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e667d8d6-56c2-4c60-a9f1-80cd68455172",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "260",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 406,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"SEMI-3\\\"\", Position: (100, 260), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"SEMI-3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c9b24fbd-32f8-41b8-a6ea-7dccd7c539b0",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "260",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 407,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"SEMI-3\").getStart(), Position: (195, 260), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"SEMI-3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6f91f1c6-1bbf-4426-9757-790325f5890d",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "260",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 408,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"SEMI-3\").getEnd(), Position: (375, 260), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"SEMI-3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "dea71ffe-0e56-4d43-9de7-96035eb6643f",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "260",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 409,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '2. Fixed Date and Timestamp with Report Timezon...', Position: (0, 300), Size: 555x30.",
+ "raw_xml": "\n\t\t\t2. Fixed Date and Timestamp with Report Timezone\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "19a61274-0bd4-46bf-9f31-211b9b4f4f89",
+ "x": "0",
+ "y": "300",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 410,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date/Time', Position: (0, 340), Size: 195x20.",
+ "raw_xml": "\n\t\t\tDate/Time\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9cbd56c9-6ce9-4087-9bf0-1faefd95b76c",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "340",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 411,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Expression', Position: (195, 340), Size: 180x20.",
+ "raw_xml": "\n\t\t\tExpression\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "1ea4e353-910e-4e2f-9ab4-4b3a68d90edb",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "340",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 412,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Start/End', Position: (375, 340), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range Start/End\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "50b03487-23d8-4f56-a188-97b4984a2958",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "340",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 413,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'May 1, 2017', Position: (0, 360), Size: 195x20.",
+ "raw_xml": "\n\t\t\tMay 1, 2017\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "7ba3fa7d-3eee-44a9-84ea-fc3aea25aade",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "360",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 414,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"2017-05-01\\\"\", Position: (195, 360), Size: 180x20.",
+ "raw_xml": "\n\t\t\t\"\\\"2017-05-01\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "83d69fbe-3b8b-4c40-a67f-2f5655b0f83f",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "360",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 415,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"2017-05-01+3\").getStart(), Position: (375, 360), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"2017-05-01+3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c3cc02d9-f3c3-4c1b-9545-b6be16c4b5d7",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "360",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss z",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 416,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"2017-05-01 14:25:48\\\"\", Position: (195, 380), Size: 180x20.",
+ "raw_xml": "\n\t\t\t\"\\\"2017-05-01 14:25:48\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "ca84eecd-d1f6-4e9e-852d-fac232e95099",
+ "stretchType": "ElementGroupHeight",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "380",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "textAdjust": "StretchHeight",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 417,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"2017-05-01 14:25:48\").getEnd(), Position: (375, 380), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"2017-05-01 14:25:48\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "4e307c90-3897-4ae3-a909-f66017abec41",
+ "stretchType": "ElementGroupHeight",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "380",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "textAdjust": "StretchHeight",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss z",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 418,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'May 1, 2017 2:25:48 PM', Position: (0, 380), Size: 195x20.",
+ "raw_xml": "\n\t\t\tMay 1, 2017 2:25:48 PM\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "f573b087-f5b7-4b86-b6c5-f78699ac98f0",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "380",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 419,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3. Orders Newer than Sep 1, 1996', Position: (0, 422), Size: 555x30.",
+ "raw_xml": "\n\t\t\t3. Orders Newer than Sep 1, 1996\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "526d23d5-a2b4-43af-aefe-7339889be7d4",
+ "x": "0",
+ "y": "422",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 420,
+ "chunk_type": "style_element_property",
+ "human_description": "'title' band of report 'DateRangeReport': property style element.",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_tag": "property"
+ }
+ },
+ {
+ "chunk_id": 421,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DateRangeReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=20).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DateRangeReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 421,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DateRangeReport', height: 43 pixels, splitType: Stretch. Contains 3 elements: 2x textField, 1x line. Visible text samples: ${\"Page \" + $V{PAGE_NUMBER}}; ${\" of \" + $V{PAGE_NUMBER}}",
+ "raw_xml": "\n\t\t\n\t\t\t\"Page \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\" of \" + $V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\n",
+ "context": "Report 'DateRangeReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "43",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 2,
+ "line": 1
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + $V{PAGE_NUMBER}}",
+ "${\" of \" + $V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 421,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DateRangeReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: Freight; Order Date; Order ID",
+ "raw_xml": "\n\t\t\n\t\t\tFreight\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\tOrder Date\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\tOrder ID\n\t\t\t\n\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DateRangeReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Freight",
+ "Order Date",
+ "Order ID"
+ ]
+ }
+ },
+ {
+ "chunk_id": 421,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Report', Position: (0, 0), Size: 555x40.",
+ "raw_xml": "\n\t\t\tDate Range Report\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "efe3afc1-067c-456d-8287-a6cf41a9f6d8",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "40",
+ "fontSize": "20.0",
+ "bold": "true",
+ "hTextAlign": "Center",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 422,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '1. Relative Date Ranges', Position: (0, 60), Size: 555x30.",
+ "raw_xml": "\n\t\t\t1. Relative Date Ranges\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "417edd63-2939-4f63-a4f4-7859bc00bd65",
+ "x": "0",
+ "y": "60",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 423,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range', Position: (0, 100), Size: 100x20.",
+ "raw_xml": "\n\t\t\tDate Range\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "b5437590-6926-4e90-ac8d-e2526769259e",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "100",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 424,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Expression', Position: (100, 100), Size: 95x20.",
+ "raw_xml": "\n\t\t\tExpression\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "d76e4d8a-b6d1-4a11-ae8f-d11d217576b9",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "100",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 425,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Start', Position: (195, 100), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range Start\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a0f5da29-800d-476e-b80c-7aa3d837744b",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "100",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 426,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range End', Position: (375, 100), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range End\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9623bd43-5ef1-43ff-8317-d3c385688389",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "100",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 427,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY\\\"\", Position: (100, 120), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "ec9ae446-8437-4f82-89f2-c67563100b65",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "120",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 428,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'today', Position: (0, 120), Size: 100x20.",
+ "raw_xml": "\n\t\t\ttoday\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a629e246-6b0d-455a-bbe7-8379e6443120",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "120",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 429,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY\").getStart(), Position: (195, 120), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "da63a638-5bc6-4a71-915f-cb5ea3c9d3a6",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "120",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 430,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY\").getEnd(), Position: (375, 120), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7fb693e9-2b12-47cf-8c0e-dc6c2f3c6bc2",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "120",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 431,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 days ago', Position: (0, 140), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 days ago\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "0232c581-2a0c-4939-8bd5-95eebb02b077",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "140",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 432,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY-3\\\"\", Position: (100, 140), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY-3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "711fa621-b354-4558-b883-d54fdd6c5192",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "140",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 433,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY-3\").getStart(), Position: (195, 140), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY-3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "443d6099-c0fc-479d-89ba-7efbff6b9be3",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "140",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 434,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY-3\").getEnd(), Position: (375, 140), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY-3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "0d8e362a-507f-4350-978b-02357736591e",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "140",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 435,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 days later', Position: (0, 160), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 days later\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2706e048-8d07-48c1-b798-9d0c20ededb6",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "160",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 436,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY+3\\\"\", Position: (100, 160), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY+3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "767eb648-e824-45ed-b080-40e63856986e",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "160",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 437,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY+3\").getStart(), Position: (195, 160), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY+3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "2f21ebac-e3e7-49be-b6a3-6c19e315a216",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "160",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 438,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY+3\").getEnd(), Position: (375, 160), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY+3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "d689df50-8a3c-44e0-ac83-0e27abf0379d",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "160",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 439,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'next week', Position: (0, 180), Size: 100x20.",
+ "raw_xml": "\n\t\t\tnext week\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "98347e9b-bd0a-479c-81e9-b114e3ef1935",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "180",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 440,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"WEEK+1\\\"\", Position: (100, 180), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"WEEK+1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "88a3c617-01b4-417c-84c8-eba5ea522a86",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "180",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 441,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"WEEK+1\").getStart(), Position: (195, 180), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"WEEK+1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "cf82b282-f0fe-4aec-aab8-5f71af80f727",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "180",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 442,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"WEEK+1\").getEnd(), Position: (375, 180), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"WEEK+1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "aff2b4c6-e3a3-4d07-8a68-68c9ad960b14",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "180",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 443,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'this year', Position: (0, 200), Size: 100x20.",
+ "raw_xml": "\n\t\t\tthis year\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a8de9137-7788-4c33-8207-c8cda28d5d04",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "200",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 444,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"YEAR\\\"\", Position: (100, 200), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"YEAR\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "5adff42d-f03e-44b0-8a3d-fd60031b31a0",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "200",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 445,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"YEAR\").getStart(), Position: (195, 200), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"YEAR\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8397152f-7d01-4e47-ac56-2fba48b16146",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "200",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 446,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"YEAR\").getEnd(), Position: (375, 200), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"YEAR\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "2687a4f5-dacc-4fc0-94a1-80bd01c928a2",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "200",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 447,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'last month', Position: (0, 220), Size: 100x20.",
+ "raw_xml": "\n\t\t\tlast month\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "51c840d5-82e8-4b43-8d2c-d6525113f5c5",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "220",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 448,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"MONTH-1\\\"\", Position: (100, 220), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"MONTH-1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7b26215d-4d73-4adc-81e0-f0421749431a",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "220",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 449,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"MONTH-1\").getStart(), Position: (195, 220), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"MONTH-1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "27726ba2-b18b-42b9-a3ae-cc61b74fd8b8",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "220",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 450,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"MONTH-1\").getEnd(), Position: (375, 220), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"MONTH-1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "837d42b0-ee53-4383-a528-cd2039852cd5",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "220",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 451,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'next quarter', Position: (0, 240), Size: 100x20.",
+ "raw_xml": "\n\t\t\tnext quarter\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "6753bc83-e017-46bb-af0c-0ca3c27b4d57",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "240",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 452,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"QUARTER+1\\\"\", Position: (100, 240), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"QUARTER+1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f145f054-d42c-45b4-a2db-5bbe18bda049",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "240",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 453,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"QUARTER+1\").getStart(), Position: (195, 240), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"QUARTER+1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "99ff2c8f-ce1b-45dd-b738-f246aa97e63f",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "240",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 454,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"QUARTER+1\").getEnd(), Position: (375, 240), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"QUARTER+1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f5d04922-5329-4366-98d1-a51ed6b758f1",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "240",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 455,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 semesters ago', Position: (0, 260), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 semesters ago\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e667d8d6-56c2-4c60-a9f1-80cd68455172",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "260",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 456,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"SEMI-3\\\"\", Position: (100, 260), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"SEMI-3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c9b24fbd-32f8-41b8-a6ea-7dccd7c539b0",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "260",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 457,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"SEMI-3\").getStart(), Position: (195, 260), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"SEMI-3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6f91f1c6-1bbf-4426-9757-790325f5890d",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "260",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 458,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"SEMI-3\").getEnd(), Position: (375, 260), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"SEMI-3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "dea71ffe-0e56-4d43-9de7-96035eb6643f",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "260",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 459,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '2. Fixed Date and Timestamp with Report Timezon...', Position: (0, 300), Size: 555x30.",
+ "raw_xml": "\n\t\t\t2. Fixed Date and Timestamp with Report Timezone\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "19a61274-0bd4-46bf-9f31-211b9b4f4f89",
+ "x": "0",
+ "y": "300",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 460,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date/Time', Position: (0, 340), Size: 195x20.",
+ "raw_xml": "\n\t\t\tDate/Time\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9cbd56c9-6ce9-4087-9bf0-1faefd95b76c",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "340",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 461,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Expression', Position: (195, 340), Size: 180x20.",
+ "raw_xml": "\n\t\t\tExpression\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "1ea4e353-910e-4e2f-9ab4-4b3a68d90edb",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "340",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 462,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Start/End', Position: (375, 340), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range Start/End\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "50b03487-23d8-4f56-a188-97b4984a2958",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "340",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 463,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'May 1, 2017', Position: (0, 360), Size: 195x20.",
+ "raw_xml": "\n\t\t\tMay 1, 2017\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "7ba3fa7d-3eee-44a9-84ea-fc3aea25aade",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "360",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 464,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"2017-05-01\\\"\", Position: (195, 360), Size: 180x20.",
+ "raw_xml": "\n\t\t\t\"\\\"2017-05-01\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "83d69fbe-3b8b-4c40-a67f-2f5655b0f83f",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "360",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 465,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"2017-05-01+3\").getStart(), Position: (375, 360), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"2017-05-01+3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c3cc02d9-f3c3-4c1b-9545-b6be16c4b5d7",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "360",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss z",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 466,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"2017-05-01 14:25:48\\\"\", Position: (195, 380), Size: 180x20.",
+ "raw_xml": "\n\t\t\t\"\\\"2017-05-01 14:25:48\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "ca84eecd-d1f6-4e9e-852d-fac232e95099",
+ "stretchType": "ElementGroupHeight",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "380",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "textAdjust": "StretchHeight",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 467,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"2017-05-01 14:25:48\").getEnd(), Position: (375, 380), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"2017-05-01 14:25:48\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "4e307c90-3897-4ae3-a909-f66017abec41",
+ "stretchType": "ElementGroupHeight",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "380",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "textAdjust": "StretchHeight",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss z",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 468,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'May 1, 2017 2:25:48 PM', Position: (0, 380), Size: 195x20.",
+ "raw_xml": "\n\t\t\tMay 1, 2017 2:25:48 PM\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "f573b087-f5b7-4b86-b6c5-f78699ac98f0",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "380",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 469,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3. Orders Newer than Sep 1, 1996', Position: (0, 422), Size: 555x30.",
+ "raw_xml": "\n\t\t\t3. Orders Newer than Sep 1, 1996\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "526d23d5-a2b4-43af-aefe-7339889be7d4",
+ "x": "0",
+ "y": "422",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 470,
+ "chunk_type": "style_element_property",
+ "human_description": "'title' band of report 'DateRangeReport': property style element.",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_tag": "property"
+ }
+ },
+ {
+ "chunk_id": 471,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DateRangeReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=20).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DateRangeReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 471,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DateRangeReport', height: 43 pixels, splitType: Stretch. Contains 3 elements: 2x textField, 1x line. Visible text samples: ${\"Page \" + $V{PAGE_NUMBER}}; ${\" of \" + $V{PAGE_NUMBER}}",
+ "raw_xml": "\n\t\t\n\t\t\t\"Page \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\" of \" + $V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\n",
+ "context": "Report 'DateRangeReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "43",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 2,
+ "line": 1
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + $V{PAGE_NUMBER}}",
+ "${\" of \" + $V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 471,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DateRangeReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: Freight; Order Date; Order ID",
+ "raw_xml": "\n\t\t\n\t\t\tFreight\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\tOrder Date\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\tOrder ID\n\t\t\t\n\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DateRangeReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Freight",
+ "Order Date",
+ "Order ID"
+ ]
+ }
+ },
+ {
+ "chunk_id": 471,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Report', Position: (0, 0), Size: 555x40.",
+ "raw_xml": "\n\t\t\tDate Range Report\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "efe3afc1-067c-456d-8287-a6cf41a9f6d8",
+ "x": "0",
+ "y": "0",
+ "width": "555",
+ "height": "40",
+ "fontSize": "20.0",
+ "bold": "true",
+ "hTextAlign": "Center",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 472,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '1. Relative Date Ranges', Position: (0, 60), Size: 555x30.",
+ "raw_xml": "\n\t\t\t1. Relative Date Ranges\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "417edd63-2939-4f63-a4f4-7859bc00bd65",
+ "x": "0",
+ "y": "60",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 473,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range', Position: (0, 100), Size: 100x20.",
+ "raw_xml": "\n\t\t\tDate Range\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "b5437590-6926-4e90-ac8d-e2526769259e",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "100",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 474,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Expression', Position: (100, 100), Size: 95x20.",
+ "raw_xml": "\n\t\t\tExpression\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "d76e4d8a-b6d1-4a11-ae8f-d11d217576b9",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "100",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 475,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Start', Position: (195, 100), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range Start\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a0f5da29-800d-476e-b80c-7aa3d837744b",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "100",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 476,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range End', Position: (375, 100), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range End\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9623bd43-5ef1-43ff-8317-d3c385688389",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "100",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 477,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY\\\"\", Position: (100, 120), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "ec9ae446-8437-4f82-89f2-c67563100b65",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "120",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 478,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'today', Position: (0, 120), Size: 100x20.",
+ "raw_xml": "\n\t\t\ttoday\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a629e246-6b0d-455a-bbe7-8379e6443120",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "120",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 479,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY\").getStart(), Position: (195, 120), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "da63a638-5bc6-4a71-915f-cb5ea3c9d3a6",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "120",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 480,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY\").getEnd(), Position: (375, 120), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7fb693e9-2b12-47cf-8c0e-dc6c2f3c6bc2",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "120",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 481,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 days ago', Position: (0, 140), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 days ago\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "0232c581-2a0c-4939-8bd5-95eebb02b077",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "140",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 482,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY-3\\\"\", Position: (100, 140), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY-3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "711fa621-b354-4558-b883-d54fdd6c5192",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "140",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 483,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY-3\").getStart(), Position: (195, 140), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY-3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "443d6099-c0fc-479d-89ba-7efbff6b9be3",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "140",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 484,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY-3\").getEnd(), Position: (375, 140), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY-3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "0d8e362a-507f-4350-978b-02357736591e",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "140",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 485,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 days later', Position: (0, 160), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 days later\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2706e048-8d07-48c1-b798-9d0c20ededb6",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "160",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 486,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"DAY+3\\\"\", Position: (100, 160), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"DAY+3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "767eb648-e824-45ed-b080-40e63856986e",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "160",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 487,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY+3\").getStart(), Position: (195, 160), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY+3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "2f21ebac-e3e7-49be-b6a3-6c19e315a216",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "160",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 488,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"DAY+3\").getEnd(), Position: (375, 160), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"DAY+3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "d689df50-8a3c-44e0-ac83-0e27abf0379d",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "160",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 489,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'next week', Position: (0, 180), Size: 100x20.",
+ "raw_xml": "\n\t\t\tnext week\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "98347e9b-bd0a-479c-81e9-b114e3ef1935",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "180",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 490,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"WEEK+1\\\"\", Position: (100, 180), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"WEEK+1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "88a3c617-01b4-417c-84c8-eba5ea522a86",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "180",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 491,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"WEEK+1\").getStart(), Position: (195, 180), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"WEEK+1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "cf82b282-f0fe-4aec-aab8-5f71af80f727",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "180",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 492,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"WEEK+1\").getEnd(), Position: (375, 180), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"WEEK+1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "aff2b4c6-e3a3-4d07-8a68-68c9ad960b14",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "180",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 493,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'this year', Position: (0, 200), Size: 100x20.",
+ "raw_xml": "\n\t\t\tthis year\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "a8de9137-7788-4c33-8207-c8cda28d5d04",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "200",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 494,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"YEAR\\\"\", Position: (100, 200), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"YEAR\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "5adff42d-f03e-44b0-8a3d-fd60031b31a0",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "200",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 495,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"YEAR\").getStart(), Position: (195, 200), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"YEAR\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8397152f-7d01-4e47-ac56-2fba48b16146",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "200",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 496,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"YEAR\").getEnd(), Position: (375, 200), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"YEAR\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "2687a4f5-dacc-4fc0-94a1-80bd01c928a2",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "200",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 497,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'last month', Position: (0, 220), Size: 100x20.",
+ "raw_xml": "\n\t\t\tlast month\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "51c840d5-82e8-4b43-8d2c-d6525113f5c5",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "220",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 498,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"MONTH-1\\\"\", Position: (100, 220), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"MONTH-1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7b26215d-4d73-4adc-81e0-f0421749431a",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "220",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 499,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"MONTH-1\").getStart(), Position: (195, 220), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"MONTH-1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "27726ba2-b18b-42b9-a3ae-cc61b74fd8b8",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "220",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 500,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"MONTH-1\").getEnd(), Position: (375, 220), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"MONTH-1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "837d42b0-ee53-4383-a528-cd2039852cd5",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "220",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 501,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'next quarter', Position: (0, 240), Size: 100x20.",
+ "raw_xml": "\n\t\t\tnext quarter\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "6753bc83-e017-46bb-af0c-0ca3c27b4d57",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "240",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 502,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"QUARTER+1\\\"\", Position: (100, 240), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"QUARTER+1\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f145f054-d42c-45b4-a2db-5bbe18bda049",
+ "mode": "Transparent",
+ "x": "100",
+ "y": "240",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 503,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"QUARTER+1\").getStart(), Position: (195, 240), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"QUARTER+1\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "99ff2c8f-ce1b-45dd-b738-f246aa97e63f",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "240",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 504,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"QUARTER+1\").getEnd(), Position: (375, 240), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"QUARTER+1\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f5d04922-5329-4366-98d1-a51ed6b758f1",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "240",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 505,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3 semesters ago', Position: (0, 260), Size: 100x20.",
+ "raw_xml": "\n\t\t\t3 semesters ago\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e667d8d6-56c2-4c60-a9f1-80cd68455172",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "260",
+ "width": "100",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 506,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"SEMI-3\\\"\", Position: (100, 260), Size: 95x20.",
+ "raw_xml": "\n\t\t\t\"\\\"SEMI-3\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c9b24fbd-32f8-41b8-a6ea-7dccd7c539b0",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "260",
+ "width": "95",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 507,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"SEMI-3\").getStart(), Position: (195, 260), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"SEMI-3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6f91f1c6-1bbf-4426-9757-790325f5890d",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "260",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 508,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"SEMI-3\").getEnd(), Position: (375, 260), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"SEMI-3\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "dea71ffe-0e56-4d43-9de7-96035eb6643f",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "260",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 509,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '2. Fixed Date and Timestamp with Report Timezon...', Position: (0, 300), Size: 555x30.",
+ "raw_xml": "\n\t\t\t2. Fixed Date and Timestamp with Report Timezone\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "19a61274-0bd4-46bf-9f31-211b9b4f4f89",
+ "x": "0",
+ "y": "300",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 510,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date/Time', Position: (0, 340), Size: 195x20.",
+ "raw_xml": "\n\t\t\tDate/Time\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9cbd56c9-6ce9-4087-9bf0-1faefd95b76c",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "340",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 511,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Expression', Position: (195, 340), Size: 180x20.",
+ "raw_xml": "\n\t\t\tExpression\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "1ea4e353-910e-4e2f-9ab4-4b3a68d90edb",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "340",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 512,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'Date Range Start/End', Position: (375, 340), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDate Range Start/End\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "50b03487-23d8-4f56-a188-97b4984a2958",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "340",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#CCCCCC",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 513,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'May 1, 2017', Position: (0, 360), Size: 195x20.",
+ "raw_xml": "\n\t\t\tMay 1, 2017\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "7ba3fa7d-3eee-44a9-84ea-fc3aea25aade",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "360",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 514,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"2017-05-01\\\"\", Position: (195, 360), Size: 180x20.",
+ "raw_xml": "\n\t\t\t\"\\\"2017-05-01\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "83d69fbe-3b8b-4c40-a67f-2f5655b0f83f",
+ "mode": "Transparent",
+ "x": "195",
+ "y": "360",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 515,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"2017-05-01+3\").getStart(), Position: (375, 360), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"2017-05-01+3\").getStart()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c3cc02d9-f3c3-4c1b-9545-b6be16c4b5d7",
+ "mode": "Transparent",
+ "x": "375",
+ "y": "360",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss z",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 516,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: \"\\\"2017-05-01 14:25:48\\\"\", Position: (195, 380), Size: 180x20.",
+ "raw_xml": "\n\t\t\t\"\\\"2017-05-01 14:25:48\\\"\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "ca84eecd-d1f6-4e9e-852d-fac232e95099",
+ "stretchType": "ElementGroupHeight",
+ "mode": "Opaque",
+ "x": "195",
+ "y": "380",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "textAdjust": "StretchHeight",
+ "pattern": "",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 517,
+ "chunk_type": "element_textField",
+ "human_description": "'title' band of report 'DateRangeReport': textField element, Expression: DATERANGE(\"2017-05-01 14:25:48\").getEnd(), Position: (375, 380), Size: 180x20.",
+ "raw_xml": "\n\t\t\tDATERANGE(\"2017-05-01 14:25:48\").getEnd()\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "4e307c90-3897-4ae3-a909-f66017abec41",
+ "stretchType": "ElementGroupHeight",
+ "mode": "Opaque",
+ "x": "375",
+ "y": "380",
+ "width": "180",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "textAdjust": "StretchHeight",
+ "pattern": "EEE, MMM d, yyyy HH:mm:ss z",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 518,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: 'May 1, 2017 2:25:48 PM', Position: (0, 380), Size: 195x20.",
+ "raw_xml": "\n\t\t\tMay 1, 2017 2:25:48 PM\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "f573b087-f5b7-4b86-b6c5-f78699ac98f0",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "380",
+ "width": "195",
+ "height": "20",
+ "backcolor": "#EEEEEE",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 519,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'DateRangeReport': staticText element, Text: '3. Orders Newer than Sep 1, 1996', Position: (0, 422), Size: 555x30.",
+ "raw_xml": "\n\t\t\t3. Orders Newer than Sep 1, 1996\n\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "526d23d5-a2b4-43af-aefe-7339889be7d4",
+ "x": "0",
+ "y": "422",
+ "width": "555",
+ "height": "30",
+ "fontSize": "16.0",
+ "bold": "true",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 520,
+ "chunk_type": "style_element_property",
+ "human_description": "'title' band of report 'DateRangeReport': property style element.",
+ "raw_xml": "\n\t",
+ "context": "Report 'DateRangeReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_tag": "property"
+ }
+ },
+ {
+ "chunk_id": 521,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DateRangeReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=20).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DateRangeReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 521,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'DateRangeReport', height: 43 pixels, splitType: Stretch. Contains 3 elements: 2x textField, 1x line. Visible text samples: ${\"Page \" + $V{PAGE_NUMBER}}; ${\" of \" + $V{PAGE_NUMBER}}",
+ "raw_xml": "\n\t\t\n\t\t\t\"Page \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\" of \" + $V{PAGE_NUMBER}\n\t\t\n\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\n",
+ "context": "Report 'DateRangeReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "43",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 2,
+ "line": 1
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + $V{PAGE_NUMBER}}",
+ "${\" of \" + $V{PAGE_NUMBER}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 521,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DateRangeReport', height: 20 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: Freight; Order Date; Order ID",
+ "raw_xml": "\n\t\t\n\t\t\tFreight\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\tOrder Date\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\tOrder ID\n\t\t\t\n\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DateRangeReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Freight",
+ "Order Date",
+ "Order ID"
+ ]
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'DocumentsReport'. Page size: 500 x 842 portrait. Contains 4 standard bands with content: title, pageHeader, detail, summary. Defines 2 fields: id, total. Defines 0 parameters: none. Defines 0 variables: none. Defines 0 groups: none.",
+ "raw_xml": "",
+ "context": "Report 'DocumentsReport' overall structure overview",
+ "metadata": {
+ "report_name": "DocumentsReport",
+ "bands": [
+ "title",
+ "pageHeader",
+ "detail",
+ "summary"
+ ],
+ "field_count": 2,
+ "parameter_count": 0,
+ "variable_count": 0,
+ "group_count": 0,
+ "chart_count": 0,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": null,
+ "source": null,
+ "query_language": null,
+ "properties": {}
+ },
+ "attributes": {
+ "name": "DocumentsReport",
+ "language": "java",
+ "pageWidth": "500",
+ "pageHeight": "842",
+ "columnWidth": "500",
+ "leftMargin": "0",
+ "rightMargin": "0",
+ "topMargin": "0",
+ "bottomMargin": "0",
+ "uuid": "68cf12a7-46cc-4853-8a87-47af86af0d76"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "fields",
+ "human_description": "These are all field definitions for report 'DocumentsReport', total 2 fields. Fields: id(java.lang.Long), total(java.lang.Double).",
+ "raw_xml": "\n\t\n\n\t",
+ "context": "Report 'DocumentsReport' field definitions",
+ "metadata": {
+ "field_names": [
+ "id",
+ "total"
+ ],
+ "field_types": {
+ "id": "java.lang.Long",
+ "total": "java.lang.Double"
+ },
+ "field_expressions": {},
+ "count": 2
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "sortFields",
+ "human_description": "These are sort field definitions for report 'DocumentsReport', total 1 fields. Sorts: id (Ascending).",
+ "raw_xml": "\n\t",
+ "context": "Report 'DocumentsReport' sort field definitions",
+ "metadata": {
+ "sortFields": [
+ {
+ "name": "id",
+ "order": "Ascending"
+ }
+ ],
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'DocumentsReport', total 3 styles. Styles: Sans_Normal, Sans_Bold, Sans_Italic. Default style: Sans_Normal.",
+ "raw_xml": "\n\t\n\n\t\n\n\t",
+ "context": "Report 'DocumentsReport' style definitions",
+ "metadata": {
+ "style_names": [
+ "Sans_Normal",
+ "Sans_Bold",
+ "Sans_Italic"
+ ],
+ "default_style": "Sans_Normal",
+ "has_conditional_styles": false,
+ "count": 3
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DocumentsReport', height: 1 pixels, splitType: Stretch. Contains 1 elements: 1x line.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "1",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DocumentsReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=14).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{total}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'DocumentsReport', height: 1 pixels, splitType: Stretch. Contains 1 elements: 1x line.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'DocumentsReport' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "1",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DocumentsReport', height: 15 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: Documents; ID; Total",
+ "raw_xml": "\n\t\t\n\t\t\tDocuments\n\t\t\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tTotal\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "15",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Documents",
+ "ID",
+ "Total"
+ ]
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DocumentsReport', height: 1 pixels, splitType: Stretch. Contains 1 elements: 1x line.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "1",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DocumentsReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=14).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{total}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'DocumentsReport', height: 1 pixels, splitType: Stretch. Contains 1 elements: 1x line.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'DocumentsReport' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "1",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DocumentsReport', height: 15 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: Documents; ID; Total",
+ "raw_xml": "\n\t\t\n\t\t\tDocuments\n\t\t\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tTotal\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "15",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Documents",
+ "ID",
+ "Total"
+ ]
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DocumentsReport', height: 1 pixels, splitType: Stretch. Contains 1 elements: 1x line.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "1",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DocumentsReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=14).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{total}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'DocumentsReport', height: 1 pixels, splitType: Stretch. Contains 1 elements: 1x line.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'DocumentsReport' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "1",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DocumentsReport', height: 15 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: Documents; ID; Total",
+ "raw_xml": "\n\t\t\n\t\t\tDocuments\n\t\t\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tTotal\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "15",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Documents",
+ "ID",
+ "Total"
+ ]
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DocumentsReport', height: 1 pixels, splitType: Stretch. Contains 1 elements: 1x line.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "1",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DocumentsReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=14).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{total}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'DocumentsReport', height: 1 pixels, splitType: Stretch. Contains 1 elements: 1x line.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'DocumentsReport' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "1",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DocumentsReport', height: 15 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: Documents; ID; Total",
+ "raw_xml": "\n\t\t\n\t\t\tDocuments\n\t\t\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tTotal\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "15",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Documents",
+ "ID",
+ "Total"
+ ]
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DocumentsReport', height: 1 pixels, splitType: Stretch. Contains 1 elements: 1x line.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "1",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DocumentsReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=14).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{total}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'DocumentsReport', height: 1 pixels, splitType: Stretch. Contains 1 elements: 1x line.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'DocumentsReport' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "1",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DocumentsReport', height: 15 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: Documents; ID; Total",
+ "raw_xml": "\n\t\t\n\t\t\tDocuments\n\t\t\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tTotal\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "15",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Documents",
+ "ID",
+ "Total"
+ ]
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DocumentsReport', height: 1 pixels, splitType: Stretch. Contains 1 elements: 1x line.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "1",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DocumentsReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=14).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{total}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'DocumentsReport', height: 1 pixels, splitType: Stretch. Contains 1 elements: 1x line.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'DocumentsReport' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "1",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DocumentsReport', height: 15 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: Documents; ID; Total",
+ "raw_xml": "\n\t\t\n\t\t\tDocuments\n\t\t\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tTotal\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "15",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Documents",
+ "ID",
+ "Total"
+ ]
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DocumentsReport', height: 1 pixels, splitType: Stretch. Contains 1 elements: 1x line.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "1",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DocumentsReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=14).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{total}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'DocumentsReport', height: 1 pixels, splitType: Stretch. Contains 1 elements: 1x line.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'DocumentsReport' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "1",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DocumentsReport', height: 15 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: Documents; ID; Total",
+ "raw_xml": "\n\t\t\n\t\t\tDocuments\n\t\t\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tTotal\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "15",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Documents",
+ "ID",
+ "Total"
+ ]
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DocumentsReport', height: 1 pixels, splitType: Stretch. Contains 1 elements: 1x line.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "1",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DocumentsReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=14).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{total}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'DocumentsReport', height: 1 pixels, splitType: Stretch. Contains 1 elements: 1x line.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'DocumentsReport' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "1",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DocumentsReport', height: 15 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: Documents; ID; Total",
+ "raw_xml": "\n\t\t\n\t\t\tDocuments\n\t\t\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tTotal\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "15",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Documents",
+ "ID",
+ "Total"
+ ]
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DocumentsReport', height: 1 pixels, splitType: Stretch. Contains 1 elements: 1x line.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "1",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DocumentsReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=14).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{total}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'DocumentsReport', height: 1 pixels, splitType: Stretch. Contains 1 elements: 1x line.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'DocumentsReport' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "1",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DocumentsReport', height: 15 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: Documents; ID; Total",
+ "raw_xml": "\n\t\t\n\t\t\tDocuments\n\t\t\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tTotal\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "15",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Documents",
+ "ID",
+ "Total"
+ ]
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'DocumentsReport', height: 1 pixels, splitType: Stretch. Contains 1 elements: 1x line.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "1",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'DocumentsReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=14).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{total}\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'DocumentsReport', height: 1 pixels, splitType: Stretch. Contains 1 elements: 1x line.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'DocumentsReport' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "1",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'DocumentsReport', height: 15 pixels, splitType: Stretch. Contains 3 elements: 3x staticText. Visible text samples: Documents; ID; Total",
+ "raw_xml": "\n\t\t\n\t\t\tDocuments\n\t\t\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tTotal\n\t\t\n\t\n\t",
+ "context": "Report 'DocumentsReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "15",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 3
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Documents",
+ "ID",
+ "Total"
+ ]
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'ExcelNames'. Page size: 595 x 610 portrait. Contains 3 standard bands with content: pageHeader, detail, pageFooter. Defines 0 fields: none. Defines 0 parameters: none. Defines 0 variables: none. Defines 1 groups: Group1. Data source type: DataAdapter. Source: data/EmptyDataAdapter.15.jrdax.",
+ "raw_xml": "",
+ "context": "Report 'ExcelNames' overall structure overview",
+ "metadata": {
+ "report_name": "ExcelNames",
+ "bands": [
+ "pageHeader",
+ "detail",
+ "pageFooter"
+ ],
+ "field_count": 0,
+ "parameter_count": 0,
+ "variable_count": 0,
+ "group_count": 1,
+ "chart_count": 0,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "DataAdapter",
+ "source": "data/EmptyDataAdapter.15.jrdax",
+ "query_language": null,
+ "properties": {
+ "net.sf.jasperreports.data.adapter": "data/EmptyDataAdapter.15.jrdax",
+ "net.sf.jasperreports.export.xls.white.page.background": "false",
+ "net.sf.jasperreports.export.xls.defined.names.eight": "=3+5",
+ "net.sf.jasperreports.export.xls.defined.names.the_range_1": "'Test 1'!$B$3:$B$7|Test 1",
+ "net.sf.jasperreports.export.xls.defined.names.the_range_2": "'Test 2'!$B$3:$B$7|Test 2",
+ "net.sf.jasperreports.export.xls.defined.names.the_range_3": "'Test 3'!$B$3:$B$7|Test 3",
+ "net.sf.jasperreports.export.xls.defined.names.the_sum_1": "SUM('Test 1'!$B$3:$B$7)+1|Test 1",
+ "net.sf.jasperreports.export.xls.defined.names.the_sum_2": "SUM('Test 2'!$B$3:$B$7)|Test 2",
+ "net.sf.jasperreports.export.xls.defined.names.the_sum_3": "SUM('Test 3'!$B$3:$B$7)|Test 3",
+ "net.sf.jasperreports.export.xls.defined.names.the_sum_123": "SUM('Test 3'!$B$3:$B$7)"
+ }
+ },
+ "attributes": {
+ "name": "ExcelNames",
+ "language": "java",
+ "pageWidth": "595",
+ "pageHeight": "610",
+ "columnWidth": "555",
+ "leftMargin": "20",
+ "rightMargin": "20",
+ "topMargin": "20",
+ "bottomMargin": "20",
+ "uuid": "8b8d4a31-8afd-476d-bb52-2c4fcd0f8d51"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'ExcelNames'. Data adapter: data/EmptyDataAdapter.15.jrdax.",
+ "raw_xml": "",
+ "context": "Report 'ExcelNames' data source configuration",
+ "metadata": {
+ "properties": {
+ "net.sf.jasperreports.data.adapter": "data/EmptyDataAdapter.15.jrdax"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'ExcelNames', total 1 styles. Styles: common. Default style: common.",
+ "raw_xml": "\n\t",
+ "context": "Report 'ExcelNames' style definitions",
+ "metadata": {
+ "style_names": [
+ "common"
+ ],
+ "default_style": "common",
+ "has_conditional_styles": false,
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "group",
+ "human_description": "This is group 'Group1' definition for report 'ExcelNames'. Group expression: $V{PAGE_COUNT} <= 5. Has groupHeader: No, has groupFooter: No. Min height: 0, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t$V{PAGE_COUNT} <= 5\n\t\n\t",
+ "context": "Report 'ExcelNames' group 'Group1'",
+ "metadata": {
+ "group_name": "Group1",
+ "expression": "$V{PAGE_COUNT} <= 5",
+ "has_header": false,
+ "has_footer": false,
+ "minHeightToStartNewPage": "0",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelNames', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=30).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$V{REPORT_COUNT} + 1\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelNames' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 270), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\"the_sum_\"+$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c63b761b-892c-454f-83ab-839bcc9fbfc3",
+ "x": "400",
+ "y": "270",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 300), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "eba3fa9e-283e-421a-b6b0-3aa7546caf68",
+ "x": "400",
+ "y": "300",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 6,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 240), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "e51e8649-7077-4d78-b733-cc51917236bb",
+ "x": "400",
+ "y": "240",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 330), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\"\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6470c197-4e77-4d6b-9d80-bd63c451e9c7",
+ "x": "400",
+ "y": "330",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 8,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Names visible in sheet 'Test \" + $V{PAGE_NUMBER} + \"':\", Position: (0, 0), Size: 500x30.",
+ "raw_xml": "\n\t\t\t\"Names visible in sheet 'Test \" + $V{PAGE_NUMBER} + \"':\"\n\t\t\t\n\t\t\t\n\t\t\t\"Test \"+$V{PAGE_NUMBER}\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "81bbf26c-6f2c-4085-b256-d516bae17325",
+ "x": "0",
+ "y": "0",
+ "width": "500",
+ "height": "30",
+ "fontSize": "12.0",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Name\", Position: (0, 30), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Name\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "683946c6-4e4b-434a-b51b-d113a4b50b61",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "30",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Name expression\", Position: (100, 30), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"Name expression\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8ba8216c-e309-40d4-83f2-84774044ab81",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "30",
+ "width": "300",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 11,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Visibility\", Position: (400, 30), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Visibility\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8899aab2-9042-40f8-bad0-f526d6872173",
+ "mode": "Opaque",
+ "x": "400",
+ "y": "30",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 12,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_range_\" + $V{PAGE_NUMBER}, Position: (0, 60), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_range_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6dc9e7b2-a319-4fae-8d15-cb1644e711c9",
+ "x": "0",
+ "y": "60",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 13,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"'Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7|Test \" + $V{PAGE_NUMBER}, Position: (100, 60), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"'Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7|Test \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "dd946f9d-60f7-432d-b6eb-2f14a6f91065",
+ "x": "100",
+ "y": "60",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\", Position: (400, 60), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "eafa24cb-7b6c-4196-9647-bc4639297d2f",
+ "x": "400",
+ "y": "60",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_\" + $V{PAGE_NUMBER}, Position: (0, 90), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8fc0d771-f8c3-4fe5-9882-347d4ea06d92",
+ "x": "0",
+ "y": "90",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 16,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"SUM('Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7)\"+ ($V{PAGE_NUMBER} == 1 ? \"+1\" : ..., Position: (100, 90), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"SUM('Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7)\"+ ($V{PAGE_NUMBER} == 1 ? \"+1\" : \"\")+ \"|Test \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "13804bcf-f899-4fbd-a240-3c8b69786564",
+ "x": "100",
+ "y": "90",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 17,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\", Position: (400, 90), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f9624402-3611-42b8-aa89-338bb6c86691",
+ "x": "400",
+ "y": "90",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_123\", Position: (0, 120), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_123\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "65428c85-f211-4d6b-8a72-5a705c1ef5a3",
+ "x": "0",
+ "y": "120",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 19,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"SUM('Test 3'!$B$3:$B$7)\", Position: (100, 120), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"SUM('Test 3'!$B$3:$B$7)\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "fb81e3ff-8716-440b-bcdc-36c8d8581fab",
+ "x": "100",
+ "y": "120",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 20,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"entire workbook\", Position: (400, 120), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"entire workbook\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8fbdfcbc-7623-470a-9597-8cf4d90f4e97",
+ "x": "400",
+ "y": "120",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 21,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"eight\", Position: (0, 150), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"eight\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f864b7c6-eb01-409a-bae5-591a574be9f9",
+ "x": "0",
+ "y": "150",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 22,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"3+5\", Position: (100, 150), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"3+5\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c6184a21-69b0-405c-80bc-7c2e566871bd",
+ "x": "100",
+ "y": "150",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 23,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"entire workbook\", Position: (400, 150), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"entire workbook\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "9059b774-5137-4884-88a5-f70c68586071",
+ "x": "400",
+ "y": "150",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 24,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Formula expressions using available names\", Position: (0, 210), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"Formula expressions using available names\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "5f1edfc3-9d39-4b56-ab22-728024a32dd4",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "210",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 25,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Value\", Position: (400, 210), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Value\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8af4a97a-0d7d-4368-a7b6-537b48549008",
+ "mode": "Opaque",
+ "x": "400",
+ "y": "210",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"eight\", Position: (0, 240), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"eight\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "a333122d-5ae4-4bb9-ba91-fc5f2358a46f",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "240",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_\" + $V{PAGE_NUMBER}, Position: (0, 270), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7e3d2a40-de7d-4485-ac00-47172c71c31e",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "270",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 28,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_123\", Position: (0, 300), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_123\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "45fcb8b4-cf97-4379-874f-6b651d0ca113",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "300",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 29,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\", Position: (0, 330), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f6bb2043-6094-434e-a367-85b99dd543a5",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "330",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 30,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelNames', height: 30 pixels, splitType: Stretch. Contains 1 elements: 1x textField. Visible text samples: ${\"Sheet data\"}",
+ "raw_xml": "\n\t\t\n\t\t\t\"Sheet data\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelNames' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Sheet data\"}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 30,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelNames', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=30).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$V{REPORT_COUNT} + 1\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelNames' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 30,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 270), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\"the_sum_\"+$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c63b761b-892c-454f-83ab-839bcc9fbfc3",
+ "x": "400",
+ "y": "270",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 31,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 300), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "eba3fa9e-283e-421a-b6b0-3aa7546caf68",
+ "x": "400",
+ "y": "300",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 32,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 240), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "e51e8649-7077-4d78-b733-cc51917236bb",
+ "x": "400",
+ "y": "240",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 33,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 330), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\"\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6470c197-4e77-4d6b-9d80-bd63c451e9c7",
+ "x": "400",
+ "y": "330",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 34,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Names visible in sheet 'Test \" + $V{PAGE_NUMBER} + \"':\", Position: (0, 0), Size: 500x30.",
+ "raw_xml": "\n\t\t\t\"Names visible in sheet 'Test \" + $V{PAGE_NUMBER} + \"':\"\n\t\t\t\n\t\t\t\n\t\t\t\"Test \"+$V{PAGE_NUMBER}\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "81bbf26c-6f2c-4085-b256-d516bae17325",
+ "x": "0",
+ "y": "0",
+ "width": "500",
+ "height": "30",
+ "fontSize": "12.0",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 35,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Name\", Position: (0, 30), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Name\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "683946c6-4e4b-434a-b51b-d113a4b50b61",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "30",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 36,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Name expression\", Position: (100, 30), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"Name expression\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8ba8216c-e309-40d4-83f2-84774044ab81",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "30",
+ "width": "300",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 37,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Visibility\", Position: (400, 30), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Visibility\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8899aab2-9042-40f8-bad0-f526d6872173",
+ "mode": "Opaque",
+ "x": "400",
+ "y": "30",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 38,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_range_\" + $V{PAGE_NUMBER}, Position: (0, 60), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_range_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6dc9e7b2-a319-4fae-8d15-cb1644e711c9",
+ "x": "0",
+ "y": "60",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 39,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"'Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7|Test \" + $V{PAGE_NUMBER}, Position: (100, 60), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"'Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7|Test \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "dd946f9d-60f7-432d-b6eb-2f14a6f91065",
+ "x": "100",
+ "y": "60",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 40,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\", Position: (400, 60), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "eafa24cb-7b6c-4196-9647-bc4639297d2f",
+ "x": "400",
+ "y": "60",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 41,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_\" + $V{PAGE_NUMBER}, Position: (0, 90), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8fc0d771-f8c3-4fe5-9882-347d4ea06d92",
+ "x": "0",
+ "y": "90",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 42,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"SUM('Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7)\"+ ($V{PAGE_NUMBER} == 1 ? \"+1\" : ..., Position: (100, 90), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"SUM('Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7)\"+ ($V{PAGE_NUMBER} == 1 ? \"+1\" : \"\")+ \"|Test \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "13804bcf-f899-4fbd-a240-3c8b69786564",
+ "x": "100",
+ "y": "90",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 43,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\", Position: (400, 90), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f9624402-3611-42b8-aa89-338bb6c86691",
+ "x": "400",
+ "y": "90",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 44,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_123\", Position: (0, 120), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_123\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "65428c85-f211-4d6b-8a72-5a705c1ef5a3",
+ "x": "0",
+ "y": "120",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 45,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"SUM('Test 3'!$B$3:$B$7)\", Position: (100, 120), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"SUM('Test 3'!$B$3:$B$7)\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "fb81e3ff-8716-440b-bcdc-36c8d8581fab",
+ "x": "100",
+ "y": "120",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 46,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"entire workbook\", Position: (400, 120), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"entire workbook\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8fbdfcbc-7623-470a-9597-8cf4d90f4e97",
+ "x": "400",
+ "y": "120",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 47,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"eight\", Position: (0, 150), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"eight\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f864b7c6-eb01-409a-bae5-591a574be9f9",
+ "x": "0",
+ "y": "150",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 48,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"3+5\", Position: (100, 150), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"3+5\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c6184a21-69b0-405c-80bc-7c2e566871bd",
+ "x": "100",
+ "y": "150",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 49,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"entire workbook\", Position: (400, 150), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"entire workbook\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "9059b774-5137-4884-88a5-f70c68586071",
+ "x": "400",
+ "y": "150",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 50,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Formula expressions using available names\", Position: (0, 210), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"Formula expressions using available names\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "5f1edfc3-9d39-4b56-ab22-728024a32dd4",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "210",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 51,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Value\", Position: (400, 210), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Value\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8af4a97a-0d7d-4368-a7b6-537b48549008",
+ "mode": "Opaque",
+ "x": "400",
+ "y": "210",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 52,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"eight\", Position: (0, 240), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"eight\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "a333122d-5ae4-4bb9-ba91-fc5f2358a46f",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "240",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 53,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_\" + $V{PAGE_NUMBER}, Position: (0, 270), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7e3d2a40-de7d-4485-ac00-47172c71c31e",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "270",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 54,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_123\", Position: (0, 300), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_123\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "45fcb8b4-cf97-4379-874f-6b651d0ca113",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "300",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 55,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\", Position: (0, 330), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f6bb2043-6094-434e-a367-85b99dd543a5",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "330",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 56,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelNames', height: 30 pixels, splitType: Stretch. Contains 1 elements: 1x textField. Visible text samples: ${\"Sheet data\"}",
+ "raw_xml": "\n\t\t\n\t\t\t\"Sheet data\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelNames' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Sheet data\"}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 56,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelNames', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=30).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$V{REPORT_COUNT} + 1\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelNames' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 56,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 270), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\"the_sum_\"+$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c63b761b-892c-454f-83ab-839bcc9fbfc3",
+ "x": "400",
+ "y": "270",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 57,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 300), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "eba3fa9e-283e-421a-b6b0-3aa7546caf68",
+ "x": "400",
+ "y": "300",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 58,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 240), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "e51e8649-7077-4d78-b733-cc51917236bb",
+ "x": "400",
+ "y": "240",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 59,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 330), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\"\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6470c197-4e77-4d6b-9d80-bd63c451e9c7",
+ "x": "400",
+ "y": "330",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 60,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Names visible in sheet 'Test \" + $V{PAGE_NUMBER} + \"':\", Position: (0, 0), Size: 500x30.",
+ "raw_xml": "\n\t\t\t\"Names visible in sheet 'Test \" + $V{PAGE_NUMBER} + \"':\"\n\t\t\t\n\t\t\t\n\t\t\t\"Test \"+$V{PAGE_NUMBER}\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "81bbf26c-6f2c-4085-b256-d516bae17325",
+ "x": "0",
+ "y": "0",
+ "width": "500",
+ "height": "30",
+ "fontSize": "12.0",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 61,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Name\", Position: (0, 30), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Name\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "683946c6-4e4b-434a-b51b-d113a4b50b61",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "30",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 62,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Name expression\", Position: (100, 30), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"Name expression\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8ba8216c-e309-40d4-83f2-84774044ab81",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "30",
+ "width": "300",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 63,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Visibility\", Position: (400, 30), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Visibility\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8899aab2-9042-40f8-bad0-f526d6872173",
+ "mode": "Opaque",
+ "x": "400",
+ "y": "30",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 64,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_range_\" + $V{PAGE_NUMBER}, Position: (0, 60), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_range_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6dc9e7b2-a319-4fae-8d15-cb1644e711c9",
+ "x": "0",
+ "y": "60",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 65,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"'Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7|Test \" + $V{PAGE_NUMBER}, Position: (100, 60), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"'Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7|Test \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "dd946f9d-60f7-432d-b6eb-2f14a6f91065",
+ "x": "100",
+ "y": "60",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 66,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\", Position: (400, 60), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "eafa24cb-7b6c-4196-9647-bc4639297d2f",
+ "x": "400",
+ "y": "60",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 67,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_\" + $V{PAGE_NUMBER}, Position: (0, 90), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8fc0d771-f8c3-4fe5-9882-347d4ea06d92",
+ "x": "0",
+ "y": "90",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 68,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"SUM('Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7)\"+ ($V{PAGE_NUMBER} == 1 ? \"+1\" : ..., Position: (100, 90), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"SUM('Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7)\"+ ($V{PAGE_NUMBER} == 1 ? \"+1\" : \"\")+ \"|Test \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "13804bcf-f899-4fbd-a240-3c8b69786564",
+ "x": "100",
+ "y": "90",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 69,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\", Position: (400, 90), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f9624402-3611-42b8-aa89-338bb6c86691",
+ "x": "400",
+ "y": "90",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 70,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_123\", Position: (0, 120), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_123\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "65428c85-f211-4d6b-8a72-5a705c1ef5a3",
+ "x": "0",
+ "y": "120",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 71,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"SUM('Test 3'!$B$3:$B$7)\", Position: (100, 120), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"SUM('Test 3'!$B$3:$B$7)\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "fb81e3ff-8716-440b-bcdc-36c8d8581fab",
+ "x": "100",
+ "y": "120",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 72,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"entire workbook\", Position: (400, 120), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"entire workbook\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8fbdfcbc-7623-470a-9597-8cf4d90f4e97",
+ "x": "400",
+ "y": "120",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 73,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"eight\", Position: (0, 150), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"eight\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f864b7c6-eb01-409a-bae5-591a574be9f9",
+ "x": "0",
+ "y": "150",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 74,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"3+5\", Position: (100, 150), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"3+5\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c6184a21-69b0-405c-80bc-7c2e566871bd",
+ "x": "100",
+ "y": "150",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 75,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"entire workbook\", Position: (400, 150), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"entire workbook\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "9059b774-5137-4884-88a5-f70c68586071",
+ "x": "400",
+ "y": "150",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 76,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Formula expressions using available names\", Position: (0, 210), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"Formula expressions using available names\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "5f1edfc3-9d39-4b56-ab22-728024a32dd4",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "210",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 77,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Value\", Position: (400, 210), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Value\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8af4a97a-0d7d-4368-a7b6-537b48549008",
+ "mode": "Opaque",
+ "x": "400",
+ "y": "210",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 78,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"eight\", Position: (0, 240), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"eight\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "a333122d-5ae4-4bb9-ba91-fc5f2358a46f",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "240",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 79,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_\" + $V{PAGE_NUMBER}, Position: (0, 270), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7e3d2a40-de7d-4485-ac00-47172c71c31e",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "270",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 80,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_123\", Position: (0, 300), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_123\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "45fcb8b4-cf97-4379-874f-6b651d0ca113",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "300",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 81,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\", Position: (0, 330), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f6bb2043-6094-434e-a367-85b99dd543a5",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "330",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 82,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelNames', height: 30 pixels, splitType: Stretch. Contains 1 elements: 1x textField. Visible text samples: ${\"Sheet data\"}",
+ "raw_xml": "\n\t\t\n\t\t\t\"Sheet data\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelNames' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Sheet data\"}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 82,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelNames', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=30).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$V{REPORT_COUNT} + 1\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelNames' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 82,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 270), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\"the_sum_\"+$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c63b761b-892c-454f-83ab-839bcc9fbfc3",
+ "x": "400",
+ "y": "270",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 83,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 300), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "eba3fa9e-283e-421a-b6b0-3aa7546caf68",
+ "x": "400",
+ "y": "300",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 84,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 240), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "e51e8649-7077-4d78-b733-cc51917236bb",
+ "x": "400",
+ "y": "240",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 85,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 330), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\"\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6470c197-4e77-4d6b-9d80-bd63c451e9c7",
+ "x": "400",
+ "y": "330",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 86,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Names visible in sheet 'Test \" + $V{PAGE_NUMBER} + \"':\", Position: (0, 0), Size: 500x30.",
+ "raw_xml": "\n\t\t\t\"Names visible in sheet 'Test \" + $V{PAGE_NUMBER} + \"':\"\n\t\t\t\n\t\t\t\n\t\t\t\"Test \"+$V{PAGE_NUMBER}\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "81bbf26c-6f2c-4085-b256-d516bae17325",
+ "x": "0",
+ "y": "0",
+ "width": "500",
+ "height": "30",
+ "fontSize": "12.0",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 87,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Name\", Position: (0, 30), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Name\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "683946c6-4e4b-434a-b51b-d113a4b50b61",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "30",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 88,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Name expression\", Position: (100, 30), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"Name expression\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8ba8216c-e309-40d4-83f2-84774044ab81",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "30",
+ "width": "300",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 89,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Visibility\", Position: (400, 30), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Visibility\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8899aab2-9042-40f8-bad0-f526d6872173",
+ "mode": "Opaque",
+ "x": "400",
+ "y": "30",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 90,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_range_\" + $V{PAGE_NUMBER}, Position: (0, 60), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_range_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6dc9e7b2-a319-4fae-8d15-cb1644e711c9",
+ "x": "0",
+ "y": "60",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 91,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"'Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7|Test \" + $V{PAGE_NUMBER}, Position: (100, 60), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"'Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7|Test \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "dd946f9d-60f7-432d-b6eb-2f14a6f91065",
+ "x": "100",
+ "y": "60",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 92,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\", Position: (400, 60), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "eafa24cb-7b6c-4196-9647-bc4639297d2f",
+ "x": "400",
+ "y": "60",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 93,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_\" + $V{PAGE_NUMBER}, Position: (0, 90), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8fc0d771-f8c3-4fe5-9882-347d4ea06d92",
+ "x": "0",
+ "y": "90",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 94,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"SUM('Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7)\"+ ($V{PAGE_NUMBER} == 1 ? \"+1\" : ..., Position: (100, 90), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"SUM('Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7)\"+ ($V{PAGE_NUMBER} == 1 ? \"+1\" : \"\")+ \"|Test \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "13804bcf-f899-4fbd-a240-3c8b69786564",
+ "x": "100",
+ "y": "90",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 95,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\", Position: (400, 90), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f9624402-3611-42b8-aa89-338bb6c86691",
+ "x": "400",
+ "y": "90",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 96,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_123\", Position: (0, 120), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_123\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "65428c85-f211-4d6b-8a72-5a705c1ef5a3",
+ "x": "0",
+ "y": "120",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 97,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"SUM('Test 3'!$B$3:$B$7)\", Position: (100, 120), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"SUM('Test 3'!$B$3:$B$7)\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "fb81e3ff-8716-440b-bcdc-36c8d8581fab",
+ "x": "100",
+ "y": "120",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 98,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"entire workbook\", Position: (400, 120), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"entire workbook\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8fbdfcbc-7623-470a-9597-8cf4d90f4e97",
+ "x": "400",
+ "y": "120",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 99,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"eight\", Position: (0, 150), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"eight\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f864b7c6-eb01-409a-bae5-591a574be9f9",
+ "x": "0",
+ "y": "150",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 100,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"3+5\", Position: (100, 150), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"3+5\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c6184a21-69b0-405c-80bc-7c2e566871bd",
+ "x": "100",
+ "y": "150",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 101,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"entire workbook\", Position: (400, 150), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"entire workbook\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "9059b774-5137-4884-88a5-f70c68586071",
+ "x": "400",
+ "y": "150",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 102,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Formula expressions using available names\", Position: (0, 210), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"Formula expressions using available names\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "5f1edfc3-9d39-4b56-ab22-728024a32dd4",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "210",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 103,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Value\", Position: (400, 210), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Value\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8af4a97a-0d7d-4368-a7b6-537b48549008",
+ "mode": "Opaque",
+ "x": "400",
+ "y": "210",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 104,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"eight\", Position: (0, 240), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"eight\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "a333122d-5ae4-4bb9-ba91-fc5f2358a46f",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "240",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 105,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_\" + $V{PAGE_NUMBER}, Position: (0, 270), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7e3d2a40-de7d-4485-ac00-47172c71c31e",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "270",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 106,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_123\", Position: (0, 300), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_123\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "45fcb8b4-cf97-4379-874f-6b651d0ca113",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "300",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 107,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\", Position: (0, 330), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f6bb2043-6094-434e-a367-85b99dd543a5",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "330",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 108,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelNames', height: 30 pixels, splitType: Stretch. Contains 1 elements: 1x textField. Visible text samples: ${\"Sheet data\"}",
+ "raw_xml": "\n\t\t\n\t\t\t\"Sheet data\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelNames' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Sheet data\"}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 108,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelNames', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=30).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$V{REPORT_COUNT} + 1\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelNames' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 108,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 270), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\"the_sum_\"+$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c63b761b-892c-454f-83ab-839bcc9fbfc3",
+ "x": "400",
+ "y": "270",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 109,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 300), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "eba3fa9e-283e-421a-b6b0-3aa7546caf68",
+ "x": "400",
+ "y": "300",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 110,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 240), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "e51e8649-7077-4d78-b733-cc51917236bb",
+ "x": "400",
+ "y": "240",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 111,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 330), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\"\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6470c197-4e77-4d6b-9d80-bd63c451e9c7",
+ "x": "400",
+ "y": "330",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 112,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Names visible in sheet 'Test \" + $V{PAGE_NUMBER} + \"':\", Position: (0, 0), Size: 500x30.",
+ "raw_xml": "\n\t\t\t\"Names visible in sheet 'Test \" + $V{PAGE_NUMBER} + \"':\"\n\t\t\t\n\t\t\t\n\t\t\t\"Test \"+$V{PAGE_NUMBER}\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "81bbf26c-6f2c-4085-b256-d516bae17325",
+ "x": "0",
+ "y": "0",
+ "width": "500",
+ "height": "30",
+ "fontSize": "12.0",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 113,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Name\", Position: (0, 30), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Name\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "683946c6-4e4b-434a-b51b-d113a4b50b61",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "30",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 114,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Name expression\", Position: (100, 30), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"Name expression\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8ba8216c-e309-40d4-83f2-84774044ab81",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "30",
+ "width": "300",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 115,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Visibility\", Position: (400, 30), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Visibility\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8899aab2-9042-40f8-bad0-f526d6872173",
+ "mode": "Opaque",
+ "x": "400",
+ "y": "30",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 116,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_range_\" + $V{PAGE_NUMBER}, Position: (0, 60), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_range_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6dc9e7b2-a319-4fae-8d15-cb1644e711c9",
+ "x": "0",
+ "y": "60",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 117,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"'Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7|Test \" + $V{PAGE_NUMBER}, Position: (100, 60), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"'Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7|Test \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "dd946f9d-60f7-432d-b6eb-2f14a6f91065",
+ "x": "100",
+ "y": "60",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 118,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\", Position: (400, 60), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "eafa24cb-7b6c-4196-9647-bc4639297d2f",
+ "x": "400",
+ "y": "60",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 119,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_\" + $V{PAGE_NUMBER}, Position: (0, 90), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8fc0d771-f8c3-4fe5-9882-347d4ea06d92",
+ "x": "0",
+ "y": "90",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 120,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"SUM('Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7)\"+ ($V{PAGE_NUMBER} == 1 ? \"+1\" : ..., Position: (100, 90), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"SUM('Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7)\"+ ($V{PAGE_NUMBER} == 1 ? \"+1\" : \"\")+ \"|Test \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "13804bcf-f899-4fbd-a240-3c8b69786564",
+ "x": "100",
+ "y": "90",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 121,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\", Position: (400, 90), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f9624402-3611-42b8-aa89-338bb6c86691",
+ "x": "400",
+ "y": "90",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 122,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_123\", Position: (0, 120), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_123\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "65428c85-f211-4d6b-8a72-5a705c1ef5a3",
+ "x": "0",
+ "y": "120",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 123,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"SUM('Test 3'!$B$3:$B$7)\", Position: (100, 120), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"SUM('Test 3'!$B$3:$B$7)\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "fb81e3ff-8716-440b-bcdc-36c8d8581fab",
+ "x": "100",
+ "y": "120",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 124,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"entire workbook\", Position: (400, 120), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"entire workbook\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8fbdfcbc-7623-470a-9597-8cf4d90f4e97",
+ "x": "400",
+ "y": "120",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 125,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"eight\", Position: (0, 150), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"eight\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f864b7c6-eb01-409a-bae5-591a574be9f9",
+ "x": "0",
+ "y": "150",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 126,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"3+5\", Position: (100, 150), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"3+5\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c6184a21-69b0-405c-80bc-7c2e566871bd",
+ "x": "100",
+ "y": "150",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 127,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"entire workbook\", Position: (400, 150), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"entire workbook\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "9059b774-5137-4884-88a5-f70c68586071",
+ "x": "400",
+ "y": "150",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 128,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Formula expressions using available names\", Position: (0, 210), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"Formula expressions using available names\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "5f1edfc3-9d39-4b56-ab22-728024a32dd4",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "210",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 129,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Value\", Position: (400, 210), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Value\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8af4a97a-0d7d-4368-a7b6-537b48549008",
+ "mode": "Opaque",
+ "x": "400",
+ "y": "210",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 130,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"eight\", Position: (0, 240), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"eight\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "a333122d-5ae4-4bb9-ba91-fc5f2358a46f",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "240",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 131,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_\" + $V{PAGE_NUMBER}, Position: (0, 270), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7e3d2a40-de7d-4485-ac00-47172c71c31e",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "270",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 132,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_123\", Position: (0, 300), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_123\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "45fcb8b4-cf97-4379-874f-6b651d0ca113",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "300",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 133,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\", Position: (0, 330), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f6bb2043-6094-434e-a367-85b99dd543a5",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "330",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 134,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelNames', height: 30 pixels, splitType: Stretch. Contains 1 elements: 1x textField. Visible text samples: ${\"Sheet data\"}",
+ "raw_xml": "\n\t\t\n\t\t\t\"Sheet data\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelNames' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Sheet data\"}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 134,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelNames', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=30).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$V{REPORT_COUNT} + 1\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelNames' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 134,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 270), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\"the_sum_\"+$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c63b761b-892c-454f-83ab-839bcc9fbfc3",
+ "x": "400",
+ "y": "270",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 135,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 300), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "eba3fa9e-283e-421a-b6b0-3aa7546caf68",
+ "x": "400",
+ "y": "300",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 136,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 240), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "e51e8649-7077-4d78-b733-cc51917236bb",
+ "x": "400",
+ "y": "240",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 137,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 330), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\"\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6470c197-4e77-4d6b-9d80-bd63c451e9c7",
+ "x": "400",
+ "y": "330",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 138,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Names visible in sheet 'Test \" + $V{PAGE_NUMBER} + \"':\", Position: (0, 0), Size: 500x30.",
+ "raw_xml": "\n\t\t\t\"Names visible in sheet 'Test \" + $V{PAGE_NUMBER} + \"':\"\n\t\t\t\n\t\t\t\n\t\t\t\"Test \"+$V{PAGE_NUMBER}\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "81bbf26c-6f2c-4085-b256-d516bae17325",
+ "x": "0",
+ "y": "0",
+ "width": "500",
+ "height": "30",
+ "fontSize": "12.0",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 139,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Name\", Position: (0, 30), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Name\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "683946c6-4e4b-434a-b51b-d113a4b50b61",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "30",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 140,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Name expression\", Position: (100, 30), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"Name expression\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8ba8216c-e309-40d4-83f2-84774044ab81",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "30",
+ "width": "300",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 141,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Visibility\", Position: (400, 30), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Visibility\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8899aab2-9042-40f8-bad0-f526d6872173",
+ "mode": "Opaque",
+ "x": "400",
+ "y": "30",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 142,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_range_\" + $V{PAGE_NUMBER}, Position: (0, 60), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_range_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6dc9e7b2-a319-4fae-8d15-cb1644e711c9",
+ "x": "0",
+ "y": "60",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 143,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"'Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7|Test \" + $V{PAGE_NUMBER}, Position: (100, 60), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"'Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7|Test \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "dd946f9d-60f7-432d-b6eb-2f14a6f91065",
+ "x": "100",
+ "y": "60",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 144,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\", Position: (400, 60), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "eafa24cb-7b6c-4196-9647-bc4639297d2f",
+ "x": "400",
+ "y": "60",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 145,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_\" + $V{PAGE_NUMBER}, Position: (0, 90), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8fc0d771-f8c3-4fe5-9882-347d4ea06d92",
+ "x": "0",
+ "y": "90",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 146,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"SUM('Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7)\"+ ($V{PAGE_NUMBER} == 1 ? \"+1\" : ..., Position: (100, 90), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"SUM('Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7)\"+ ($V{PAGE_NUMBER} == 1 ? \"+1\" : \"\")+ \"|Test \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "13804bcf-f899-4fbd-a240-3c8b69786564",
+ "x": "100",
+ "y": "90",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 147,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\", Position: (400, 90), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f9624402-3611-42b8-aa89-338bb6c86691",
+ "x": "400",
+ "y": "90",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 148,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_123\", Position: (0, 120), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_123\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "65428c85-f211-4d6b-8a72-5a705c1ef5a3",
+ "x": "0",
+ "y": "120",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 149,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"SUM('Test 3'!$B$3:$B$7)\", Position: (100, 120), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"SUM('Test 3'!$B$3:$B$7)\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "fb81e3ff-8716-440b-bcdc-36c8d8581fab",
+ "x": "100",
+ "y": "120",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 150,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"entire workbook\", Position: (400, 120), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"entire workbook\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8fbdfcbc-7623-470a-9597-8cf4d90f4e97",
+ "x": "400",
+ "y": "120",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 151,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"eight\", Position: (0, 150), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"eight\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f864b7c6-eb01-409a-bae5-591a574be9f9",
+ "x": "0",
+ "y": "150",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 152,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"3+5\", Position: (100, 150), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"3+5\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c6184a21-69b0-405c-80bc-7c2e566871bd",
+ "x": "100",
+ "y": "150",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 153,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"entire workbook\", Position: (400, 150), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"entire workbook\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "9059b774-5137-4884-88a5-f70c68586071",
+ "x": "400",
+ "y": "150",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 154,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Formula expressions using available names\", Position: (0, 210), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"Formula expressions using available names\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "5f1edfc3-9d39-4b56-ab22-728024a32dd4",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "210",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 155,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Value\", Position: (400, 210), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Value\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8af4a97a-0d7d-4368-a7b6-537b48549008",
+ "mode": "Opaque",
+ "x": "400",
+ "y": "210",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 156,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"eight\", Position: (0, 240), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"eight\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "a333122d-5ae4-4bb9-ba91-fc5f2358a46f",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "240",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 157,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_\" + $V{PAGE_NUMBER}, Position: (0, 270), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7e3d2a40-de7d-4485-ac00-47172c71c31e",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "270",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 158,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_123\", Position: (0, 300), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_123\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "45fcb8b4-cf97-4379-874f-6b651d0ca113",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "300",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 159,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\", Position: (0, 330), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f6bb2043-6094-434e-a367-85b99dd543a5",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "330",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 160,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelNames', height: 30 pixels, splitType: Stretch. Contains 1 elements: 1x textField. Visible text samples: ${\"Sheet data\"}",
+ "raw_xml": "\n\t\t\n\t\t\t\"Sheet data\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelNames' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Sheet data\"}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 160,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelNames', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=30).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$V{REPORT_COUNT} + 1\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelNames' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 160,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 270), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\"the_sum_\"+$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c63b761b-892c-454f-83ab-839bcc9fbfc3",
+ "x": "400",
+ "y": "270",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 161,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 300), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "eba3fa9e-283e-421a-b6b0-3aa7546caf68",
+ "x": "400",
+ "y": "300",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 162,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 240), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "e51e8649-7077-4d78-b733-cc51917236bb",
+ "x": "400",
+ "y": "240",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 163,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 330), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\"\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6470c197-4e77-4d6b-9d80-bd63c451e9c7",
+ "x": "400",
+ "y": "330",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 164,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Names visible in sheet 'Test \" + $V{PAGE_NUMBER} + \"':\", Position: (0, 0), Size: 500x30.",
+ "raw_xml": "\n\t\t\t\"Names visible in sheet 'Test \" + $V{PAGE_NUMBER} + \"':\"\n\t\t\t\n\t\t\t\n\t\t\t\"Test \"+$V{PAGE_NUMBER}\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "81bbf26c-6f2c-4085-b256-d516bae17325",
+ "x": "0",
+ "y": "0",
+ "width": "500",
+ "height": "30",
+ "fontSize": "12.0",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 165,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Name\", Position: (0, 30), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Name\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "683946c6-4e4b-434a-b51b-d113a4b50b61",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "30",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 166,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Name expression\", Position: (100, 30), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"Name expression\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8ba8216c-e309-40d4-83f2-84774044ab81",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "30",
+ "width": "300",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 167,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Visibility\", Position: (400, 30), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Visibility\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8899aab2-9042-40f8-bad0-f526d6872173",
+ "mode": "Opaque",
+ "x": "400",
+ "y": "30",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 168,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_range_\" + $V{PAGE_NUMBER}, Position: (0, 60), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_range_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6dc9e7b2-a319-4fae-8d15-cb1644e711c9",
+ "x": "0",
+ "y": "60",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 169,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"'Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7|Test \" + $V{PAGE_NUMBER}, Position: (100, 60), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"'Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7|Test \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "dd946f9d-60f7-432d-b6eb-2f14a6f91065",
+ "x": "100",
+ "y": "60",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 170,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\", Position: (400, 60), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "eafa24cb-7b6c-4196-9647-bc4639297d2f",
+ "x": "400",
+ "y": "60",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 171,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_\" + $V{PAGE_NUMBER}, Position: (0, 90), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8fc0d771-f8c3-4fe5-9882-347d4ea06d92",
+ "x": "0",
+ "y": "90",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 172,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"SUM('Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7)\"+ ($V{PAGE_NUMBER} == 1 ? \"+1\" : ..., Position: (100, 90), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"SUM('Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7)\"+ ($V{PAGE_NUMBER} == 1 ? \"+1\" : \"\")+ \"|Test \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "13804bcf-f899-4fbd-a240-3c8b69786564",
+ "x": "100",
+ "y": "90",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 173,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\", Position: (400, 90), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f9624402-3611-42b8-aa89-338bb6c86691",
+ "x": "400",
+ "y": "90",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 174,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_123\", Position: (0, 120), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_123\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "65428c85-f211-4d6b-8a72-5a705c1ef5a3",
+ "x": "0",
+ "y": "120",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 175,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"SUM('Test 3'!$B$3:$B$7)\", Position: (100, 120), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"SUM('Test 3'!$B$3:$B$7)\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "fb81e3ff-8716-440b-bcdc-36c8d8581fab",
+ "x": "100",
+ "y": "120",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 176,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"entire workbook\", Position: (400, 120), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"entire workbook\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8fbdfcbc-7623-470a-9597-8cf4d90f4e97",
+ "x": "400",
+ "y": "120",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 177,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"eight\", Position: (0, 150), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"eight\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f864b7c6-eb01-409a-bae5-591a574be9f9",
+ "x": "0",
+ "y": "150",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 178,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"3+5\", Position: (100, 150), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"3+5\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c6184a21-69b0-405c-80bc-7c2e566871bd",
+ "x": "100",
+ "y": "150",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 179,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"entire workbook\", Position: (400, 150), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"entire workbook\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "9059b774-5137-4884-88a5-f70c68586071",
+ "x": "400",
+ "y": "150",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 180,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Formula expressions using available names\", Position: (0, 210), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"Formula expressions using available names\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "5f1edfc3-9d39-4b56-ab22-728024a32dd4",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "210",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 181,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Value\", Position: (400, 210), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Value\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8af4a97a-0d7d-4368-a7b6-537b48549008",
+ "mode": "Opaque",
+ "x": "400",
+ "y": "210",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 182,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"eight\", Position: (0, 240), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"eight\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "a333122d-5ae4-4bb9-ba91-fc5f2358a46f",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "240",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 183,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_\" + $V{PAGE_NUMBER}, Position: (0, 270), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7e3d2a40-de7d-4485-ac00-47172c71c31e",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "270",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 184,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_123\", Position: (0, 300), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_123\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "45fcb8b4-cf97-4379-874f-6b651d0ca113",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "300",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 185,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\", Position: (0, 330), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f6bb2043-6094-434e-a367-85b99dd543a5",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "330",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 186,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelNames', height: 30 pixels, splitType: Stretch. Contains 1 elements: 1x textField. Visible text samples: ${\"Sheet data\"}",
+ "raw_xml": "\n\t\t\n\t\t\t\"Sheet data\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelNames' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Sheet data\"}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 186,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelNames', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=30).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$V{REPORT_COUNT} + 1\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelNames' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 186,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 270), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\"the_sum_\"+$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c63b761b-892c-454f-83ab-839bcc9fbfc3",
+ "x": "400",
+ "y": "270",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 187,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 300), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "eba3fa9e-283e-421a-b6b0-3aa7546caf68",
+ "x": "400",
+ "y": "300",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 188,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 240), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "e51e8649-7077-4d78-b733-cc51917236bb",
+ "x": "400",
+ "y": "240",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 189,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 330), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\"\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6470c197-4e77-4d6b-9d80-bd63c451e9c7",
+ "x": "400",
+ "y": "330",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 190,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Names visible in sheet 'Test \" + $V{PAGE_NUMBER} + \"':\", Position: (0, 0), Size: 500x30.",
+ "raw_xml": "\n\t\t\t\"Names visible in sheet 'Test \" + $V{PAGE_NUMBER} + \"':\"\n\t\t\t\n\t\t\t\n\t\t\t\"Test \"+$V{PAGE_NUMBER}\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "81bbf26c-6f2c-4085-b256-d516bae17325",
+ "x": "0",
+ "y": "0",
+ "width": "500",
+ "height": "30",
+ "fontSize": "12.0",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 191,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Name\", Position: (0, 30), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Name\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "683946c6-4e4b-434a-b51b-d113a4b50b61",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "30",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 192,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Name expression\", Position: (100, 30), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"Name expression\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8ba8216c-e309-40d4-83f2-84774044ab81",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "30",
+ "width": "300",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 193,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Visibility\", Position: (400, 30), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Visibility\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8899aab2-9042-40f8-bad0-f526d6872173",
+ "mode": "Opaque",
+ "x": "400",
+ "y": "30",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 194,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_range_\" + $V{PAGE_NUMBER}, Position: (0, 60), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_range_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6dc9e7b2-a319-4fae-8d15-cb1644e711c9",
+ "x": "0",
+ "y": "60",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 195,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"'Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7|Test \" + $V{PAGE_NUMBER}, Position: (100, 60), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"'Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7|Test \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "dd946f9d-60f7-432d-b6eb-2f14a6f91065",
+ "x": "100",
+ "y": "60",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 196,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\", Position: (400, 60), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "eafa24cb-7b6c-4196-9647-bc4639297d2f",
+ "x": "400",
+ "y": "60",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 197,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_\" + $V{PAGE_NUMBER}, Position: (0, 90), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8fc0d771-f8c3-4fe5-9882-347d4ea06d92",
+ "x": "0",
+ "y": "90",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 198,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"SUM('Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7)\"+ ($V{PAGE_NUMBER} == 1 ? \"+1\" : ..., Position: (100, 90), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"SUM('Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7)\"+ ($V{PAGE_NUMBER} == 1 ? \"+1\" : \"\")+ \"|Test \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "13804bcf-f899-4fbd-a240-3c8b69786564",
+ "x": "100",
+ "y": "90",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 199,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\", Position: (400, 90), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f9624402-3611-42b8-aa89-338bb6c86691",
+ "x": "400",
+ "y": "90",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 200,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_123\", Position: (0, 120), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_123\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "65428c85-f211-4d6b-8a72-5a705c1ef5a3",
+ "x": "0",
+ "y": "120",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 201,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"SUM('Test 3'!$B$3:$B$7)\", Position: (100, 120), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"SUM('Test 3'!$B$3:$B$7)\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "fb81e3ff-8716-440b-bcdc-36c8d8581fab",
+ "x": "100",
+ "y": "120",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 202,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"entire workbook\", Position: (400, 120), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"entire workbook\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8fbdfcbc-7623-470a-9597-8cf4d90f4e97",
+ "x": "400",
+ "y": "120",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 203,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"eight\", Position: (0, 150), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"eight\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f864b7c6-eb01-409a-bae5-591a574be9f9",
+ "x": "0",
+ "y": "150",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 204,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"3+5\", Position: (100, 150), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"3+5\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c6184a21-69b0-405c-80bc-7c2e566871bd",
+ "x": "100",
+ "y": "150",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 205,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"entire workbook\", Position: (400, 150), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"entire workbook\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "9059b774-5137-4884-88a5-f70c68586071",
+ "x": "400",
+ "y": "150",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 206,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Formula expressions using available names\", Position: (0, 210), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"Formula expressions using available names\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "5f1edfc3-9d39-4b56-ab22-728024a32dd4",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "210",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 207,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Value\", Position: (400, 210), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Value\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8af4a97a-0d7d-4368-a7b6-537b48549008",
+ "mode": "Opaque",
+ "x": "400",
+ "y": "210",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 208,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"eight\", Position: (0, 240), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"eight\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "a333122d-5ae4-4bb9-ba91-fc5f2358a46f",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "240",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 209,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_\" + $V{PAGE_NUMBER}, Position: (0, 270), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7e3d2a40-de7d-4485-ac00-47172c71c31e",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "270",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 210,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_123\", Position: (0, 300), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_123\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "45fcb8b4-cf97-4379-874f-6b651d0ca113",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "300",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 211,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\", Position: (0, 330), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f6bb2043-6094-434e-a367-85b99dd543a5",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "330",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 212,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelNames', height: 30 pixels, splitType: Stretch. Contains 1 elements: 1x textField. Visible text samples: ${\"Sheet data\"}",
+ "raw_xml": "\n\t\t\n\t\t\t\"Sheet data\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelNames' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Sheet data\"}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 212,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelNames', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=30).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$V{REPORT_COUNT} + 1\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelNames' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 212,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 270), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\"the_sum_\"+$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c63b761b-892c-454f-83ab-839bcc9fbfc3",
+ "x": "400",
+ "y": "270",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 213,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 300), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "eba3fa9e-283e-421a-b6b0-3aa7546caf68",
+ "x": "400",
+ "y": "300",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 214,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 240), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "e51e8649-7077-4d78-b733-cc51917236bb",
+ "x": "400",
+ "y": "240",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 215,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 330), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\"\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6470c197-4e77-4d6b-9d80-bd63c451e9c7",
+ "x": "400",
+ "y": "330",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 216,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Names visible in sheet 'Test \" + $V{PAGE_NUMBER} + \"':\", Position: (0, 0), Size: 500x30.",
+ "raw_xml": "\n\t\t\t\"Names visible in sheet 'Test \" + $V{PAGE_NUMBER} + \"':\"\n\t\t\t\n\t\t\t\n\t\t\t\"Test \"+$V{PAGE_NUMBER}\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "81bbf26c-6f2c-4085-b256-d516bae17325",
+ "x": "0",
+ "y": "0",
+ "width": "500",
+ "height": "30",
+ "fontSize": "12.0",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 217,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Name\", Position: (0, 30), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Name\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "683946c6-4e4b-434a-b51b-d113a4b50b61",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "30",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 218,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Name expression\", Position: (100, 30), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"Name expression\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8ba8216c-e309-40d4-83f2-84774044ab81",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "30",
+ "width": "300",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 219,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Visibility\", Position: (400, 30), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Visibility\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8899aab2-9042-40f8-bad0-f526d6872173",
+ "mode": "Opaque",
+ "x": "400",
+ "y": "30",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 220,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_range_\" + $V{PAGE_NUMBER}, Position: (0, 60), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_range_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6dc9e7b2-a319-4fae-8d15-cb1644e711c9",
+ "x": "0",
+ "y": "60",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 221,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"'Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7|Test \" + $V{PAGE_NUMBER}, Position: (100, 60), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"'Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7|Test \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "dd946f9d-60f7-432d-b6eb-2f14a6f91065",
+ "x": "100",
+ "y": "60",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 222,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\", Position: (400, 60), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "eafa24cb-7b6c-4196-9647-bc4639297d2f",
+ "x": "400",
+ "y": "60",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 223,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_\" + $V{PAGE_NUMBER}, Position: (0, 90), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8fc0d771-f8c3-4fe5-9882-347d4ea06d92",
+ "x": "0",
+ "y": "90",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 224,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"SUM('Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7)\"+ ($V{PAGE_NUMBER} == 1 ? \"+1\" : ..., Position: (100, 90), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"SUM('Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7)\"+ ($V{PAGE_NUMBER} == 1 ? \"+1\" : \"\")+ \"|Test \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "13804bcf-f899-4fbd-a240-3c8b69786564",
+ "x": "100",
+ "y": "90",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 225,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\", Position: (400, 90), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f9624402-3611-42b8-aa89-338bb6c86691",
+ "x": "400",
+ "y": "90",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 226,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_123\", Position: (0, 120), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_123\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "65428c85-f211-4d6b-8a72-5a705c1ef5a3",
+ "x": "0",
+ "y": "120",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 227,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"SUM('Test 3'!$B$3:$B$7)\", Position: (100, 120), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"SUM('Test 3'!$B$3:$B$7)\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "fb81e3ff-8716-440b-bcdc-36c8d8581fab",
+ "x": "100",
+ "y": "120",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 228,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"entire workbook\", Position: (400, 120), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"entire workbook\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8fbdfcbc-7623-470a-9597-8cf4d90f4e97",
+ "x": "400",
+ "y": "120",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 229,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"eight\", Position: (0, 150), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"eight\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f864b7c6-eb01-409a-bae5-591a574be9f9",
+ "x": "0",
+ "y": "150",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 230,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"3+5\", Position: (100, 150), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"3+5\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c6184a21-69b0-405c-80bc-7c2e566871bd",
+ "x": "100",
+ "y": "150",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 231,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"entire workbook\", Position: (400, 150), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"entire workbook\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "9059b774-5137-4884-88a5-f70c68586071",
+ "x": "400",
+ "y": "150",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 232,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Formula expressions using available names\", Position: (0, 210), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"Formula expressions using available names\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "5f1edfc3-9d39-4b56-ab22-728024a32dd4",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "210",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 233,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Value\", Position: (400, 210), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Value\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8af4a97a-0d7d-4368-a7b6-537b48549008",
+ "mode": "Opaque",
+ "x": "400",
+ "y": "210",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 234,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"eight\", Position: (0, 240), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"eight\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "a333122d-5ae4-4bb9-ba91-fc5f2358a46f",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "240",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 235,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_\" + $V{PAGE_NUMBER}, Position: (0, 270), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7e3d2a40-de7d-4485-ac00-47172c71c31e",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "270",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 236,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_123\", Position: (0, 300), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_123\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "45fcb8b4-cf97-4379-874f-6b651d0ca113",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "300",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 237,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\", Position: (0, 330), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f6bb2043-6094-434e-a367-85b99dd543a5",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "330",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 238,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelNames', height: 30 pixels, splitType: Stretch. Contains 1 elements: 1x textField. Visible text samples: ${\"Sheet data\"}",
+ "raw_xml": "\n\t\t\n\t\t\t\"Sheet data\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelNames' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Sheet data\"}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 238,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelNames', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=30).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$V{REPORT_COUNT} + 1\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelNames' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 238,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 270), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\"the_sum_\"+$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c63b761b-892c-454f-83ab-839bcc9fbfc3",
+ "x": "400",
+ "y": "270",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 239,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 300), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "eba3fa9e-283e-421a-b6b0-3aa7546caf68",
+ "x": "400",
+ "y": "300",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 240,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 240), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "e51e8649-7077-4d78-b733-cc51917236bb",
+ "x": "400",
+ "y": "240",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 241,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: 0, Position: (400, 330), Size: 100x30.",
+ "raw_xml": "\n\t\t\t0\n\t\t\t\n\t\t\t\n\t\t\t\"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\"\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6470c197-4e77-4d6b-9d80-bd63c451e9c7",
+ "x": "400",
+ "y": "330",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Right",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 242,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Names visible in sheet 'Test \" + $V{PAGE_NUMBER} + \"':\", Position: (0, 0), Size: 500x30.",
+ "raw_xml": "\n\t\t\t\"Names visible in sheet 'Test \" + $V{PAGE_NUMBER} + \"':\"\n\t\t\t\n\t\t\t\n\t\t\t\"Test \"+$V{PAGE_NUMBER}\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "81bbf26c-6f2c-4085-b256-d516bae17325",
+ "x": "0",
+ "y": "0",
+ "width": "500",
+ "height": "30",
+ "fontSize": "12.0",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 243,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Name\", Position: (0, 30), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Name\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "683946c6-4e4b-434a-b51b-d113a4b50b61",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "30",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 244,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Name expression\", Position: (100, 30), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"Name expression\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8ba8216c-e309-40d4-83f2-84774044ab81",
+ "mode": "Opaque",
+ "x": "100",
+ "y": "30",
+ "width": "300",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 245,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Visibility\", Position: (400, 30), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Visibility\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8899aab2-9042-40f8-bad0-f526d6872173",
+ "mode": "Opaque",
+ "x": "400",
+ "y": "30",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 246,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_range_\" + $V{PAGE_NUMBER}, Position: (0, 60), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_range_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "6dc9e7b2-a319-4fae-8d15-cb1644e711c9",
+ "x": "0",
+ "y": "60",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 247,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"'Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7|Test \" + $V{PAGE_NUMBER}, Position: (100, 60), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"'Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7|Test \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "dd946f9d-60f7-432d-b6eb-2f14a6f91065",
+ "x": "100",
+ "y": "60",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 248,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\", Position: (400, 60), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "eafa24cb-7b6c-4196-9647-bc4639297d2f",
+ "x": "400",
+ "y": "60",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 249,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_\" + $V{PAGE_NUMBER}, Position: (0, 90), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8fc0d771-f8c3-4fe5-9882-347d4ea06d92",
+ "x": "0",
+ "y": "90",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 250,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"SUM('Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7)\"+ ($V{PAGE_NUMBER} == 1 ? \"+1\" : ..., Position: (100, 90), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"SUM('Test \" + $V{PAGE_NUMBER} + \"'!$B$3:$B$7)\"+ ($V{PAGE_NUMBER} == 1 ? \"+1\" : \"\")+ \"|Test \" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "13804bcf-f899-4fbd-a240-3c8b69786564",
+ "x": "100",
+ "y": "90",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 251,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\", Position: (400, 90), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"sheet 'Test \" + $V{PAGE_NUMBER} +\"'\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f9624402-3611-42b8-aa89-338bb6c86691",
+ "x": "400",
+ "y": "90",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 252,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_123\", Position: (0, 120), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_123\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "65428c85-f211-4d6b-8a72-5a705c1ef5a3",
+ "x": "0",
+ "y": "120",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 253,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"SUM('Test 3'!$B$3:$B$7)\", Position: (100, 120), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"SUM('Test 3'!$B$3:$B$7)\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "fb81e3ff-8716-440b-bcdc-36c8d8581fab",
+ "x": "100",
+ "y": "120",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 254,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"entire workbook\", Position: (400, 120), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"entire workbook\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8fbdfcbc-7623-470a-9597-8cf4d90f4e97",
+ "x": "400",
+ "y": "120",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 255,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"eight\", Position: (0, 150), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"eight\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f864b7c6-eb01-409a-bae5-591a574be9f9",
+ "x": "0",
+ "y": "150",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 256,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"3+5\", Position: (100, 150), Size: 300x30.",
+ "raw_xml": "\n\t\t\t\"3+5\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "c6184a21-69b0-405c-80bc-7c2e566871bd",
+ "x": "100",
+ "y": "150",
+ "width": "300",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 257,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"entire workbook\", Position: (400, 150), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"entire workbook\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "9059b774-5137-4884-88a5-f70c68586071",
+ "x": "400",
+ "y": "150",
+ "width": "100",
+ "height": "30",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 258,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Formula expressions using available names\", Position: (0, 210), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"Formula expressions using available names\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "5f1edfc3-9d39-4b56-ab22-728024a32dd4",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "210",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 259,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"Value\", Position: (400, 210), Size: 100x30.",
+ "raw_xml": "\n\t\t\t\"Value\"\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "8af4a97a-0d7d-4368-a7b6-537b48549008",
+ "mode": "Opaque",
+ "x": "400",
+ "y": "210",
+ "width": "100",
+ "height": "30",
+ "backcolor": "#DFDFDF",
+ "bold": "true",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 260,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"eight\", Position: (0, 240), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"eight\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "a333122d-5ae4-4bb9-ba91-fc5f2358a46f",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "240",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 261,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_\" + $V{PAGE_NUMBER}, Position: (0, 270), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_\" + $V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "7e3d2a40-de7d-4485-ac00-47172c71c31e",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "270",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 262,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"the_sum_123\", Position: (0, 300), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"the_sum_123\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "45fcb8b4-cf97-4379-874f-6b651d0ca113",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "300",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 263,
+ "chunk_type": "element_textField",
+ "human_description": "'pageFooter' band of report 'ExcelNames': textField element, Expression: \"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\", Position: (0, 330), Size: 400x30.",
+ "raw_xml": "\n\t\t\t\"AVERAGE(the_range_\"+$V{PAGE_NUMBER}+\")\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'ExcelNames' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "element_kind": "textField",
+ "attributes": {
+ "kind": "textField",
+ "uuid": "f6bb2043-6094-434e-a367-85b99dd543a5",
+ "mode": "Transparent",
+ "x": "0",
+ "y": "330",
+ "width": "400",
+ "height": "30",
+ "backcolor": "#FFFFFF",
+ "hTextAlign": "Left",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 264,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelNames', height: 30 pixels, splitType: Stretch. Contains 1 elements: 1x textField. Visible text samples: ${\"Sheet data\"}",
+ "raw_xml": "\n\t\t\n\t\t\t\"Sheet data\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelNames' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Sheet data\"}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'ExcelXlsDataAdapterReport'. Page size: 595 x 842 portrait. Contains 5 standard bands with content: title, pageHeader, detail, pageFooter, lastPageFooter. Defines 6 fields: id, name, address, city, state, date. Defines 3 parameters: ReportTitle, DataFile, IncludedStates. Defines 1 variables: CityNumber. Defines 1 groups: CityGroup. Data source type: DataAdapter. Source: excel/data/ExcelXlsDataAdapter.jrdax.",
+ "raw_xml": "",
+ "context": "Report 'ExcelXlsDataAdapterReport' overall structure overview",
+ "metadata": {
+ "report_name": "ExcelXlsDataAdapterReport",
+ "bands": [
+ "title",
+ "pageHeader",
+ "detail",
+ "pageFooter",
+ "lastPageFooter"
+ ],
+ "field_count": 6,
+ "parameter_count": 3,
+ "variable_count": 1,
+ "group_count": 1,
+ "chart_count": 0,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "DataAdapter",
+ "source": "excel/data/ExcelXlsDataAdapter.jrdax",
+ "query_language": null,
+ "properties": {
+ "net.sf.jasperreports.data.adapter": "data/ExcelXlsDataAdapter.jrdax",
+ "com.jaspersoft.studio.data.defaultdataadapter": "excel/data/ExcelXlsDataAdapter.jrdax"
+ }
+ },
+ "attributes": {
+ "name": "ExcelXlsDataAdapterReport",
+ "language": "java",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "columnWidth": "515",
+ "leftMargin": "40",
+ "rightMargin": "40",
+ "topMargin": "50",
+ "bottomMargin": "50",
+ "uuid": "623644de-c1a7-4f9b-a0b8-6cd49534177b"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'ExcelXlsDataAdapterReport'. Data adapter: data/ExcelXlsDataAdapter.jrdax. Data adapter: excel/data/ExcelXlsDataAdapter.jrdax.",
+ "raw_xml": "\n",
+ "context": "Report 'ExcelXlsDataAdapterReport' data source configuration",
+ "metadata": {
+ "properties": {
+ "net.sf.jasperreports.data.adapter": "data/ExcelXlsDataAdapter.jrdax",
+ "com.jaspersoft.studio.data.defaultdataadapter": "excel/data/ExcelXlsDataAdapter.jrdax"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "parameters",
+ "human_description": "These are all parameter definitions for report 'ExcelXlsDataAdapterReport', total 3 parameters. Parameters: ReportTitle(java.lang.String), DataFile(java.lang.String), IncludedStates(java.util.Set).",
+ "raw_xml": "\n\t\t\"Address Report\"\n\t\n\t\n\n\t\t\"Excel data adapter for XLS data source\"\n\t\n\t\n\n\t\tnew HashSet(Arrays.asList(new String[] { \"Active\", \"Trial\"}))\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' parameter definitions",
+ "metadata": {
+ "parameter_names": [
+ "ReportTitle",
+ "DataFile",
+ "IncludedStates"
+ ],
+ "parameter_types": {
+ "ReportTitle": "java.lang.String",
+ "DataFile": "java.lang.String",
+ "IncludedStates": "java.util.Set"
+ },
+ "default_values": {
+ "ReportTitle": "\"Address Report\"",
+ "DataFile": "\"Excel data adapter for XLS data source\"",
+ "IncludedStates": "new HashSet(Arrays.asList(new String[] { \"Active\", \"Trial\"}))"
+ },
+ "count": 3
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsDataAdapterReport': id, type: java.lang.Integer",
+ "raw_xml": "\n\t\tid\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' field 'id'",
+ "metadata": {
+ "field_name": "id",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsDataAdapterReport': name, type: java.lang.String",
+ "raw_xml": "\n\t\tname\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' field 'name'",
+ "metadata": {
+ "field_name": "name",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsDataAdapterReport': address, type: java.lang.String",
+ "raw_xml": "\n\t\tstreet address\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' field 'address'",
+ "metadata": {
+ "field_name": "address",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 6,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsDataAdapterReport': city, type: java.lang.String",
+ "raw_xml": "\n\t\tcity\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' field 'city'",
+ "metadata": {
+ "field_name": "city",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsDataAdapterReport': state, type: java.lang.String",
+ "raw_xml": "\n\t\tstate\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' field 'state'",
+ "metadata": {
+ "field_name": "state",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 8,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsDataAdapterReport': date, type: java.util.Date",
+ "raw_xml": "\n\t\tdate\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' field 'date'",
+ "metadata": {
+ "field_name": "date",
+ "field_class": "java.util.Date",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "sortFields",
+ "human_description": "These are sort field definitions for report 'ExcelXlsDataAdapterReport', total 2 fields. Sorts: city (Descending), name (Ascending).",
+ "raw_xml": "\n\t\n\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' sort field definitions",
+ "metadata": {
+ "sortFields": [
+ {
+ "name": "city",
+ "order": "Descending"
+ },
+ {
+ "name": "name",
+ "order": "Ascending"
+ }
+ ],
+ "count": 2
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "filterExpression",
+ "human_description": "This is the filter expression for report 'ExcelXlsDataAdapterReport': $P{IncludedStates}.contains($F{state})",
+ "raw_xml": "$P{IncludedStates}.contains($F{state})\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' filter expression",
+ "metadata": {
+ "filter_expression": "$P{IncludedStates}.contains($F{state})"
+ }
+ },
+ {
+ "chunk_id": 11,
+ "chunk_type": "variables_report",
+ "human_description": "These are variable definitions for report 'ExcelXlsDataAdapterReport' (resetType=Report), total 1 variables. Variables: CityNumber(java.lang.Integer, Count).",
+ "raw_xml": "\n\t\tBoolean.TRUE\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' variable definitions (Report level reset)",
+ "metadata": {
+ "variable_names": [
+ "CityNumber"
+ ],
+ "variable_types": {
+ "CityNumber": "java.lang.Integer"
+ },
+ "variable_calculations": {
+ "CityNumber": "Count"
+ },
+ "reset_type": "Report",
+ "expressions": {
+ "CityNumber": {
+ "type": "expression",
+ "value": "Boolean.TRUE"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 12,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'ExcelXlsDataAdapterReport', total 3 styles. Styles: Sans_Normal, Sans_Bold, Sans_Italic. Default style: Sans_Normal.",
+ "raw_xml": "\n\t\n\n\t\n\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' style definitions",
+ "metadata": {
+ "style_names": [
+ "Sans_Normal",
+ "Sans_Bold",
+ "Sans_Italic"
+ ],
+ "default_style": "Sans_Normal",
+ "has_conditional_styles": false,
+ "count": 3
+ }
+ },
+ {
+ "chunk_id": 13,
+ "chunk_type": "group",
+ "human_description": "This is group 'CityGroup' definition for report 'ExcelXlsDataAdapterReport'. Group expression: $F{city}. Has groupHeader: Yes, has groupFooter: Yes. Min height: 60, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t$F{city}\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\" \" + String.valueOf($V{CityNumber}) + \". \" + String.valueOf($F{city})\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\tCount :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{CityGroup_COUNT}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' group 'CityGroup'",
+ "metadata": {
+ "group_name": "CityGroup",
+ "expression": "$F{city}",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "60",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'ExcelXlsQeDataAdapterReport'. Page size: 595 x 842 portrait. Contains 5 standard bands with content: title, pageHeader, detail, pageFooter, lastPageFooter. Defines 6 fields: id, name, address, city, state, date. Defines 3 parameters: ReportTitle, DataFile, IncludedStates. Defines 1 variables: CityNumber. Defines 1 groups: CityGroup. Data source type: DataAdapter. Source: data/ExcelXlsQeDataAdapter.jrdax.",
+ "raw_xml": "",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' overall structure overview",
+ "metadata": {
+ "report_name": "ExcelXlsQeDataAdapterReport",
+ "bands": [
+ "title",
+ "pageHeader",
+ "detail",
+ "pageFooter",
+ "lastPageFooter"
+ ],
+ "field_count": 6,
+ "parameter_count": 3,
+ "variable_count": 1,
+ "group_count": 1,
+ "chart_count": 0,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "DataAdapter",
+ "source": "data/ExcelXlsQeDataAdapter.jrdax",
+ "query_language": null,
+ "properties": {
+ "net.sf.jasperreports.data.adapter": "data/ExcelXlsQeDataAdapter.jrdax",
+ "net.sf.jasperreports.xls.column.names": "city,id,name,address,state,date",
+ "net.sf.jasperreports.xls.column.indexes": "0,2,3,4,5,6"
+ }
+ },
+ "attributes": {
+ "name": "ExcelXlsQeDataAdapterReport",
+ "language": "java",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "columnWidth": "515",
+ "leftMargin": "40",
+ "rightMargin": "40",
+ "topMargin": "50",
+ "bottomMargin": "50",
+ "uuid": "623644de-c1a7-4f9b-a0b8-6cd49534177b"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'ExcelXlsQeDataAdapterReport'. Data adapter: data/ExcelXlsQeDataAdapter.jrdax.",
+ "raw_xml": "",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' data source configuration",
+ "metadata": {
+ "properties": {
+ "net.sf.jasperreports.data.adapter": "data/ExcelXlsQeDataAdapter.jrdax"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "query",
+ "human_description": "This is the data query for report 'ExcelXlsQeDataAdapterReport'. Language: XLS. Query: ",
+ "raw_xml": "\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' data query",
+ "metadata": {
+ "query_language": "xls",
+ "full_sql": ""
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "parameters",
+ "human_description": "These are all parameter definitions for report 'ExcelXlsQeDataAdapterReport', total 3 parameters. Parameters: ReportTitle(java.lang.String), DataFile(java.lang.String), IncludedStates(java.util.Set).",
+ "raw_xml": "\n\t\t\"Address Report\"\n\t\n\t\n\n\t\t\"XLS query executer mode for Excel data adapter\"\n\t\n\t\n\n\t\tnew HashSet(Arrays.asList(new String[] { \"Active\", \"Trial\"}))\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' parameter definitions",
+ "metadata": {
+ "parameter_names": [
+ "ReportTitle",
+ "DataFile",
+ "IncludedStates"
+ ],
+ "parameter_types": {
+ "ReportTitle": "java.lang.String",
+ "DataFile": "java.lang.String",
+ "IncludedStates": "java.util.Set"
+ },
+ "default_values": {
+ "ReportTitle": "\"Address Report\"",
+ "DataFile": "\"XLS query executer mode for Excel data adapter\"",
+ "IncludedStates": "new HashSet(Arrays.asList(new String[] { \"Active\", \"Trial\"}))"
+ },
+ "count": 3
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsQeDataAdapterReport': id, type: java.lang.Integer",
+ "raw_xml": "\n\t\tid\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' field 'id'",
+ "metadata": {
+ "field_name": "id",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsQeDataAdapterReport': name, type: java.lang.String",
+ "raw_xml": "\n\t\tname\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' field 'name'",
+ "metadata": {
+ "field_name": "name",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 6,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsQeDataAdapterReport': address, type: java.lang.String",
+ "raw_xml": "\n\t\tstreet address\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' field 'address'",
+ "metadata": {
+ "field_name": "address",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsQeDataAdapterReport': city, type: java.lang.String",
+ "raw_xml": "\n\t\tcity\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' field 'city'",
+ "metadata": {
+ "field_name": "city",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 8,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsQeDataAdapterReport': state, type: java.lang.String",
+ "raw_xml": "\n\t\tstate\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' field 'state'",
+ "metadata": {
+ "field_name": "state",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsQeDataAdapterReport': date, type: java.util.Date",
+ "raw_xml": "\n\t\tdate\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' field 'date'",
+ "metadata": {
+ "field_name": "date",
+ "field_class": "java.util.Date",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "sortFields",
+ "human_description": "These are sort field definitions for report 'ExcelXlsQeDataAdapterReport', total 2 fields. Sorts: city (Descending), name (Ascending).",
+ "raw_xml": "\n\t\n\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' sort field definitions",
+ "metadata": {
+ "sortFields": [
+ {
+ "name": "city",
+ "order": "Descending"
+ },
+ {
+ "name": "name",
+ "order": "Ascending"
+ }
+ ],
+ "count": 2
+ }
+ },
+ {
+ "chunk_id": 11,
+ "chunk_type": "filterExpression",
+ "human_description": "This is the filter expression for report 'ExcelXlsQeDataAdapterReport': $P{IncludedStates}.contains($F{state})",
+ "raw_xml": "$P{IncludedStates}.contains($F{state})\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' filter expression",
+ "metadata": {
+ "filter_expression": "$P{IncludedStates}.contains($F{state})"
+ }
+ },
+ {
+ "chunk_id": 12,
+ "chunk_type": "variables_report",
+ "human_description": "These are variable definitions for report 'ExcelXlsQeDataAdapterReport' (resetType=Report), total 1 variables. Variables: CityNumber(java.lang.Integer, Count).",
+ "raw_xml": "\n\t\tBoolean.TRUE\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' variable definitions (Report level reset)",
+ "metadata": {
+ "variable_names": [
+ "CityNumber"
+ ],
+ "variable_types": {
+ "CityNumber": "java.lang.Integer"
+ },
+ "variable_calculations": {
+ "CityNumber": "Count"
+ },
+ "reset_type": "Report",
+ "expressions": {
+ "CityNumber": {
+ "type": "expression",
+ "value": "Boolean.TRUE"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 13,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'ExcelXlsQeDataAdapterReport', total 3 styles. Styles: Sans_Normal, Sans_Bold, Sans_Italic. Default style: Sans_Normal.",
+ "raw_xml": "\n\t\n\n\t\n\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' style definitions",
+ "metadata": {
+ "style_names": [
+ "Sans_Normal",
+ "Sans_Bold",
+ "Sans_Italic"
+ ],
+ "default_style": "Sans_Normal",
+ "has_conditional_styles": false,
+ "count": 3
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "group",
+ "human_description": "This is group 'CityGroup' definition for report 'ExcelXlsQeDataAdapterReport'. Group expression: $F{city}. Has groupHeader: Yes, has groupFooter: Yes. Min height: 60, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t$F{city}\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\" \" + String.valueOf($V{CityNumber}) + \". \" + String.valueOf($F{city})\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\tCount :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{CityGroup_COUNT}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' group 'CityGroup'",
+ "metadata": {
+ "group_name": "CityGroup",
+ "expression": "$F{city}",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "60",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsQeDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsQeDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsQeDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsQeDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsQeDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsQeDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsQeDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsQeDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsQeDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsQeDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsQeDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsQeDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsQeDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsQeDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsQeDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsQeDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsQeDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsQeDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsQeDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsQeDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsQeDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsQeDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsQeDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsQeDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsQeDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsQeDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsQeDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsQeDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsQeDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsQeDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsQeDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsQeDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsQeDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsQeDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsQeDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsQeDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsQeDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsQeDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsQeDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsQeDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsQeDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsQeDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsQeDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsQeDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsQeDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsQeDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsQeDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsQeDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsQeDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsQeDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsQeDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'ExcelXlsxDataAdapterReport'. Page size: 595 x 842 portrait. Contains 5 standard bands with content: title, pageHeader, detail, pageFooter, lastPageFooter. Defines 6 fields: id, name, address, city, state, date. Defines 3 parameters: ReportTitle, DataFile, IncludedStates. Defines 1 variables: CityNumber. Defines 1 groups: CityGroup. Data source type: DataAdapter. Source: data/ExcelXlsxDataAdapter.jrdax.",
+ "raw_xml": "",
+ "context": "Report 'ExcelXlsxDataAdapterReport' overall structure overview",
+ "metadata": {
+ "report_name": "ExcelXlsxDataAdapterReport",
+ "bands": [
+ "title",
+ "pageHeader",
+ "detail",
+ "pageFooter",
+ "lastPageFooter"
+ ],
+ "field_count": 6,
+ "parameter_count": 3,
+ "variable_count": 1,
+ "group_count": 1,
+ "chart_count": 0,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "DataAdapter",
+ "source": "data/ExcelXlsxDataAdapter.jrdax",
+ "query_language": null,
+ "properties": {
+ "net.sf.jasperreports.data.adapter": "data/ExcelXlsxDataAdapter.jrdax"
+ }
+ },
+ "attributes": {
+ "name": "ExcelXlsxDataAdapterReport",
+ "language": "java",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "columnWidth": "515",
+ "leftMargin": "40",
+ "rightMargin": "40",
+ "topMargin": "50",
+ "bottomMargin": "50",
+ "uuid": "623644de-c1a7-4f9b-a0b8-6cd49534177b"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'ExcelXlsxDataAdapterReport'. Data adapter: data/ExcelXlsxDataAdapter.jrdax.",
+ "raw_xml": "",
+ "context": "Report 'ExcelXlsxDataAdapterReport' data source configuration",
+ "metadata": {
+ "properties": {
+ "net.sf.jasperreports.data.adapter": "data/ExcelXlsxDataAdapter.jrdax"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "parameters",
+ "human_description": "These are all parameter definitions for report 'ExcelXlsxDataAdapterReport', total 3 parameters. Parameters: ReportTitle(java.lang.String), DataFile(java.lang.String), IncludedStates(java.util.Set).",
+ "raw_xml": "\n\t\t\"Address Report\"\n\t\n\t\n\n\t\t\"Excel data adapter for XLSX data source\"\n\t\n\t\n\n\t\tnew HashSet(Arrays.asList(new String[] { \"Active\", \"Trial\"}))\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' parameter definitions",
+ "metadata": {
+ "parameter_names": [
+ "ReportTitle",
+ "DataFile",
+ "IncludedStates"
+ ],
+ "parameter_types": {
+ "ReportTitle": "java.lang.String",
+ "DataFile": "java.lang.String",
+ "IncludedStates": "java.util.Set"
+ },
+ "default_values": {
+ "ReportTitle": "\"Address Report\"",
+ "DataFile": "\"Excel data adapter for XLSX data source\"",
+ "IncludedStates": "new HashSet(Arrays.asList(new String[] { \"Active\", \"Trial\"}))"
+ },
+ "count": 3
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsxDataAdapterReport': id, type: java.lang.Integer",
+ "raw_xml": "\n\t\tid\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' field 'id'",
+ "metadata": {
+ "field_name": "id",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsxDataAdapterReport': name, type: java.lang.String",
+ "raw_xml": "\n\t\tname\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' field 'name'",
+ "metadata": {
+ "field_name": "name",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsxDataAdapterReport': address, type: java.lang.String",
+ "raw_xml": "\n\t\tstreet address\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' field 'address'",
+ "metadata": {
+ "field_name": "address",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 6,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsxDataAdapterReport': city, type: java.lang.String",
+ "raw_xml": "\n\t\tcity\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' field 'city'",
+ "metadata": {
+ "field_name": "city",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsxDataAdapterReport': state, type: java.lang.String",
+ "raw_xml": "\n\t\tstate\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' field 'state'",
+ "metadata": {
+ "field_name": "state",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 8,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsxDataAdapterReport': date, type: java.util.Date",
+ "raw_xml": "\n\t\tdate\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' field 'date'",
+ "metadata": {
+ "field_name": "date",
+ "field_class": "java.util.Date",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "sortFields",
+ "human_description": "These are sort field definitions for report 'ExcelXlsxDataAdapterReport', total 2 fields. Sorts: city (Descending), name (Ascending).",
+ "raw_xml": "\n\t\n\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' sort field definitions",
+ "metadata": {
+ "sortFields": [
+ {
+ "name": "city",
+ "order": "Descending"
+ },
+ {
+ "name": "name",
+ "order": "Ascending"
+ }
+ ],
+ "count": 2
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "filterExpression",
+ "human_description": "This is the filter expression for report 'ExcelXlsxDataAdapterReport': $P{IncludedStates}.contains($F{state})",
+ "raw_xml": "$P{IncludedStates}.contains($F{state})\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' filter expression",
+ "metadata": {
+ "filter_expression": "$P{IncludedStates}.contains($F{state})"
+ }
+ },
+ {
+ "chunk_id": 11,
+ "chunk_type": "variables_report",
+ "human_description": "These are variable definitions for report 'ExcelXlsxDataAdapterReport' (resetType=Report), total 1 variables. Variables: CityNumber(java.lang.Integer, Count).",
+ "raw_xml": "\n\t\tBoolean.TRUE\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' variable definitions (Report level reset)",
+ "metadata": {
+ "variable_names": [
+ "CityNumber"
+ ],
+ "variable_types": {
+ "CityNumber": "java.lang.Integer"
+ },
+ "variable_calculations": {
+ "CityNumber": "Count"
+ },
+ "reset_type": "Report",
+ "expressions": {
+ "CityNumber": {
+ "type": "expression",
+ "value": "Boolean.TRUE"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 12,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'ExcelXlsxDataAdapterReport', total 3 styles. Styles: Sans_Normal, Sans_Bold, Sans_Italic. Default style: Sans_Normal.",
+ "raw_xml": "\n\t\n\n\t\n\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' style definitions",
+ "metadata": {
+ "style_names": [
+ "Sans_Normal",
+ "Sans_Bold",
+ "Sans_Italic"
+ ],
+ "default_style": "Sans_Normal",
+ "has_conditional_styles": false,
+ "count": 3
+ }
+ },
+ {
+ "chunk_id": 13,
+ "chunk_type": "group",
+ "human_description": "This is group 'CityGroup' definition for report 'ExcelXlsxDataAdapterReport'. Group expression: $F{city}. Has groupHeader: Yes, has groupFooter: Yes. Min height: 60, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t$F{city}\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\" \" + String.valueOf($V{CityNumber}) + \". \" + String.valueOf($F{city})\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\tCount :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{CityGroup_COUNT}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' group 'CityGroup'",
+ "metadata": {
+ "group_name": "CityGroup",
+ "expression": "$F{city}",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "60",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsxDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsxDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsxDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsxDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsxDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsxDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsxDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsxDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsxDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsxDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsxDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsxDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsxDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsxDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsxDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsxDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsxDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsxDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsxDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsxDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsxDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsxDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsxDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsxDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsxDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsxDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsxDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsxDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsxDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsxDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsxDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsxDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsxDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsxDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsxDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsxDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsxDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsxDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsxDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsxDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsxDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsxDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsxDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsxDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsxDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsxDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsxDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsxDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsxDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsxDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsxDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsxDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsxDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsxDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsxDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsxDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsxDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsxDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsxDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsxDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'ExcelXlsxQeDataAdapterReport'. Page size: 595 x 842 portrait. Contains 5 standard bands with content: title, pageHeader, detail, pageFooter, lastPageFooter. Defines 6 fields: id, name, address, city, state, date. Defines 3 parameters: ReportTitle, DataFile, IncludedStates. Defines 1 variables: CityNumber. Defines 1 groups: CityGroup. Data source type: DataAdapter. Source: data/ExcelXlsxQeDataAdapter.jrdax.",
+ "raw_xml": "",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' overall structure overview",
+ "metadata": {
+ "report_name": "ExcelXlsxQeDataAdapterReport",
+ "bands": [
+ "title",
+ "pageHeader",
+ "detail",
+ "pageFooter",
+ "lastPageFooter"
+ ],
+ "field_count": 6,
+ "parameter_count": 3,
+ "variable_count": 1,
+ "group_count": 1,
+ "chart_count": 0,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "DataAdapter",
+ "source": "data/ExcelXlsxQeDataAdapter.jrdax",
+ "query_language": null,
+ "properties": {
+ "net.sf.jasperreports.data.adapter": "data/ExcelXlsxQeDataAdapter.jrdax",
+ "net.sf.jasperreports.xlsx.column.names": "city,id,name,address,state,date",
+ "net.sf.jasperreports.xlsx.column.indexes": "0,2,3,4,5,6"
+ }
+ },
+ "attributes": {
+ "name": "ExcelXlsxQeDataAdapterReport",
+ "language": "java",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "columnWidth": "515",
+ "leftMargin": "40",
+ "rightMargin": "40",
+ "topMargin": "50",
+ "bottomMargin": "50",
+ "uuid": "623644de-c1a7-4f9b-a0b8-6cd49534177b"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'ExcelXlsxQeDataAdapterReport'. Data adapter: data/ExcelXlsxQeDataAdapter.jrdax.",
+ "raw_xml": "",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' data source configuration",
+ "metadata": {
+ "properties": {
+ "net.sf.jasperreports.data.adapter": "data/ExcelXlsxQeDataAdapter.jrdax"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "query",
+ "human_description": "This is the data query for report 'ExcelXlsxQeDataAdapterReport'. Language: XLSX. Query: ",
+ "raw_xml": "\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' data query",
+ "metadata": {
+ "query_language": "xlsx",
+ "full_sql": ""
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "parameters",
+ "human_description": "These are all parameter definitions for report 'ExcelXlsxQeDataAdapterReport', total 3 parameters. Parameters: ReportTitle(java.lang.String), DataFile(java.lang.String), IncludedStates(java.util.Set).",
+ "raw_xml": "\n\t\t\"Address Report\"\n\t\n\t\n\n\t\t\"XLSX query executer mode for Excel data adapter\"\n\t\n\t\n\n\t\tnew HashSet(Arrays.asList(new String[] { \"Active\", \"Trial\"}))\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' parameter definitions",
+ "metadata": {
+ "parameter_names": [
+ "ReportTitle",
+ "DataFile",
+ "IncludedStates"
+ ],
+ "parameter_types": {
+ "ReportTitle": "java.lang.String",
+ "DataFile": "java.lang.String",
+ "IncludedStates": "java.util.Set"
+ },
+ "default_values": {
+ "ReportTitle": "\"Address Report\"",
+ "DataFile": "\"XLSX query executer mode for Excel data adapter\"",
+ "IncludedStates": "new HashSet(Arrays.asList(new String[] { \"Active\", \"Trial\"}))"
+ },
+ "count": 3
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsxQeDataAdapterReport': id, type: java.lang.Integer",
+ "raw_xml": "\n\t\tid\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' field 'id'",
+ "metadata": {
+ "field_name": "id",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsxQeDataAdapterReport': name, type: java.lang.String",
+ "raw_xml": "\n\t\tname\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' field 'name'",
+ "metadata": {
+ "field_name": "name",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 6,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsxQeDataAdapterReport': address, type: java.lang.String",
+ "raw_xml": "\n\t\tstreet address\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' field 'address'",
+ "metadata": {
+ "field_name": "address",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsxQeDataAdapterReport': city, type: java.lang.String",
+ "raw_xml": "\n\t\tcity\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' field 'city'",
+ "metadata": {
+ "field_name": "city",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 8,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsxQeDataAdapterReport': state, type: java.lang.String",
+ "raw_xml": "\n\t\tstate\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' field 'state'",
+ "metadata": {
+ "field_name": "state",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'ExcelXlsxQeDataAdapterReport': date, type: java.util.Date",
+ "raw_xml": "\n\t\tdate\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' field 'date'",
+ "metadata": {
+ "field_name": "date",
+ "field_class": "java.util.Date",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "sortFields",
+ "human_description": "These are sort field definitions for report 'ExcelXlsxQeDataAdapterReport', total 2 fields. Sorts: city (Descending), name (Ascending).",
+ "raw_xml": "\n\t\n\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' sort field definitions",
+ "metadata": {
+ "sortFields": [
+ {
+ "name": "city",
+ "order": "Descending"
+ },
+ {
+ "name": "name",
+ "order": "Ascending"
+ }
+ ],
+ "count": 2
+ }
+ },
+ {
+ "chunk_id": 11,
+ "chunk_type": "filterExpression",
+ "human_description": "This is the filter expression for report 'ExcelXlsxQeDataAdapterReport': $P{IncludedStates}.contains($F{state})",
+ "raw_xml": "$P{IncludedStates}.contains($F{state})\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' filter expression",
+ "metadata": {
+ "filter_expression": "$P{IncludedStates}.contains($F{state})"
+ }
+ },
+ {
+ "chunk_id": 12,
+ "chunk_type": "variables_report",
+ "human_description": "These are variable definitions for report 'ExcelXlsxQeDataAdapterReport' (resetType=Report), total 1 variables. Variables: CityNumber(java.lang.Integer, Count).",
+ "raw_xml": "\n\t\tBoolean.TRUE\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' variable definitions (Report level reset)",
+ "metadata": {
+ "variable_names": [
+ "CityNumber"
+ ],
+ "variable_types": {
+ "CityNumber": "java.lang.Integer"
+ },
+ "variable_calculations": {
+ "CityNumber": "Count"
+ },
+ "reset_type": "Report",
+ "expressions": {
+ "CityNumber": {
+ "type": "expression",
+ "value": "Boolean.TRUE"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 13,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'ExcelXlsxQeDataAdapterReport', total 3 styles. Styles: Sans_Normal, Sans_Bold, Sans_Italic. Default style: Sans_Normal.",
+ "raw_xml": "\n\t\n\n\t\n\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' style definitions",
+ "metadata": {
+ "style_names": [
+ "Sans_Normal",
+ "Sans_Bold",
+ "Sans_Italic"
+ ],
+ "default_style": "Sans_Normal",
+ "has_conditional_styles": false,
+ "count": 3
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "group",
+ "human_description": "This is group 'CityGroup' definition for report 'ExcelXlsxQeDataAdapterReport'. Group expression: $F{city}. Has groupHeader: Yes, has groupFooter: Yes. Min height: 60, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t$F{city}\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\" \" + String.valueOf($V{CityNumber}) + \". \" + String.valueOf($F{city})\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\tCount :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{CityGroup_COUNT}\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' group 'CityGroup'",
+ "metadata": {
+ "group_name": "CityGroup",
+ "expression": "$F{city}",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "60",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsxQeDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsxQeDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsxQeDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsxQeDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsxQeDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsxQeDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsxQeDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsxQeDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsxQeDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsxQeDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsxQeDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsxQeDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsxQeDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsxQeDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsxQeDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsxQeDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsxQeDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsxQeDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsxQeDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsxQeDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsxQeDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsxQeDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsxQeDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsxQeDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsxQeDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsxQeDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsxQeDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsxQeDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsxQeDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsxQeDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsxQeDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsxQeDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsxQeDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsxQeDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsxQeDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsxQeDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsxQeDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsxQeDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsxQeDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsxQeDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsxQeDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsxQeDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsxQeDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsxQeDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsxQeDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'ExcelXlsxQeDataAdapterReport', height: 70 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${$P{ReportTitle}}; ${$P{DataFile}}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t$P{DataFile}\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "70",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "${$P{DataFile}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_detail",
+ "human_description": "This is the 'detail' band of report 'ExcelXlsxQeDataAdapterReport', height: 0 pixels, splitType: Stretch. Contains 0 elements: . Contains 1 nested bands: nested band (h=15).",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$F{id}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{date}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{name}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{address}\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "band_height": "0",
+ "split_type": "Stretch",
+ "element_counts": {},
+ "element_count": 0,
+ "nested_band_count": 1,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'ExcelXlsxQeDataAdapterReport', height: 40 pixels, splitType: Stretch. Contains 3 elements: 1x line, 2x textField. Visible text samples: ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "40",
+ "split_type": "Stretch",
+ "element_counts": {
+ "line": 1,
+ "textField": 2
+ },
+ "element_count": 3,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_lastPageFooter",
+ "human_description": "This is the 'lastPageFooter' band of report 'ExcelXlsxQeDataAdapterReport', height: 60 pixels, splitType: Stretch. Contains 4 elements: 3x textField, 1x line. Visible text samples: ${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}; ${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}; ${\" \" + String.valueOf($V{PAGE_NUMBER})}",
+ "raw_xml": "\n\t\t\n\t\t\t\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"\n\t\t\n\t\t\n\t\t\n\t\t\t\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"\n\t\t\n\t\t\n\t\t\t\" \" + String.valueOf($V{PAGE_NUMBER})\n\t\t\n\t\n",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' lastPageFooter band",
+ "metadata": {
+ "band_name": "lastPageFooter",
+ "band_height": "60",
+ "split_type": "Stretch",
+ "element_counts": {
+ "textField": 3,
+ "line": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${\"There were \" + \n\t\t\t\t\tString.valueOf($V{REPORT_COUNT}) + \n\t\t\t\t\t\" address records on this report.\"}",
+ "${\"Page \" + String.valueOf($V{PAGE_NUMBER}) + \" of\"}",
+ "${\" \" + String.valueOf($V{PAGE_NUMBER})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'ExcelXlsxQeDataAdapterReport', height: 20 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: ID; Date; Name ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tID\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tName\n\t\t\n\t\t\n\t\t\tStreet\n\t\t\n\t\n\t",
+ "context": "Report 'ExcelXlsxQeDataAdapterReport' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "20",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "ID",
+ "Date",
+ "Name",
+ "Street"
+ ]
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'FirstJasper'. Page size: 595 x 842 portrait. Contains 7 standard bands with content: title, pageHeader, columnHeader, detail, columnFooter, pageFooter, summary. Defines 14 fields: ShippedDate, ShipCountry, RequiredDate, CustomerID, OrderID, ShipName, ShipVia, ShipPostalCode, OrderDate, ShipCity, ShipAddress, EmployeeID, ShipRegion, Freight. Defines 3 parameters: ReportTitle, MaxOrderID, SummaryImage. Defines 9 variables: FirstLetter, FreightSumFirstLetterGroup, FreightSumCountryGroup, FreightSumColumn, FreightSumPage, FreightSumReport, DateHighestCountryGroup, RegionCountCountryGroup, FirstLetterStartPageNumber. Defines 3 groups: FirstLetterGroup, CountryGroup, BreakGroup. Data source type: JDBC/SQL. Source: Sample DB. Query language: sql.",
+ "raw_xml": "",
+ "context": "Report 'FirstJasper' overall structure overview",
+ "metadata": {
+ "report_name": "FirstJasper",
+ "bands": [
+ "title",
+ "pageHeader",
+ "columnHeader",
+ "detail",
+ "columnFooter",
+ "pageFooter",
+ "summary"
+ ],
+ "field_count": 14,
+ "parameter_count": 3,
+ "variable_count": 9,
+ "group_count": 3,
+ "chart_count": 0,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "JDBC/SQL",
+ "source": "Sample DB",
+ "query_language": "sql",
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "Sample DB"
+ }
+ },
+ "attributes": {
+ "name": "FirstJasper",
+ "language": "java",
+ "columnCount": "2",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "columnWidth": "270",
+ "columnSpacing": "15",
+ "leftMargin": "20",
+ "rightMargin": "20",
+ "topMargin": "30",
+ "bottomMargin": "30",
+ "uuid": "b5f94ae6-fba6-4ec3-97dd-5108ffacbf96"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'FirstJasper'. Data adapter: Sample DB.",
+ "raw_xml": "",
+ "context": "Report 'FirstJasper' data source configuration",
+ "metadata": {
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "Sample DB"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "query",
+ "human_description": "This is the data query for report 'FirstJasper'. Language: SQL. Query: SELECT * FROM Orders WHERE OrderID <= $P{MaxOrderID} ORDER BY ShipCountry",
+ "raw_xml": "SELECT * FROM Orders WHERE OrderID <= $P{MaxOrderID} ORDER BY ShipCountry\n\t",
+ "context": "Report 'FirstJasper' data query",
+ "metadata": {
+ "query_language": "sql",
+ "full_sql": "SELECT * FROM Orders WHERE OrderID <= $P{MaxOrderID} ORDER BY ShipCountry"
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "parameters",
+ "human_description": "These are all parameter definitions for report 'FirstJasper', total 3 parameters. Parameters: ReportTitle(java.lang.String), MaxOrderID(java.lang.Integer), SummaryImage(java.awt.Image).",
+ "raw_xml": "\n\t\t\"The First Jasper Report Ever\"\n\t\n\t\n\n\t\t10500\n\t\n\t\n\n\t",
+ "context": "Report 'FirstJasper' parameter definitions",
+ "metadata": {
+ "parameter_names": [
+ "ReportTitle",
+ "MaxOrderID",
+ "SummaryImage"
+ ],
+ "parameter_types": {
+ "ReportTitle": "java.lang.String",
+ "MaxOrderID": "java.lang.Integer",
+ "SummaryImage": "java.awt.Image"
+ },
+ "default_values": {
+ "ReportTitle": "\"The First Jasper Report Ever\"",
+ "MaxOrderID": "10500"
+ },
+ "count": 3
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'FirstJasper': ShippedDate, type: java.sql.Timestamp",
+ "raw_xml": "\n\t",
+ "context": "Report 'FirstJasper' field 'ShippedDate'",
+ "metadata": {
+ "field_name": "ShippedDate",
+ "field_class": "java.sql.Timestamp",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'FirstJasper': ShipCountry, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'FirstJasper' field 'ShipCountry'",
+ "metadata": {
+ "field_name": "ShipCountry",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 6,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'FirstJasper': RequiredDate, type: java.sql.Timestamp",
+ "raw_xml": "\n\t",
+ "context": "Report 'FirstJasper' field 'RequiredDate'",
+ "metadata": {
+ "field_name": "RequiredDate",
+ "field_class": "java.sql.Timestamp",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'FirstJasper': CustomerID, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'FirstJasper' field 'CustomerID'",
+ "metadata": {
+ "field_name": "CustomerID",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 8,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'FirstJasper': OrderID, type: java.lang.Integer",
+ "raw_xml": "\n\t",
+ "context": "Report 'FirstJasper' field 'OrderID'",
+ "metadata": {
+ "field_name": "OrderID",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'FirstJasper': ShipName, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'FirstJasper' field 'ShipName'",
+ "metadata": {
+ "field_name": "ShipName",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'FirstJasper': ShipVia, type: java.lang.Integer",
+ "raw_xml": "\n\t",
+ "context": "Report 'FirstJasper' field 'ShipVia'",
+ "metadata": {
+ "field_name": "ShipVia",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 11,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'FirstJasper': ShipPostalCode, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'FirstJasper' field 'ShipPostalCode'",
+ "metadata": {
+ "field_name": "ShipPostalCode",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 12,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'FirstJasper': OrderDate, type: java.sql.Timestamp",
+ "raw_xml": "\n\t",
+ "context": "Report 'FirstJasper' field 'OrderDate'",
+ "metadata": {
+ "field_name": "OrderDate",
+ "field_class": "java.sql.Timestamp",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 13,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'FirstJasper': ShipCity, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'FirstJasper' field 'ShipCity'",
+ "metadata": {
+ "field_name": "ShipCity",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'FirstJasper': ShipAddress, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'FirstJasper' field 'ShipAddress'",
+ "metadata": {
+ "field_name": "ShipAddress",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'FirstJasper': EmployeeID, type: java.lang.Integer",
+ "raw_xml": "\n\t",
+ "context": "Report 'FirstJasper' field 'EmployeeID'",
+ "metadata": {
+ "field_name": "EmployeeID",
+ "field_class": "java.lang.Integer",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 16,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'FirstJasper': ShipRegion, type: java.lang.String",
+ "raw_xml": "\n\t",
+ "context": "Report 'FirstJasper' field 'ShipRegion'",
+ "metadata": {
+ "field_name": "ShipRegion",
+ "field_class": "java.lang.String",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 17,
+ "chunk_type": "field",
+ "human_description": "Field definition for report 'FirstJasper': Freight, type: java.lang.Double",
+ "raw_xml": "\n\t",
+ "context": "Report 'FirstJasper' field 'Freight'",
+ "metadata": {
+ "field_name": "Freight",
+ "field_class": "java.lang.Double",
+ "field_expression": null
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_none",
+ "human_description": "These are variable definitions for report 'FirstJasper' (resetType=None), total 1 variables. Variables: FirstLetter(java.lang.String, Nothing).",
+ "raw_xml": "\n\t\t$F{ShipCountry}.substring(0, 1).toUpperCase()\n\t\n\t",
+ "context": "Report 'FirstJasper' variable definitions (None level reset)",
+ "metadata": {
+ "variable_names": [
+ "FirstLetter"
+ ],
+ "variable_types": {
+ "FirstLetter": "java.lang.String"
+ },
+ "variable_calculations": {
+ "FirstLetter": "Nothing"
+ },
+ "reset_type": "None",
+ "expressions": {
+ "FirstLetter": {
+ "type": "expression",
+ "value": "$F{ShipCountry}.substring(0, 1).toUpperCase()"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_group",
+ "human_description": "These are variable definitions for report 'FirstJasper' (resetType=Group), total 5 variables. Variables: FreightSumFirstLetterGroup(java.lang.Double, Sum), FreightSumCountryGroup(java.lang.Double, Sum), DateHighestCountryGroup(java.sql.Timestamp, Highest), RegionCountCountryGroup(java.lang.Integer, Count), FirstLetterStartPageNumber(java.lang.Integer, Sum).",
+ "raw_xml": "\n\t\t$F{Freight}\n\t\n\t\n\n\t\t$F{Freight}\n\t\n\t\n\n\t\t$F{OrderDate}\n\t\n\t\n\n\t\t$F{ShipRegion}\n\t\n\t\n\n\t\t$V{FirstLetterGroup_COUNT} <= 1 ? $V{PAGE_NUMBER} : 0\n\t\n\t",
+ "context": "Report 'FirstJasper' variable definitions (Group level reset)",
+ "metadata": {
+ "variable_names": [
+ "FreightSumFirstLetterGroup",
+ "FreightSumCountryGroup",
+ "DateHighestCountryGroup",
+ "RegionCountCountryGroup",
+ "FirstLetterStartPageNumber"
+ ],
+ "variable_types": {
+ "FreightSumFirstLetterGroup": "java.lang.Double",
+ "FreightSumCountryGroup": "java.lang.Double",
+ "DateHighestCountryGroup": "java.sql.Timestamp",
+ "RegionCountCountryGroup": "java.lang.Integer",
+ "FirstLetterStartPageNumber": "java.lang.Integer"
+ },
+ "variable_calculations": {
+ "FreightSumFirstLetterGroup": "Sum",
+ "FreightSumCountryGroup": "Sum",
+ "DateHighestCountryGroup": "Highest",
+ "RegionCountCountryGroup": "Count",
+ "FirstLetterStartPageNumber": "Sum"
+ },
+ "reset_type": "Group",
+ "expressions": {
+ "FreightSumFirstLetterGroup": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ },
+ "FreightSumCountryGroup": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ },
+ "DateHighestCountryGroup": {
+ "type": "expression",
+ "value": "$F{OrderDate}"
+ },
+ "RegionCountCountryGroup": {
+ "type": "expression",
+ "value": "$F{ShipRegion}"
+ },
+ "FirstLetterStartPageNumber": {
+ "type": "expression",
+ "value": "$V{FirstLetterGroup_COUNT} <= 1 ? $V{PAGE_NUMBER} : 0"
+ }
+ },
+ "count": 5
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_column",
+ "human_description": "These are variable definitions for report 'FirstJasper' (resetType=Column), total 1 variables. Variables: FreightSumColumn(java.lang.Double, Sum).",
+ "raw_xml": "\n\t\t$F{Freight}\n\t\n\t",
+ "context": "Report 'FirstJasper' variable definitions (Column level reset)",
+ "metadata": {
+ "variable_names": [
+ "FreightSumColumn"
+ ],
+ "variable_types": {
+ "FreightSumColumn": "java.lang.Double"
+ },
+ "variable_calculations": {
+ "FreightSumColumn": "Sum"
+ },
+ "reset_type": "Column",
+ "expressions": {
+ "FreightSumColumn": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_page",
+ "human_description": "These are variable definitions for report 'FirstJasper' (resetType=Page), total 1 variables. Variables: FreightSumPage(java.lang.Double, Sum).",
+ "raw_xml": "\n\t\t$F{Freight}\n\t\n\t",
+ "context": "Report 'FirstJasper' variable definitions (Page level reset)",
+ "metadata": {
+ "variable_names": [
+ "FreightSumPage"
+ ],
+ "variable_types": {
+ "FreightSumPage": "java.lang.Double"
+ },
+ "variable_calculations": {
+ "FreightSumPage": "Sum"
+ },
+ "reset_type": "Page",
+ "expressions": {
+ "FreightSumPage": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "variables_report",
+ "human_description": "These are variable definitions for report 'FirstJasper' (resetType=Report), total 1 variables. Variables: FreightSumReport(java.lang.Double, Sum).",
+ "raw_xml": "\n\t\t$F{Freight}\n\t\n\t",
+ "context": "Report 'FirstJasper' variable definitions (Report level reset)",
+ "metadata": {
+ "variable_names": [
+ "FreightSumReport"
+ ],
+ "variable_types": {
+ "FreightSumReport": "java.lang.Double"
+ },
+ "variable_calculations": {
+ "FreightSumReport": "Sum"
+ },
+ "reset_type": "Report",
+ "expressions": {
+ "FreightSumReport": {
+ "type": "expression",
+ "value": "$F{Freight}"
+ }
+ },
+ "count": 1
+ }
+ },
+ {
+ "chunk_id": 23,
+ "chunk_type": "styles",
+ "human_description": "These are style definitions for report 'FirstJasper', total 6 styles. Styles: Sans_Normal, Sans_Bold, Sans_Italic, Serif_Normal, Serif_Bold, OrderIdStyle. Default style: Sans_Normal. Contains conditional styles.",
+ "raw_xml": "\n\t\n\n\t\n\n\t\n\n\t\n\n\t\n\n\t",
+ "context": "Report 'FirstJasper' style definitions",
+ "metadata": {
+ "style_names": [
+ "Sans_Normal",
+ "Sans_Bold",
+ "Sans_Italic",
+ "Serif_Normal",
+ "Serif_Bold",
+ "OrderIdStyle"
+ ],
+ "default_style": "Sans_Normal",
+ "has_conditional_styles": true,
+ "count": 6
+ }
+ },
+ {
+ "chunk_id": 24,
+ "chunk_type": "group",
+ "human_description": "This is group 'FirstLetterGroup' definition for report 'FirstJasper'. Group expression: $V{FirstLetter}. Has groupHeader: Yes, has groupFooter: Yes. Min height: 200, start new column: true, reprint header: true.",
+ "raw_xml": "\n\t\t$V{FirstLetter}\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\tCountries Starting With Letter :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FirstLetter}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{PAGE_NUMBER} - $V{FirstLetterStartPageNumber} + 1\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FirstLetterGroup_COUNT} == 0 ? 1 : ($V{PAGE_NUMBER} - $V{FirstLetterStartPageNumber} + 1)\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\"/\"\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tCount :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FirstLetterGroup_COUNT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tTotal :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FreightSumFirstLetterGroup}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tmsg(\"{0,number,0.00}%\", 100d * $V{FreightSumFirstLetterGroup} / $V{FreightSumReport})\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' group 'FirstLetterGroup'",
+ "metadata": {
+ "group_name": "FirstLetterGroup",
+ "expression": "$V{FirstLetter}",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "200",
+ "startNewColumn": "true",
+ "reprintHeaderOnEachPage": "true"
+ }
+ },
+ {
+ "chunk_id": 25,
+ "chunk_type": "group",
+ "human_description": "This is group 'CountryGroup' definition for report 'FirstJasper'. Group expression: $F{ShipCountry}. Has groupHeader: Yes, has groupFooter: Yes. Min height: 0, start new column: false, reprint header: true.",
+ "raw_xml": "\n\t\t$F{ShipCountry}\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$F{ShipCountry}\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{DateHighestCountryGroup}\n\t\t\t\t\t\"EEE, MMM d, yyyy\"\n\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t\tCount :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{CountryGroup_COUNT}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tTotal :\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t$V{FreightSumCountryGroup}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\tmsg(\"{0,number,0.00}%\", 100d * $V{FreightSumCountryGroup} / $V{FreightSumFirstLetterGroup})\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' group 'CountryGroup'",
+ "metadata": {
+ "group_name": "CountryGroup",
+ "expression": "$F{ShipCountry}",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "0",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "true"
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "group",
+ "human_description": "This is group 'BreakGroup' definition for report 'FirstJasper'. Group expression: $V{BreakGroup_COUNT} > 5. Has groupHeader: Yes, has groupFooter: Yes. Min height: 0, start new column: false, reprint header: false.",
+ "raw_xml": "\n\t\t$V{BreakGroup_COUNT} > 5\n\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' group 'BreakGroup'",
+ "metadata": {
+ "group_name": "BreakGroup",
+ "expression": "$V{BreakGroup_COUNT} > 5",
+ "has_header": true,
+ "has_footer": true,
+ "minHeightToStartNewPage": "0",
+ "startNewColumn": "false",
+ "reprintHeaderOnEachPage": "false"
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'FirstJasper', height: 100 pixels, splitType: Stretch. Contains 4 elements: 1x elementGroup, 2x textField, 1x staticText. Visible text samples: ${$P{ReportTitle}}; (c)2001-2023 by teodord; ${msg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})}",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\"jasperreports.png\"\n\t\t\t\t\"The JasperReports Logo\"\n\t\t\t\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t(c)2001-2023 by teodord\n\t\t\n\t\t\n\t\t\tmsg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "100",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "textField": 2,
+ "staticText": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "(c)2001-2023 by teodord",
+ "${msg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'FirstJasper', height: 11 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "nested_band",
+ "human_description": "'detail' band of report 'FirstJasper': nested band element, Height: 13.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$F{OrderID} % 10 == 0\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t$F{ShipCity}\n\t\t\t\t$F{ShipCity}\n\t\t\t\t$F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'FirstJasper' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "nested_height": "13",
+ "element_tag": "band"
+ }
+ },
+ {
+ "chunk_id": 28,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'FirstJasper', height: 65 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$P{SummaryImage}\n\t\t\t\n\t\t\t\n\t\t\t\tThat's All Folks! Hei_remind_me_to_put myself up for abduction. END!\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'FirstJasper' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "65",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 28,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'FirstJasper', height: 30 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tCount :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_COUNT}\n\t\t\t\n\t\t\t\n\t\t\t\tTotal :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{FreightSumPage}\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t/\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 28,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'FirstJasper', height: 11 pixels, splitType: Stretch. Contains 4 elements: 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 28,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'FirstJasper', height: 45 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tNorthwind Order List\n\t\t\t\n\t\t\t\n\t\t\t\t\"Max order ID is : \" + $P{MaxOrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "45",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 28,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'FirstJasper', height: 100 pixels, splitType: Stretch. Contains 4 elements: 1x elementGroup, 2x textField, 1x staticText. Visible text samples: ${$P{ReportTitle}}; (c)2001-2023 by teodord; ${msg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})}",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\"jasperreports.png\"\n\t\t\t\t\"The JasperReports Logo\"\n\t\t\t\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t(c)2001-2023 by teodord\n\t\t\n\t\t\n\t\t\tmsg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "100",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "textField": 2,
+ "staticText": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "(c)2001-2023 by teodord",
+ "${msg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 28,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'FirstJasper', height: 11 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 28,
+ "chunk_type": "nested_band",
+ "human_description": "'detail' band of report 'FirstJasper': nested band element, Height: 13.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$F{OrderID} % 10 == 0\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t$F{ShipCity}\n\t\t\t\t$F{ShipCity}\n\t\t\t\t$F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'FirstJasper' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "nested_height": "13",
+ "element_tag": "band"
+ }
+ },
+ {
+ "chunk_id": 29,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'FirstJasper', height: 65 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$P{SummaryImage}\n\t\t\t\n\t\t\t\n\t\t\t\tThat's All Folks! Hei_remind_me_to_put myself up for abduction. END!\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'FirstJasper' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "65",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 29,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'FirstJasper', height: 30 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tCount :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_COUNT}\n\t\t\t\n\t\t\t\n\t\t\t\tTotal :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{FreightSumPage}\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t/\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 29,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'FirstJasper', height: 11 pixels, splitType: Stretch. Contains 4 elements: 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 29,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'FirstJasper', height: 45 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tNorthwind Order List\n\t\t\t\n\t\t\t\n\t\t\t\t\"Max order ID is : \" + $P{MaxOrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "45",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 29,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'FirstJasper', height: 100 pixels, splitType: Stretch. Contains 4 elements: 1x elementGroup, 2x textField, 1x staticText. Visible text samples: ${$P{ReportTitle}}; (c)2001-2023 by teodord; ${msg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})}",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\"jasperreports.png\"\n\t\t\t\t\"The JasperReports Logo\"\n\t\t\t\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t(c)2001-2023 by teodord\n\t\t\n\t\t\n\t\t\tmsg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "100",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "textField": 2,
+ "staticText": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "(c)2001-2023 by teodord",
+ "${msg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 29,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'FirstJasper', height: 11 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 29,
+ "chunk_type": "nested_band",
+ "human_description": "'detail' band of report 'FirstJasper': nested band element, Height: 13.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$F{OrderID} % 10 == 0\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t$F{ShipCity}\n\t\t\t\t$F{ShipCity}\n\t\t\t\t$F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'FirstJasper' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "nested_height": "13",
+ "element_tag": "band"
+ }
+ },
+ {
+ "chunk_id": 30,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'FirstJasper', height: 65 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$P{SummaryImage}\n\t\t\t\n\t\t\t\n\t\t\t\tThat's All Folks! Hei_remind_me_to_put myself up for abduction. END!\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'FirstJasper' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "65",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 30,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'FirstJasper', height: 30 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tCount :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_COUNT}\n\t\t\t\n\t\t\t\n\t\t\t\tTotal :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{FreightSumPage}\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t/\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 30,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'FirstJasper', height: 11 pixels, splitType: Stretch. Contains 4 elements: 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 30,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'FirstJasper', height: 45 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tNorthwind Order List\n\t\t\t\n\t\t\t\n\t\t\t\t\"Max order ID is : \" + $P{MaxOrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "45",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 30,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'FirstJasper', height: 100 pixels, splitType: Stretch. Contains 4 elements: 1x elementGroup, 2x textField, 1x staticText. Visible text samples: ${$P{ReportTitle}}; (c)2001-2023 by teodord; ${msg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})}",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\"jasperreports.png\"\n\t\t\t\t\"The JasperReports Logo\"\n\t\t\t\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t(c)2001-2023 by teodord\n\t\t\n\t\t\n\t\t\tmsg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "100",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "textField": 2,
+ "staticText": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "(c)2001-2023 by teodord",
+ "${msg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 30,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'FirstJasper', height: 11 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 30,
+ "chunk_type": "nested_band",
+ "human_description": "'detail' band of report 'FirstJasper': nested band element, Height: 13.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$F{OrderID} % 10 == 0\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t$F{ShipCity}\n\t\t\t\t$F{ShipCity}\n\t\t\t\t$F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'FirstJasper' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "nested_height": "13",
+ "element_tag": "band"
+ }
+ },
+ {
+ "chunk_id": 31,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'FirstJasper', height: 65 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$P{SummaryImage}\n\t\t\t\n\t\t\t\n\t\t\t\tThat's All Folks! Hei_remind_me_to_put myself up for abduction. END!\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'FirstJasper' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "65",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 31,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'FirstJasper', height: 30 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tCount :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_COUNT}\n\t\t\t\n\t\t\t\n\t\t\t\tTotal :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{FreightSumPage}\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t/\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 31,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'FirstJasper', height: 11 pixels, splitType: Stretch. Contains 4 elements: 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 31,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'FirstJasper', height: 45 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tNorthwind Order List\n\t\t\t\n\t\t\t\n\t\t\t\t\"Max order ID is : \" + $P{MaxOrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "45",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 31,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'FirstJasper', height: 100 pixels, splitType: Stretch. Contains 4 elements: 1x elementGroup, 2x textField, 1x staticText. Visible text samples: ${$P{ReportTitle}}; (c)2001-2023 by teodord; ${msg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})}",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\"jasperreports.png\"\n\t\t\t\t\"The JasperReports Logo\"\n\t\t\t\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t(c)2001-2023 by teodord\n\t\t\n\t\t\n\t\t\tmsg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "100",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "textField": 2,
+ "staticText": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "(c)2001-2023 by teodord",
+ "${msg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 31,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'FirstJasper', height: 11 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 31,
+ "chunk_type": "nested_band",
+ "human_description": "'detail' band of report 'FirstJasper': nested band element, Height: 13.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$F{OrderID} % 10 == 0\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t$F{ShipCity}\n\t\t\t\t$F{ShipCity}\n\t\t\t\t$F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'FirstJasper' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "nested_height": "13",
+ "element_tag": "band"
+ }
+ },
+ {
+ "chunk_id": 32,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'FirstJasper', height: 65 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$P{SummaryImage}\n\t\t\t\n\t\t\t\n\t\t\t\tThat's All Folks! Hei_remind_me_to_put myself up for abduction. END!\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'FirstJasper' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "65",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 32,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'FirstJasper', height: 30 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tCount :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_COUNT}\n\t\t\t\n\t\t\t\n\t\t\t\tTotal :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{FreightSumPage}\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t/\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 32,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'FirstJasper', height: 11 pixels, splitType: Stretch. Contains 4 elements: 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 32,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'FirstJasper', height: 45 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tNorthwind Order List\n\t\t\t\n\t\t\t\n\t\t\t\t\"Max order ID is : \" + $P{MaxOrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "45",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 32,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'FirstJasper', height: 100 pixels, splitType: Stretch. Contains 4 elements: 1x elementGroup, 2x textField, 1x staticText. Visible text samples: ${$P{ReportTitle}}; (c)2001-2023 by teodord; ${msg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})}",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\"jasperreports.png\"\n\t\t\t\t\"The JasperReports Logo\"\n\t\t\t\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t(c)2001-2023 by teodord\n\t\t\n\t\t\n\t\t\tmsg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "100",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "textField": 2,
+ "staticText": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "(c)2001-2023 by teodord",
+ "${msg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 32,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'FirstJasper', height: 11 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 32,
+ "chunk_type": "nested_band",
+ "human_description": "'detail' band of report 'FirstJasper': nested band element, Height: 13.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$F{OrderID} % 10 == 0\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t$F{ShipCity}\n\t\t\t\t$F{ShipCity}\n\t\t\t\t$F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'FirstJasper' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "nested_height": "13",
+ "element_tag": "band"
+ }
+ },
+ {
+ "chunk_id": 33,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'FirstJasper', height: 65 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$P{SummaryImage}\n\t\t\t\n\t\t\t\n\t\t\t\tThat's All Folks! Hei_remind_me_to_put myself up for abduction. END!\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'FirstJasper' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "65",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 33,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'FirstJasper', height: 30 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tCount :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_COUNT}\n\t\t\t\n\t\t\t\n\t\t\t\tTotal :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{FreightSumPage}\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t/\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 33,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'FirstJasper', height: 11 pixels, splitType: Stretch. Contains 4 elements: 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 33,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'FirstJasper', height: 45 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tNorthwind Order List\n\t\t\t\n\t\t\t\n\t\t\t\t\"Max order ID is : \" + $P{MaxOrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "45",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 33,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'FirstJasper', height: 100 pixels, splitType: Stretch. Contains 4 elements: 1x elementGroup, 2x textField, 1x staticText. Visible text samples: ${$P{ReportTitle}}; (c)2001-2023 by teodord; ${msg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})}",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\"jasperreports.png\"\n\t\t\t\t\"The JasperReports Logo\"\n\t\t\t\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t(c)2001-2023 by teodord\n\t\t\n\t\t\n\t\t\tmsg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "100",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "textField": 2,
+ "staticText": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "(c)2001-2023 by teodord",
+ "${msg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 33,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'FirstJasper', height: 11 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 33,
+ "chunk_type": "nested_band",
+ "human_description": "'detail' band of report 'FirstJasper': nested band element, Height: 13.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$F{OrderID} % 10 == 0\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t$F{ShipCity}\n\t\t\t\t$F{ShipCity}\n\t\t\t\t$F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'FirstJasper' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "nested_height": "13",
+ "element_tag": "band"
+ }
+ },
+ {
+ "chunk_id": 34,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'FirstJasper', height: 65 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$P{SummaryImage}\n\t\t\t\n\t\t\t\n\t\t\t\tThat's All Folks! Hei_remind_me_to_put myself up for abduction. END!\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'FirstJasper' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "65",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 34,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'FirstJasper', height: 30 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tCount :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_COUNT}\n\t\t\t\n\t\t\t\n\t\t\t\tTotal :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{FreightSumPage}\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t/\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 34,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'FirstJasper', height: 11 pixels, splitType: Stretch. Contains 4 elements: 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 34,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'FirstJasper', height: 45 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tNorthwind Order List\n\t\t\t\n\t\t\t\n\t\t\t\t\"Max order ID is : \" + $P{MaxOrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "45",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 34,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'FirstJasper', height: 100 pixels, splitType: Stretch. Contains 4 elements: 1x elementGroup, 2x textField, 1x staticText. Visible text samples: ${$P{ReportTitle}}; (c)2001-2023 by teodord; ${msg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})}",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\"jasperreports.png\"\n\t\t\t\t\"The JasperReports Logo\"\n\t\t\t\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t(c)2001-2023 by teodord\n\t\t\n\t\t\n\t\t\tmsg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "100",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "textField": 2,
+ "staticText": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "(c)2001-2023 by teodord",
+ "${msg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 34,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'FirstJasper', height: 11 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 34,
+ "chunk_type": "nested_band",
+ "human_description": "'detail' band of report 'FirstJasper': nested band element, Height: 13.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$F{OrderID} % 10 == 0\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t$F{ShipCity}\n\t\t\t\t$F{ShipCity}\n\t\t\t\t$F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'FirstJasper' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "nested_height": "13",
+ "element_tag": "band"
+ }
+ },
+ {
+ "chunk_id": 35,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'FirstJasper', height: 65 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$P{SummaryImage}\n\t\t\t\n\t\t\t\n\t\t\t\tThat's All Folks! Hei_remind_me_to_put myself up for abduction. END!\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'FirstJasper' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "65",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 35,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'FirstJasper', height: 30 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tCount :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_COUNT}\n\t\t\t\n\t\t\t\n\t\t\t\tTotal :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{FreightSumPage}\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t/\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 35,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'FirstJasper', height: 11 pixels, splitType: Stretch. Contains 4 elements: 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 35,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'FirstJasper', height: 45 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tNorthwind Order List\n\t\t\t\n\t\t\t\n\t\t\t\t\"Max order ID is : \" + $P{MaxOrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "45",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 35,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'FirstJasper', height: 100 pixels, splitType: Stretch. Contains 4 elements: 1x elementGroup, 2x textField, 1x staticText. Visible text samples: ${$P{ReportTitle}}; (c)2001-2023 by teodord; ${msg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})}",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\"jasperreports.png\"\n\t\t\t\t\"The JasperReports Logo\"\n\t\t\t\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t(c)2001-2023 by teodord\n\t\t\n\t\t\n\t\t\tmsg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "100",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "textField": 2,
+ "staticText": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "(c)2001-2023 by teodord",
+ "${msg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 35,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'FirstJasper', height: 11 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 35,
+ "chunk_type": "nested_band",
+ "human_description": "'detail' band of report 'FirstJasper': nested band element, Height: 13.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$F{OrderID} % 10 == 0\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t$F{ShipCity}\n\t\t\t\t$F{ShipCity}\n\t\t\t\t$F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'FirstJasper' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "nested_height": "13",
+ "element_tag": "band"
+ }
+ },
+ {
+ "chunk_id": 36,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'FirstJasper', height: 65 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$P{SummaryImage}\n\t\t\t\n\t\t\t\n\t\t\t\tThat's All Folks! Hei_remind_me_to_put myself up for abduction. END!\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'FirstJasper' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "65",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 36,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'FirstJasper', height: 30 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tCount :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_COUNT}\n\t\t\t\n\t\t\t\n\t\t\t\tTotal :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{FreightSumPage}\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t/\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 36,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'FirstJasper', height: 11 pixels, splitType: Stretch. Contains 4 elements: 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 36,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'FirstJasper', height: 45 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tNorthwind Order List\n\t\t\t\n\t\t\t\n\t\t\t\t\"Max order ID is : \" + $P{MaxOrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "45",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 36,
+ "chunk_type": "band_title",
+ "human_description": "This is the 'title' band of report 'FirstJasper', height: 100 pixels, splitType: Stretch. Contains 4 elements: 1x elementGroup, 2x textField, 1x staticText. Visible text samples: ${$P{ReportTitle}}; (c)2001-2023 by teodord; ${msg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})}",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\"jasperreports.png\"\n\t\t\t\t\"The JasperReports Logo\"\n\t\t\t\n\t\t\n\t\t\n\t\t\t$P{ReportTitle}\n\t\t\n\t\t\n\t\t\t(c)2001-2023 by teodord\n\t\t\n\t\t\n\t\t\tmsg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' title band",
+ "metadata": {
+ "band_name": "title",
+ "band_height": "100",
+ "split_type": "Stretch",
+ "element_counts": {
+ "elementGroup": 1,
+ "textField": 2,
+ "staticText": 1
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "${$P{ReportTitle}}",
+ "(c)2001-2023 by teodord",
+ "${msg(\"There are {0,number,integer} orders on this report, with a total freight of {1,number,0.00}\", $V{REPORT_COUNT}, $V{FreightSumReport})}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 36,
+ "chunk_type": "band_columnHeader",
+ "human_description": "This is the 'columnHeader' band of report 'FirstJasper', height: 11 pixels, splitType: Stretch. Contains 4 elements: 4x staticText. Visible text samples: Order; Name, City; Date ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tOrder\n\t\t\n\t\t\n\t\t\tName, City\n\t\t\n\t\t\n\t\t\tDate\n\t\t\n\t\t\n\t\t\tFreight\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' columnHeader band",
+ "metadata": {
+ "band_name": "columnHeader",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 4
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Order",
+ "Name, City",
+ "Date",
+ "Freight"
+ ]
+ }
+ },
+ {
+ "chunk_id": 36,
+ "chunk_type": "nested_band",
+ "human_description": "'detail' band of report 'FirstJasper': nested band element, Height: 13.",
+ "raw_xml": "\n\t\t\t\n\t\t\t\t$F{OrderID} % 10 == 0\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderID}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipName} + \", \" + $F{ShipCity}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t$F{ShipCity}\n\t\t\t\t$F{ShipCity}\n\t\t\t\t$F{ShipCity}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t$F{ShipRegion}\n\t\t\t\n\t\t\t\n\t\t\t\t$F{OrderDate}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t$F{Freight}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t",
+ "context": "Report 'FirstJasper' detail band",
+ "metadata": {
+ "band_name": "detail",
+ "nested_height": "13",
+ "element_tag": "band"
+ }
+ },
+ {
+ "chunk_id": 37,
+ "chunk_type": "band_summary",
+ "human_description": "This is the 'summary' band of report 'FirstJasper', height: 65 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\t$P{SummaryImage}\n\t\t\t\n\t\t\t\n\t\t\t\tThat's All Folks! Hei_remind_me_to_put myself up for abduction. END!\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n",
+ "context": "Report 'FirstJasper' summary band",
+ "metadata": {
+ "band_name": "summary",
+ "band_height": "65",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 37,
+ "chunk_type": "band_pageFooter",
+ "human_description": "This is the 'pageFooter' band of report 'FirstJasper', height: 30 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tCount :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_COUNT}\n\t\t\t\n\t\t\t\n\t\t\t\tTotal :\n\t\t\t\n\t\t\t\n\t\t\t\t$V{FreightSumPage}\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t/\n\t\t\t\n\t\t\t\n\t\t\t\t$V{PAGE_NUMBER}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' pageFooter band",
+ "metadata": {
+ "band_name": "pageFooter",
+ "band_height": "30",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 37,
+ "chunk_type": "band_columnFooter",
+ "human_description": "This is the 'columnFooter' band of report 'FirstJasper', height: 11 pixels, splitType: Stretch. Contains 4 elements: 2x staticText, 2x textField. Visible text samples: Count :; ${$V{COLUMN_COUNT}}; Total : ... and 4 more texts",
+ "raw_xml": "\n\t\t\n\t\t\tCount :\n\t\t\n\t\t\n\t\t\t$V{COLUMN_COUNT}\n\t\t\n\t\t\n\t\t\tTotal :\n\t\t\n\t\t\n\t\t\t$V{FreightSumColumn}\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' columnFooter band",
+ "metadata": {
+ "band_name": "columnFooter",
+ "band_height": "11",
+ "split_type": "Stretch",
+ "element_counts": {
+ "staticText": 2,
+ "textField": 2
+ },
+ "element_count": 4,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": [
+ "Count :",
+ "${$V{COLUMN_COUNT}}",
+ "Total :",
+ "${$V{FreightSumColumn}}"
+ ]
+ }
+ },
+ {
+ "chunk_id": 37,
+ "chunk_type": "band_pageHeader",
+ "human_description": "This is the 'pageHeader' band of report 'FirstJasper', height: 45 pixels, splitType: Stretch. Contains 1 elements: 1x frame.",
+ "raw_xml": "\n\t\t\n\t\t\t\n\t\t\t\tNorthwind Order List\n\t\t\t\n\t\t\t\n\t\t\t\t\"Max order ID is : \" + $P{MaxOrderID}\n\t\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\t",
+ "context": "Report 'FirstJasper' pageHeader band",
+ "metadata": {
+ "band_name": "pageHeader",
+ "band_height": "45",
+ "split_type": "Stretch",
+ "element_counts": {
+ "frame": 1
+ },
+ "element_count": 1,
+ "nested_band_count": 0,
+ "frame_count": 0,
+ "element_group_count": 0,
+ "visible_texts": []
+ }
+ },
+ {
+ "chunk_id": 0,
+ "chunk_type": "report_overview",
+ "human_description": "This is a JasperReports template overview for report 'FontsReport'. Page size: 595 x 842 portrait. Contains 1 standard bands with content: title. Defines 0 fields: none. Defines 0 parameters: none. Defines 0 variables: none. Defines 0 groups: none. Data source type: DataAdapter. Source: One Empty Record.",
+ "raw_xml": "",
+ "context": "Report 'FontsReport' overall structure overview",
+ "metadata": {
+ "report_name": "FontsReport",
+ "bands": [
+ "title"
+ ],
+ "field_count": 0,
+ "parameter_count": 0,
+ "variable_count": 0,
+ "group_count": 0,
+ "chart_count": 0,
+ "crosstab_count": 0,
+ "subreport_count": 0,
+ "datasource": {
+ "type": "DataAdapter",
+ "source": "One Empty Record",
+ "query_language": null,
+ "properties": {
+ "net.sf.jasperreports.export.docx.embed.fonts": "true",
+ "net.sf.jasperreports.export.pptx.embed.fonts": "true",
+ "com.jaspersoft.studio.data.defaultdataadapter": "One Empty Record"
+ }
+ },
+ "attributes": {
+ "name": "FontsReport",
+ "language": "java",
+ "pageWidth": "595",
+ "pageHeight": "842",
+ "whenNoDataType": "AllSectionsNoDetail",
+ "columnWidth": "555",
+ "leftMargin": "20",
+ "rightMargin": "20",
+ "topMargin": "30",
+ "bottomMargin": "30",
+ "uuid": "8c1609b4-a52a-445f-acc9-69218b035b22"
+ }
+ }
+ },
+ {
+ "chunk_id": 1,
+ "chunk_type": "datasource_config",
+ "human_description": "These are data source configuration properties for report 'FontsReport'. Data adapter: One Empty Record.",
+ "raw_xml": "",
+ "context": "Report 'FontsReport' data source configuration",
+ "metadata": {
+ "properties": {
+ "com.jaspersoft.studio.data.defaultdataadapter": "One Empty Record"
+ }
+ }
+ },
+ {
+ "chunk_id": 2,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 50), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "67cc85d2-1691-441c-8ed6-b65c59f98fbc",
+ "x": "0",
+ "y": "50",
+ "width": "150",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 3,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"50\" width=\"150\" height=\"40\"/><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e0d254ad-1e47-4792-b380-f7afc5e4faa5",
+ "x": "160",
+ "y": "50",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 4,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 100), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "3c5505db-55e9-4aca-ad3a-ae92898ba1bb",
+ "x": "0",
+ "y": "100",
+ "width": "150",
+ "height": "40",
+ "fontSize": "12.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 5,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"100\" width=\"150\" height=\"40\"/><textElement><font size=\"14\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "7d953de8-7629-4138-a296-dfe463cba691",
+ "x": "160",
+ "y": "100",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 6,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 150), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2a2117f5-ea77-409f-a44c-9fd0551f8862",
+ "x": "0",
+ "y": "150",
+ "width": "150",
+ "height": "40",
+ "fontName": "Lobster Two",
+ "fontSize": "12.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 7,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"150\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Lobster Two\" size=\"12\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "39ce42dd-d5fa-43dd-a0de-de90b9e4b977",
+ "x": "160",
+ "y": "150",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 8,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 200), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "3828a320-c835-4eed-98d2-e6cb0324817b",
+ "x": "0",
+ "y": "200",
+ "width": "150",
+ "height": "40",
+ "fontName": "Lobster Two",
+ "fontSize": "12.0",
+ "bold": "true",
+ "italic": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 9,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"200\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Lobster Two\" size=\"12\" isBold=\"true\" isItalic=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "441f2d58-78bf-413b-bc9b-dd7d1713c1a6",
+ "x": "160",
+ "y": "200",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 10,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 250), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "f96f1263-2d31-4eef-951e-2e39ada33878",
+ "x": "0",
+ "y": "250",
+ "width": "150",
+ "height": "40",
+ "fontName": "DejaVu Serif",
+ "fontSize": "12.0",
+ "bold": "false"
+ }
+ }
+ },
+ {
+ "chunk_id": 11,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"250\" width=\"150\" height=\"40\"/><textElement><font fontName=\"DejaVu Serif\" size=\"12\" isBold=\"false\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "08fb0715-b6ff-4ea3-ab20-0d4db2be8d77",
+ "x": "160",
+ "y": "250",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 12,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 300), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2fda67e5-3953-44a0-9f88-f0d3dc6d8910",
+ "x": "0",
+ "y": "300",
+ "width": "150",
+ "height": "40",
+ "fontName": "DejaVu Serif",
+ "fontSize": "12.0",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 13,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"300\" width=\"150\" height=\"40\"/><textElement><font fontName=\"DejaVu Serif\" size=\"12\" isBold=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "69138007-8118-4689-831a-840627dcd7b6",
+ "x": "160",
+ "y": "300",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 14,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 350), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "447870d2-5f05-4764-ad5e-4d3cdf11084b",
+ "x": "0",
+ "y": "350",
+ "width": "150",
+ "height": "40",
+ "fontName": "Monospaced",
+ "fontSize": "12.0",
+ "pdfFontName": "Courier-Oblique",
+ "underline": "true",
+ "italic": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 15,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"350\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Monospaced\" size=\"12\" isItalic=\"true\" isUnderline=\"true\" pdfFontName=\"Courier-Oblique\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "38702e0b-0a84-4a47-896f-361c02ea944e",
+ "x": "160",
+ "y": "350",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 16,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 400), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9fcbe261-51f6-43b1-8752-11ffc10cc328",
+ "x": "0",
+ "y": "400",
+ "width": "150",
+ "height": "40",
+ "fontName": "Monospaced",
+ "fontSize": "12.0",
+ "pdfFontName": "Courier-Bold",
+ "strikeThrough": "true",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 17,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"400\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Monospaced\" size=\"12\" isBold=\"true\" isStrikeThrough=\"true\" pdfFontName=\"Courier-Bold\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dbdf1aa0-5a2e-4c19-a84c-cce0438e7896",
+ "x": "160",
+ "y": "400",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 18,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 450), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "348534b1-c588-4b7a-83b0-957a5332a13a",
+ "x": "0",
+ "y": "450",
+ "width": "150",
+ "height": "40",
+ "forecolor": "#FF0000",
+ "fontSize": "14.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 19,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"450\" width=\"150\" height=\"40\" forecolor=\"red\"/><textElement><font size=\"14\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "b9386ce9-aa44-4594-8559-3dcbb279a5f3",
+ "x": "160",
+ "y": "450",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 20,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 500), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "ba8b385e-a4e5-4059-9555-d416774e87c4",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "500",
+ "width": "150",
+ "height": "40",
+ "forecolor": "#00FF00",
+ "backcolor": "#FFFF00",
+ "fontName": "Serif",
+ "fontSize": "12.0",
+ "pdfFontName": "Times-Bold",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 21,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"500\" width=\"150\" height=\"40\" forecolor=\"green\" backcolor=\"#FFFF00\" mode=\"Opaque\"/><textElement><font fontName=\"Serif\" size=\"12\" isBold=\"true\" pdfFontName=\"Times-Bold\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "72ad7c1c-35c8-40ec-b1b8-78527db92baa",
+ "x": "160",
+ "y": "500",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 22,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 550), Size: 150x90.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dbce8c34-546e-4351-893a-c1905e5a068e",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "550",
+ "width": "150",
+ "height": "90",
+ "forecolor": "#0000FF",
+ "backcolor": "#FFDD99",
+ "fontName": "SansSerif",
+ "fontSize": "12.0",
+ "pdfFontName": "Sans.Slanted",
+ "pdfEmbedded": "true",
+ "bold": "false",
+ "italic": "true",
+ "hTextAlign": "Center",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 23,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"550\" width=\"150\" height=\"90\" forecolor=\"blue\" backcolor=\"#FFDD99\" mode=\"Opaque\"/><textElement textAlignment=\"Center\" verticalAlignment=\"Middle\"><font fontName=\"SansSerif\" size=\"12\" isBold=\"false\" pdfFontName=\"Sans.Slanted\" isPdfEmbedded=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "44f1dc5e-d435-4475-8274-48eb7bc9fead",
+ "x": "160",
+ "y": "550",
+ "width": "390",
+ "height": "90"
+ }
+ }
+ },
+ {
+ "chunk_id": 24,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 650), Size: 150x90.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e5c5b52a-7beb-4381-bd5b-83d8bc848ba3",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "650",
+ "width": "150",
+ "height": "90",
+ "forecolor": "#FF0000",
+ "backcolor": "#99DDFF",
+ "fontName": "SansSerif",
+ "fontSize": "12.0",
+ "pdfFontName": "DejaVu Sans Bold",
+ "pdfEmbedded": "true",
+ "bold": "true",
+ "hTextAlign": "Right",
+ "vTextAlign": "Bottom"
+ }
+ }
+ },
+ {
+ "chunk_id": 25,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"650\" width=\"150\" height=\"90\" forecolor=\"red\" backcolor=\"#99DDFF\" mode=\"Opaque\"/><textElement textAlignment=\"Right\" verticalAlignment=\"Bottom\"><font fontName=\"SansSerif\" size=\"12\" isBold=\"true\" pdfFontName=\"DejaVu Sans Bold\" isPdfEmbedded=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "31894e18-5a34-4419-a66c-c0148dd8bc60",
+ "x": "160",
+ "y": "650",
+ "width": "390",
+ "height": "90"
+ }
+ }
+ },
+ {
+ "chunk_id": 26,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 50), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "67cc85d2-1691-441c-8ed6-b65c59f98fbc",
+ "x": "0",
+ "y": "50",
+ "width": "150",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 27,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"50\" width=\"150\" height=\"40\"/><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e0d254ad-1e47-4792-b380-f7afc5e4faa5",
+ "x": "160",
+ "y": "50",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 28,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 100), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "3c5505db-55e9-4aca-ad3a-ae92898ba1bb",
+ "x": "0",
+ "y": "100",
+ "width": "150",
+ "height": "40",
+ "fontSize": "12.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 29,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"100\" width=\"150\" height=\"40\"/><textElement><font size=\"14\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "7d953de8-7629-4138-a296-dfe463cba691",
+ "x": "160",
+ "y": "100",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 30,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 150), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2a2117f5-ea77-409f-a44c-9fd0551f8862",
+ "x": "0",
+ "y": "150",
+ "width": "150",
+ "height": "40",
+ "fontName": "Lobster Two",
+ "fontSize": "12.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 31,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"150\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Lobster Two\" size=\"12\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "39ce42dd-d5fa-43dd-a0de-de90b9e4b977",
+ "x": "160",
+ "y": "150",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 32,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 200), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "3828a320-c835-4eed-98d2-e6cb0324817b",
+ "x": "0",
+ "y": "200",
+ "width": "150",
+ "height": "40",
+ "fontName": "Lobster Two",
+ "fontSize": "12.0",
+ "bold": "true",
+ "italic": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 33,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"200\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Lobster Two\" size=\"12\" isBold=\"true\" isItalic=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "441f2d58-78bf-413b-bc9b-dd7d1713c1a6",
+ "x": "160",
+ "y": "200",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 34,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 250), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "f96f1263-2d31-4eef-951e-2e39ada33878",
+ "x": "0",
+ "y": "250",
+ "width": "150",
+ "height": "40",
+ "fontName": "DejaVu Serif",
+ "fontSize": "12.0",
+ "bold": "false"
+ }
+ }
+ },
+ {
+ "chunk_id": 35,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"250\" width=\"150\" height=\"40\"/><textElement><font fontName=\"DejaVu Serif\" size=\"12\" isBold=\"false\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "08fb0715-b6ff-4ea3-ab20-0d4db2be8d77",
+ "x": "160",
+ "y": "250",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 36,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 300), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2fda67e5-3953-44a0-9f88-f0d3dc6d8910",
+ "x": "0",
+ "y": "300",
+ "width": "150",
+ "height": "40",
+ "fontName": "DejaVu Serif",
+ "fontSize": "12.0",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 37,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"300\" width=\"150\" height=\"40\"/><textElement><font fontName=\"DejaVu Serif\" size=\"12\" isBold=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "69138007-8118-4689-831a-840627dcd7b6",
+ "x": "160",
+ "y": "300",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 38,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 350), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "447870d2-5f05-4764-ad5e-4d3cdf11084b",
+ "x": "0",
+ "y": "350",
+ "width": "150",
+ "height": "40",
+ "fontName": "Monospaced",
+ "fontSize": "12.0",
+ "pdfFontName": "Courier-Oblique",
+ "underline": "true",
+ "italic": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 39,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"350\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Monospaced\" size=\"12\" isItalic=\"true\" isUnderline=\"true\" pdfFontName=\"Courier-Oblique\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "38702e0b-0a84-4a47-896f-361c02ea944e",
+ "x": "160",
+ "y": "350",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 40,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 400), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9fcbe261-51f6-43b1-8752-11ffc10cc328",
+ "x": "0",
+ "y": "400",
+ "width": "150",
+ "height": "40",
+ "fontName": "Monospaced",
+ "fontSize": "12.0",
+ "pdfFontName": "Courier-Bold",
+ "strikeThrough": "true",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 41,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"400\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Monospaced\" size=\"12\" isBold=\"true\" isStrikeThrough=\"true\" pdfFontName=\"Courier-Bold\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dbdf1aa0-5a2e-4c19-a84c-cce0438e7896",
+ "x": "160",
+ "y": "400",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 42,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 450), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "348534b1-c588-4b7a-83b0-957a5332a13a",
+ "x": "0",
+ "y": "450",
+ "width": "150",
+ "height": "40",
+ "forecolor": "#FF0000",
+ "fontSize": "14.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 43,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"450\" width=\"150\" height=\"40\" forecolor=\"red\"/><textElement><font size=\"14\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "b9386ce9-aa44-4594-8559-3dcbb279a5f3",
+ "x": "160",
+ "y": "450",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 44,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 500), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "ba8b385e-a4e5-4059-9555-d416774e87c4",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "500",
+ "width": "150",
+ "height": "40",
+ "forecolor": "#00FF00",
+ "backcolor": "#FFFF00",
+ "fontName": "Serif",
+ "fontSize": "12.0",
+ "pdfFontName": "Times-Bold",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 45,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"500\" width=\"150\" height=\"40\" forecolor=\"green\" backcolor=\"#FFFF00\" mode=\"Opaque\"/><textElement><font fontName=\"Serif\" size=\"12\" isBold=\"true\" pdfFontName=\"Times-Bold\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "72ad7c1c-35c8-40ec-b1b8-78527db92baa",
+ "x": "160",
+ "y": "500",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 46,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 550), Size: 150x90.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dbce8c34-546e-4351-893a-c1905e5a068e",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "550",
+ "width": "150",
+ "height": "90",
+ "forecolor": "#0000FF",
+ "backcolor": "#FFDD99",
+ "fontName": "SansSerif",
+ "fontSize": "12.0",
+ "pdfFontName": "Sans.Slanted",
+ "pdfEmbedded": "true",
+ "bold": "false",
+ "italic": "true",
+ "hTextAlign": "Center",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 47,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"550\" width=\"150\" height=\"90\" forecolor=\"blue\" backcolor=\"#FFDD99\" mode=\"Opaque\"/><textElement textAlignment=\"Center\" verticalAlignment=\"Middle\"><font fontName=\"SansSerif\" size=\"12\" isBold=\"false\" pdfFontName=\"Sans.Slanted\" isPdfEmbedded=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "44f1dc5e-d435-4475-8274-48eb7bc9fead",
+ "x": "160",
+ "y": "550",
+ "width": "390",
+ "height": "90"
+ }
+ }
+ },
+ {
+ "chunk_id": 48,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 650), Size: 150x90.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e5c5b52a-7beb-4381-bd5b-83d8bc848ba3",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "650",
+ "width": "150",
+ "height": "90",
+ "forecolor": "#FF0000",
+ "backcolor": "#99DDFF",
+ "fontName": "SansSerif",
+ "fontSize": "12.0",
+ "pdfFontName": "DejaVu Sans Bold",
+ "pdfEmbedded": "true",
+ "bold": "true",
+ "hTextAlign": "Right",
+ "vTextAlign": "Bottom"
+ }
+ }
+ },
+ {
+ "chunk_id": 49,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"650\" width=\"150\" height=\"90\" forecolor=\"red\" backcolor=\"#99DDFF\" mode=\"Opaque\"/><textElement textAlignment=\"Right\" verticalAlignment=\"Bottom\"><font fontName=\"SansSerif\" size=\"12\" isBold=\"true\" pdfFontName=\"DejaVu Sans Bold\" isPdfEmbedded=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "31894e18-5a34-4419-a66c-c0148dd8bc60",
+ "x": "160",
+ "y": "650",
+ "width": "390",
+ "height": "90"
+ }
+ }
+ },
+ {
+ "chunk_id": 50,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 50), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "67cc85d2-1691-441c-8ed6-b65c59f98fbc",
+ "x": "0",
+ "y": "50",
+ "width": "150",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 51,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"50\" width=\"150\" height=\"40\"/><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e0d254ad-1e47-4792-b380-f7afc5e4faa5",
+ "x": "160",
+ "y": "50",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 52,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 100), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "3c5505db-55e9-4aca-ad3a-ae92898ba1bb",
+ "x": "0",
+ "y": "100",
+ "width": "150",
+ "height": "40",
+ "fontSize": "12.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 53,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"100\" width=\"150\" height=\"40\"/><textElement><font size=\"14\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "7d953de8-7629-4138-a296-dfe463cba691",
+ "x": "160",
+ "y": "100",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 54,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 150), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2a2117f5-ea77-409f-a44c-9fd0551f8862",
+ "x": "0",
+ "y": "150",
+ "width": "150",
+ "height": "40",
+ "fontName": "Lobster Two",
+ "fontSize": "12.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 55,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"150\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Lobster Two\" size=\"12\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "39ce42dd-d5fa-43dd-a0de-de90b9e4b977",
+ "x": "160",
+ "y": "150",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 56,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 200), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "3828a320-c835-4eed-98d2-e6cb0324817b",
+ "x": "0",
+ "y": "200",
+ "width": "150",
+ "height": "40",
+ "fontName": "Lobster Two",
+ "fontSize": "12.0",
+ "bold": "true",
+ "italic": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 57,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"200\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Lobster Two\" size=\"12\" isBold=\"true\" isItalic=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "441f2d58-78bf-413b-bc9b-dd7d1713c1a6",
+ "x": "160",
+ "y": "200",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 58,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 250), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "f96f1263-2d31-4eef-951e-2e39ada33878",
+ "x": "0",
+ "y": "250",
+ "width": "150",
+ "height": "40",
+ "fontName": "DejaVu Serif",
+ "fontSize": "12.0",
+ "bold": "false"
+ }
+ }
+ },
+ {
+ "chunk_id": 59,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"250\" width=\"150\" height=\"40\"/><textElement><font fontName=\"DejaVu Serif\" size=\"12\" isBold=\"false\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "08fb0715-b6ff-4ea3-ab20-0d4db2be8d77",
+ "x": "160",
+ "y": "250",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 60,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 300), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2fda67e5-3953-44a0-9f88-f0d3dc6d8910",
+ "x": "0",
+ "y": "300",
+ "width": "150",
+ "height": "40",
+ "fontName": "DejaVu Serif",
+ "fontSize": "12.0",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 61,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"300\" width=\"150\" height=\"40\"/><textElement><font fontName=\"DejaVu Serif\" size=\"12\" isBold=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "69138007-8118-4689-831a-840627dcd7b6",
+ "x": "160",
+ "y": "300",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 62,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 350), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "447870d2-5f05-4764-ad5e-4d3cdf11084b",
+ "x": "0",
+ "y": "350",
+ "width": "150",
+ "height": "40",
+ "fontName": "Monospaced",
+ "fontSize": "12.0",
+ "pdfFontName": "Courier-Oblique",
+ "underline": "true",
+ "italic": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 63,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"350\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Monospaced\" size=\"12\" isItalic=\"true\" isUnderline=\"true\" pdfFontName=\"Courier-Oblique\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "38702e0b-0a84-4a47-896f-361c02ea944e",
+ "x": "160",
+ "y": "350",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 64,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 400), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9fcbe261-51f6-43b1-8752-11ffc10cc328",
+ "x": "0",
+ "y": "400",
+ "width": "150",
+ "height": "40",
+ "fontName": "Monospaced",
+ "fontSize": "12.0",
+ "pdfFontName": "Courier-Bold",
+ "strikeThrough": "true",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 65,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"400\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Monospaced\" size=\"12\" isBold=\"true\" isStrikeThrough=\"true\" pdfFontName=\"Courier-Bold\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dbdf1aa0-5a2e-4c19-a84c-cce0438e7896",
+ "x": "160",
+ "y": "400",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 66,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 450), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "348534b1-c588-4b7a-83b0-957a5332a13a",
+ "x": "0",
+ "y": "450",
+ "width": "150",
+ "height": "40",
+ "forecolor": "#FF0000",
+ "fontSize": "14.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 67,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"450\" width=\"150\" height=\"40\" forecolor=\"red\"/><textElement><font size=\"14\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "b9386ce9-aa44-4594-8559-3dcbb279a5f3",
+ "x": "160",
+ "y": "450",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 68,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 500), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "ba8b385e-a4e5-4059-9555-d416774e87c4",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "500",
+ "width": "150",
+ "height": "40",
+ "forecolor": "#00FF00",
+ "backcolor": "#FFFF00",
+ "fontName": "Serif",
+ "fontSize": "12.0",
+ "pdfFontName": "Times-Bold",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 69,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"500\" width=\"150\" height=\"40\" forecolor=\"green\" backcolor=\"#FFFF00\" mode=\"Opaque\"/><textElement><font fontName=\"Serif\" size=\"12\" isBold=\"true\" pdfFontName=\"Times-Bold\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "72ad7c1c-35c8-40ec-b1b8-78527db92baa",
+ "x": "160",
+ "y": "500",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 70,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 550), Size: 150x90.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dbce8c34-546e-4351-893a-c1905e5a068e",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "550",
+ "width": "150",
+ "height": "90",
+ "forecolor": "#0000FF",
+ "backcolor": "#FFDD99",
+ "fontName": "SansSerif",
+ "fontSize": "12.0",
+ "pdfFontName": "Sans.Slanted",
+ "pdfEmbedded": "true",
+ "bold": "false",
+ "italic": "true",
+ "hTextAlign": "Center",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 71,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"550\" width=\"150\" height=\"90\" forecolor=\"blue\" backcolor=\"#FFDD99\" mode=\"Opaque\"/><textElement textAlignment=\"Center\" verticalAlignment=\"Middle\"><font fontName=\"SansSerif\" size=\"12\" isBold=\"false\" pdfFontName=\"Sans.Slanted\" isPdfEmbedded=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "44f1dc5e-d435-4475-8274-48eb7bc9fead",
+ "x": "160",
+ "y": "550",
+ "width": "390",
+ "height": "90"
+ }
+ }
+ },
+ {
+ "chunk_id": 72,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 650), Size: 150x90.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e5c5b52a-7beb-4381-bd5b-83d8bc848ba3",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "650",
+ "width": "150",
+ "height": "90",
+ "forecolor": "#FF0000",
+ "backcolor": "#99DDFF",
+ "fontName": "SansSerif",
+ "fontSize": "12.0",
+ "pdfFontName": "DejaVu Sans Bold",
+ "pdfEmbedded": "true",
+ "bold": "true",
+ "hTextAlign": "Right",
+ "vTextAlign": "Bottom"
+ }
+ }
+ },
+ {
+ "chunk_id": 73,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"650\" width=\"150\" height=\"90\" forecolor=\"red\" backcolor=\"#99DDFF\" mode=\"Opaque\"/><textElement textAlignment=\"Right\" verticalAlignment=\"Bottom\"><font fontName=\"SansSerif\" size=\"12\" isBold=\"true\" pdfFontName=\"DejaVu Sans Bold\" isPdfEmbedded=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "31894e18-5a34-4419-a66c-c0148dd8bc60",
+ "x": "160",
+ "y": "650",
+ "width": "390",
+ "height": "90"
+ }
+ }
+ },
+ {
+ "chunk_id": 74,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 50), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "67cc85d2-1691-441c-8ed6-b65c59f98fbc",
+ "x": "0",
+ "y": "50",
+ "width": "150",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 75,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"50\" width=\"150\" height=\"40\"/><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e0d254ad-1e47-4792-b380-f7afc5e4faa5",
+ "x": "160",
+ "y": "50",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 76,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 100), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "3c5505db-55e9-4aca-ad3a-ae92898ba1bb",
+ "x": "0",
+ "y": "100",
+ "width": "150",
+ "height": "40",
+ "fontSize": "12.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 77,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"100\" width=\"150\" height=\"40\"/><textElement><font size=\"14\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "7d953de8-7629-4138-a296-dfe463cba691",
+ "x": "160",
+ "y": "100",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 78,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 150), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2a2117f5-ea77-409f-a44c-9fd0551f8862",
+ "x": "0",
+ "y": "150",
+ "width": "150",
+ "height": "40",
+ "fontName": "Lobster Two",
+ "fontSize": "12.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 79,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"150\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Lobster Two\" size=\"12\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "39ce42dd-d5fa-43dd-a0de-de90b9e4b977",
+ "x": "160",
+ "y": "150",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 80,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 200), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "3828a320-c835-4eed-98d2-e6cb0324817b",
+ "x": "0",
+ "y": "200",
+ "width": "150",
+ "height": "40",
+ "fontName": "Lobster Two",
+ "fontSize": "12.0",
+ "bold": "true",
+ "italic": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 81,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"200\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Lobster Two\" size=\"12\" isBold=\"true\" isItalic=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "441f2d58-78bf-413b-bc9b-dd7d1713c1a6",
+ "x": "160",
+ "y": "200",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 82,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 250), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "f96f1263-2d31-4eef-951e-2e39ada33878",
+ "x": "0",
+ "y": "250",
+ "width": "150",
+ "height": "40",
+ "fontName": "DejaVu Serif",
+ "fontSize": "12.0",
+ "bold": "false"
+ }
+ }
+ },
+ {
+ "chunk_id": 83,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"250\" width=\"150\" height=\"40\"/><textElement><font fontName=\"DejaVu Serif\" size=\"12\" isBold=\"false\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "08fb0715-b6ff-4ea3-ab20-0d4db2be8d77",
+ "x": "160",
+ "y": "250",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 84,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 300), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2fda67e5-3953-44a0-9f88-f0d3dc6d8910",
+ "x": "0",
+ "y": "300",
+ "width": "150",
+ "height": "40",
+ "fontName": "DejaVu Serif",
+ "fontSize": "12.0",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 85,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"300\" width=\"150\" height=\"40\"/><textElement><font fontName=\"DejaVu Serif\" size=\"12\" isBold=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "69138007-8118-4689-831a-840627dcd7b6",
+ "x": "160",
+ "y": "300",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 86,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 350), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "447870d2-5f05-4764-ad5e-4d3cdf11084b",
+ "x": "0",
+ "y": "350",
+ "width": "150",
+ "height": "40",
+ "fontName": "Monospaced",
+ "fontSize": "12.0",
+ "pdfFontName": "Courier-Oblique",
+ "underline": "true",
+ "italic": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 87,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"350\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Monospaced\" size=\"12\" isItalic=\"true\" isUnderline=\"true\" pdfFontName=\"Courier-Oblique\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "38702e0b-0a84-4a47-896f-361c02ea944e",
+ "x": "160",
+ "y": "350",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 88,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 400), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9fcbe261-51f6-43b1-8752-11ffc10cc328",
+ "x": "0",
+ "y": "400",
+ "width": "150",
+ "height": "40",
+ "fontName": "Monospaced",
+ "fontSize": "12.0",
+ "pdfFontName": "Courier-Bold",
+ "strikeThrough": "true",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 89,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"400\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Monospaced\" size=\"12\" isBold=\"true\" isStrikeThrough=\"true\" pdfFontName=\"Courier-Bold\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dbdf1aa0-5a2e-4c19-a84c-cce0438e7896",
+ "x": "160",
+ "y": "400",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 90,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 450), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "348534b1-c588-4b7a-83b0-957a5332a13a",
+ "x": "0",
+ "y": "450",
+ "width": "150",
+ "height": "40",
+ "forecolor": "#FF0000",
+ "fontSize": "14.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 91,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"450\" width=\"150\" height=\"40\" forecolor=\"red\"/><textElement><font size=\"14\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "b9386ce9-aa44-4594-8559-3dcbb279a5f3",
+ "x": "160",
+ "y": "450",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 92,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 500), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "ba8b385e-a4e5-4059-9555-d416774e87c4",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "500",
+ "width": "150",
+ "height": "40",
+ "forecolor": "#00FF00",
+ "backcolor": "#FFFF00",
+ "fontName": "Serif",
+ "fontSize": "12.0",
+ "pdfFontName": "Times-Bold",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 93,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"500\" width=\"150\" height=\"40\" forecolor=\"green\" backcolor=\"#FFFF00\" mode=\"Opaque\"/><textElement><font fontName=\"Serif\" size=\"12\" isBold=\"true\" pdfFontName=\"Times-Bold\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "72ad7c1c-35c8-40ec-b1b8-78527db92baa",
+ "x": "160",
+ "y": "500",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 94,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 550), Size: 150x90.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dbce8c34-546e-4351-893a-c1905e5a068e",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "550",
+ "width": "150",
+ "height": "90",
+ "forecolor": "#0000FF",
+ "backcolor": "#FFDD99",
+ "fontName": "SansSerif",
+ "fontSize": "12.0",
+ "pdfFontName": "Sans.Slanted",
+ "pdfEmbedded": "true",
+ "bold": "false",
+ "italic": "true",
+ "hTextAlign": "Center",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 95,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"550\" width=\"150\" height=\"90\" forecolor=\"blue\" backcolor=\"#FFDD99\" mode=\"Opaque\"/><textElement textAlignment=\"Center\" verticalAlignment=\"Middle\"><font fontName=\"SansSerif\" size=\"12\" isBold=\"false\" pdfFontName=\"Sans.Slanted\" isPdfEmbedded=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "44f1dc5e-d435-4475-8274-48eb7bc9fead",
+ "x": "160",
+ "y": "550",
+ "width": "390",
+ "height": "90"
+ }
+ }
+ },
+ {
+ "chunk_id": 96,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 650), Size: 150x90.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e5c5b52a-7beb-4381-bd5b-83d8bc848ba3",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "650",
+ "width": "150",
+ "height": "90",
+ "forecolor": "#FF0000",
+ "backcolor": "#99DDFF",
+ "fontName": "SansSerif",
+ "fontSize": "12.0",
+ "pdfFontName": "DejaVu Sans Bold",
+ "pdfEmbedded": "true",
+ "bold": "true",
+ "hTextAlign": "Right",
+ "vTextAlign": "Bottom"
+ }
+ }
+ },
+ {
+ "chunk_id": 97,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"650\" width=\"150\" height=\"90\" forecolor=\"red\" backcolor=\"#99DDFF\" mode=\"Opaque\"/><textElement textAlignment=\"Right\" verticalAlignment=\"Bottom\"><font fontName=\"SansSerif\" size=\"12\" isBold=\"true\" pdfFontName=\"DejaVu Sans Bold\" isPdfEmbedded=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "31894e18-5a34-4419-a66c-c0148dd8bc60",
+ "x": "160",
+ "y": "650",
+ "width": "390",
+ "height": "90"
+ }
+ }
+ },
+ {
+ "chunk_id": 98,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 50), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "67cc85d2-1691-441c-8ed6-b65c59f98fbc",
+ "x": "0",
+ "y": "50",
+ "width": "150",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 99,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"50\" width=\"150\" height=\"40\"/><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e0d254ad-1e47-4792-b380-f7afc5e4faa5",
+ "x": "160",
+ "y": "50",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 100,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 100), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "3c5505db-55e9-4aca-ad3a-ae92898ba1bb",
+ "x": "0",
+ "y": "100",
+ "width": "150",
+ "height": "40",
+ "fontSize": "12.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 101,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"100\" width=\"150\" height=\"40\"/><textElement><font size=\"14\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "7d953de8-7629-4138-a296-dfe463cba691",
+ "x": "160",
+ "y": "100",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 102,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 150), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2a2117f5-ea77-409f-a44c-9fd0551f8862",
+ "x": "0",
+ "y": "150",
+ "width": "150",
+ "height": "40",
+ "fontName": "Lobster Two",
+ "fontSize": "12.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 103,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"150\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Lobster Two\" size=\"12\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "39ce42dd-d5fa-43dd-a0de-de90b9e4b977",
+ "x": "160",
+ "y": "150",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 104,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 200), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "3828a320-c835-4eed-98d2-e6cb0324817b",
+ "x": "0",
+ "y": "200",
+ "width": "150",
+ "height": "40",
+ "fontName": "Lobster Two",
+ "fontSize": "12.0",
+ "bold": "true",
+ "italic": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 105,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"200\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Lobster Two\" size=\"12\" isBold=\"true\" isItalic=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "441f2d58-78bf-413b-bc9b-dd7d1713c1a6",
+ "x": "160",
+ "y": "200",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 106,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 250), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "f96f1263-2d31-4eef-951e-2e39ada33878",
+ "x": "0",
+ "y": "250",
+ "width": "150",
+ "height": "40",
+ "fontName": "DejaVu Serif",
+ "fontSize": "12.0",
+ "bold": "false"
+ }
+ }
+ },
+ {
+ "chunk_id": 107,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"250\" width=\"150\" height=\"40\"/><textElement><font fontName=\"DejaVu Serif\" size=\"12\" isBold=\"false\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "08fb0715-b6ff-4ea3-ab20-0d4db2be8d77",
+ "x": "160",
+ "y": "250",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 108,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 300), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2fda67e5-3953-44a0-9f88-f0d3dc6d8910",
+ "x": "0",
+ "y": "300",
+ "width": "150",
+ "height": "40",
+ "fontName": "DejaVu Serif",
+ "fontSize": "12.0",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 109,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"300\" width=\"150\" height=\"40\"/><textElement><font fontName=\"DejaVu Serif\" size=\"12\" isBold=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "69138007-8118-4689-831a-840627dcd7b6",
+ "x": "160",
+ "y": "300",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 110,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 350), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "447870d2-5f05-4764-ad5e-4d3cdf11084b",
+ "x": "0",
+ "y": "350",
+ "width": "150",
+ "height": "40",
+ "fontName": "Monospaced",
+ "fontSize": "12.0",
+ "pdfFontName": "Courier-Oblique",
+ "underline": "true",
+ "italic": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 111,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"350\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Monospaced\" size=\"12\" isItalic=\"true\" isUnderline=\"true\" pdfFontName=\"Courier-Oblique\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "38702e0b-0a84-4a47-896f-361c02ea944e",
+ "x": "160",
+ "y": "350",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 112,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 400), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9fcbe261-51f6-43b1-8752-11ffc10cc328",
+ "x": "0",
+ "y": "400",
+ "width": "150",
+ "height": "40",
+ "fontName": "Monospaced",
+ "fontSize": "12.0",
+ "pdfFontName": "Courier-Bold",
+ "strikeThrough": "true",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 113,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"400\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Monospaced\" size=\"12\" isBold=\"true\" isStrikeThrough=\"true\" pdfFontName=\"Courier-Bold\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dbdf1aa0-5a2e-4c19-a84c-cce0438e7896",
+ "x": "160",
+ "y": "400",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 114,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 450), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "348534b1-c588-4b7a-83b0-957a5332a13a",
+ "x": "0",
+ "y": "450",
+ "width": "150",
+ "height": "40",
+ "forecolor": "#FF0000",
+ "fontSize": "14.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 115,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"450\" width=\"150\" height=\"40\" forecolor=\"red\"/><textElement><font size=\"14\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "b9386ce9-aa44-4594-8559-3dcbb279a5f3",
+ "x": "160",
+ "y": "450",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 116,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 500), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "ba8b385e-a4e5-4059-9555-d416774e87c4",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "500",
+ "width": "150",
+ "height": "40",
+ "forecolor": "#00FF00",
+ "backcolor": "#FFFF00",
+ "fontName": "Serif",
+ "fontSize": "12.0",
+ "pdfFontName": "Times-Bold",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 117,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"500\" width=\"150\" height=\"40\" forecolor=\"green\" backcolor=\"#FFFF00\" mode=\"Opaque\"/><textElement><font fontName=\"Serif\" size=\"12\" isBold=\"true\" pdfFontName=\"Times-Bold\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "72ad7c1c-35c8-40ec-b1b8-78527db92baa",
+ "x": "160",
+ "y": "500",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 118,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 550), Size: 150x90.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dbce8c34-546e-4351-893a-c1905e5a068e",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "550",
+ "width": "150",
+ "height": "90",
+ "forecolor": "#0000FF",
+ "backcolor": "#FFDD99",
+ "fontName": "SansSerif",
+ "fontSize": "12.0",
+ "pdfFontName": "Sans.Slanted",
+ "pdfEmbedded": "true",
+ "bold": "false",
+ "italic": "true",
+ "hTextAlign": "Center",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 119,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"550\" width=\"150\" height=\"90\" forecolor=\"blue\" backcolor=\"#FFDD99\" mode=\"Opaque\"/><textElement textAlignment=\"Center\" verticalAlignment=\"Middle\"><font fontName=\"SansSerif\" size=\"12\" isBold=\"false\" pdfFontName=\"Sans.Slanted\" isPdfEmbedded=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "44f1dc5e-d435-4475-8274-48eb7bc9fead",
+ "x": "160",
+ "y": "550",
+ "width": "390",
+ "height": "90"
+ }
+ }
+ },
+ {
+ "chunk_id": 120,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 650), Size: 150x90.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e5c5b52a-7beb-4381-bd5b-83d8bc848ba3",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "650",
+ "width": "150",
+ "height": "90",
+ "forecolor": "#FF0000",
+ "backcolor": "#99DDFF",
+ "fontName": "SansSerif",
+ "fontSize": "12.0",
+ "pdfFontName": "DejaVu Sans Bold",
+ "pdfEmbedded": "true",
+ "bold": "true",
+ "hTextAlign": "Right",
+ "vTextAlign": "Bottom"
+ }
+ }
+ },
+ {
+ "chunk_id": 121,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"650\" width=\"150\" height=\"90\" forecolor=\"red\" backcolor=\"#99DDFF\" mode=\"Opaque\"/><textElement textAlignment=\"Right\" verticalAlignment=\"Bottom\"><font fontName=\"SansSerif\" size=\"12\" isBold=\"true\" pdfFontName=\"DejaVu Sans Bold\" isPdfEmbedded=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "31894e18-5a34-4419-a66c-c0148dd8bc60",
+ "x": "160",
+ "y": "650",
+ "width": "390",
+ "height": "90"
+ }
+ }
+ },
+ {
+ "chunk_id": 122,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 50), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "67cc85d2-1691-441c-8ed6-b65c59f98fbc",
+ "x": "0",
+ "y": "50",
+ "width": "150",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 123,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"50\" width=\"150\" height=\"40\"/><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e0d254ad-1e47-4792-b380-f7afc5e4faa5",
+ "x": "160",
+ "y": "50",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 124,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 100), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "3c5505db-55e9-4aca-ad3a-ae92898ba1bb",
+ "x": "0",
+ "y": "100",
+ "width": "150",
+ "height": "40",
+ "fontSize": "12.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 125,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"100\" width=\"150\" height=\"40\"/><textElement><font size=\"14\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "7d953de8-7629-4138-a296-dfe463cba691",
+ "x": "160",
+ "y": "100",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 126,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 150), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2a2117f5-ea77-409f-a44c-9fd0551f8862",
+ "x": "0",
+ "y": "150",
+ "width": "150",
+ "height": "40",
+ "fontName": "Lobster Two",
+ "fontSize": "12.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 127,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"150\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Lobster Two\" size=\"12\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "39ce42dd-d5fa-43dd-a0de-de90b9e4b977",
+ "x": "160",
+ "y": "150",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 128,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 200), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "3828a320-c835-4eed-98d2-e6cb0324817b",
+ "x": "0",
+ "y": "200",
+ "width": "150",
+ "height": "40",
+ "fontName": "Lobster Two",
+ "fontSize": "12.0",
+ "bold": "true",
+ "italic": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 129,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"200\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Lobster Two\" size=\"12\" isBold=\"true\" isItalic=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "441f2d58-78bf-413b-bc9b-dd7d1713c1a6",
+ "x": "160",
+ "y": "200",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 130,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 250), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "f96f1263-2d31-4eef-951e-2e39ada33878",
+ "x": "0",
+ "y": "250",
+ "width": "150",
+ "height": "40",
+ "fontName": "DejaVu Serif",
+ "fontSize": "12.0",
+ "bold": "false"
+ }
+ }
+ },
+ {
+ "chunk_id": 131,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"250\" width=\"150\" height=\"40\"/><textElement><font fontName=\"DejaVu Serif\" size=\"12\" isBold=\"false\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "08fb0715-b6ff-4ea3-ab20-0d4db2be8d77",
+ "x": "160",
+ "y": "250",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 132,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 300), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2fda67e5-3953-44a0-9f88-f0d3dc6d8910",
+ "x": "0",
+ "y": "300",
+ "width": "150",
+ "height": "40",
+ "fontName": "DejaVu Serif",
+ "fontSize": "12.0",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 133,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"300\" width=\"150\" height=\"40\"/><textElement><font fontName=\"DejaVu Serif\" size=\"12\" isBold=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "69138007-8118-4689-831a-840627dcd7b6",
+ "x": "160",
+ "y": "300",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 134,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 350), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "447870d2-5f05-4764-ad5e-4d3cdf11084b",
+ "x": "0",
+ "y": "350",
+ "width": "150",
+ "height": "40",
+ "fontName": "Monospaced",
+ "fontSize": "12.0",
+ "pdfFontName": "Courier-Oblique",
+ "underline": "true",
+ "italic": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 135,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"350\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Monospaced\" size=\"12\" isItalic=\"true\" isUnderline=\"true\" pdfFontName=\"Courier-Oblique\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "38702e0b-0a84-4a47-896f-361c02ea944e",
+ "x": "160",
+ "y": "350",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 136,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 400), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9fcbe261-51f6-43b1-8752-11ffc10cc328",
+ "x": "0",
+ "y": "400",
+ "width": "150",
+ "height": "40",
+ "fontName": "Monospaced",
+ "fontSize": "12.0",
+ "pdfFontName": "Courier-Bold",
+ "strikeThrough": "true",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 137,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"400\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Monospaced\" size=\"12\" isBold=\"true\" isStrikeThrough=\"true\" pdfFontName=\"Courier-Bold\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dbdf1aa0-5a2e-4c19-a84c-cce0438e7896",
+ "x": "160",
+ "y": "400",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 138,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 450), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "348534b1-c588-4b7a-83b0-957a5332a13a",
+ "x": "0",
+ "y": "450",
+ "width": "150",
+ "height": "40",
+ "forecolor": "#FF0000",
+ "fontSize": "14.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 139,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"450\" width=\"150\" height=\"40\" forecolor=\"red\"/><textElement><font size=\"14\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "b9386ce9-aa44-4594-8559-3dcbb279a5f3",
+ "x": "160",
+ "y": "450",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 140,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 500), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "ba8b385e-a4e5-4059-9555-d416774e87c4",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "500",
+ "width": "150",
+ "height": "40",
+ "forecolor": "#00FF00",
+ "backcolor": "#FFFF00",
+ "fontName": "Serif",
+ "fontSize": "12.0",
+ "pdfFontName": "Times-Bold",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 141,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"500\" width=\"150\" height=\"40\" forecolor=\"green\" backcolor=\"#FFFF00\" mode=\"Opaque\"/><textElement><font fontName=\"Serif\" size=\"12\" isBold=\"true\" pdfFontName=\"Times-Bold\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "72ad7c1c-35c8-40ec-b1b8-78527db92baa",
+ "x": "160",
+ "y": "500",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 142,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 550), Size: 150x90.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dbce8c34-546e-4351-893a-c1905e5a068e",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "550",
+ "width": "150",
+ "height": "90",
+ "forecolor": "#0000FF",
+ "backcolor": "#FFDD99",
+ "fontName": "SansSerif",
+ "fontSize": "12.0",
+ "pdfFontName": "Sans.Slanted",
+ "pdfEmbedded": "true",
+ "bold": "false",
+ "italic": "true",
+ "hTextAlign": "Center",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 143,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"550\" width=\"150\" height=\"90\" forecolor=\"blue\" backcolor=\"#FFDD99\" mode=\"Opaque\"/><textElement textAlignment=\"Center\" verticalAlignment=\"Middle\"><font fontName=\"SansSerif\" size=\"12\" isBold=\"false\" pdfFontName=\"Sans.Slanted\" isPdfEmbedded=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "44f1dc5e-d435-4475-8274-48eb7bc9fead",
+ "x": "160",
+ "y": "550",
+ "width": "390",
+ "height": "90"
+ }
+ }
+ },
+ {
+ "chunk_id": 144,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 650), Size: 150x90.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e5c5b52a-7beb-4381-bd5b-83d8bc848ba3",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "650",
+ "width": "150",
+ "height": "90",
+ "forecolor": "#FF0000",
+ "backcolor": "#99DDFF",
+ "fontName": "SansSerif",
+ "fontSize": "12.0",
+ "pdfFontName": "DejaVu Sans Bold",
+ "pdfEmbedded": "true",
+ "bold": "true",
+ "hTextAlign": "Right",
+ "vTextAlign": "Bottom"
+ }
+ }
+ },
+ {
+ "chunk_id": 145,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"650\" width=\"150\" height=\"90\" forecolor=\"red\" backcolor=\"#99DDFF\" mode=\"Opaque\"/><textElement textAlignment=\"Right\" verticalAlignment=\"Bottom\"><font fontName=\"SansSerif\" size=\"12\" isBold=\"true\" pdfFontName=\"DejaVu Sans Bold\" isPdfEmbedded=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "31894e18-5a34-4419-a66c-c0148dd8bc60",
+ "x": "160",
+ "y": "650",
+ "width": "390",
+ "height": "90"
+ }
+ }
+ },
+ {
+ "chunk_id": 146,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 50), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "67cc85d2-1691-441c-8ed6-b65c59f98fbc",
+ "x": "0",
+ "y": "50",
+ "width": "150",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 147,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"50\" width=\"150\" height=\"40\"/><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e0d254ad-1e47-4792-b380-f7afc5e4faa5",
+ "x": "160",
+ "y": "50",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 148,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 100), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "3c5505db-55e9-4aca-ad3a-ae92898ba1bb",
+ "x": "0",
+ "y": "100",
+ "width": "150",
+ "height": "40",
+ "fontSize": "12.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 149,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"100\" width=\"150\" height=\"40\"/><textElement><font size=\"14\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "7d953de8-7629-4138-a296-dfe463cba691",
+ "x": "160",
+ "y": "100",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 150,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 150), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2a2117f5-ea77-409f-a44c-9fd0551f8862",
+ "x": "0",
+ "y": "150",
+ "width": "150",
+ "height": "40",
+ "fontName": "Lobster Two",
+ "fontSize": "12.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 151,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"150\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Lobster Two\" size=\"12\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "39ce42dd-d5fa-43dd-a0de-de90b9e4b977",
+ "x": "160",
+ "y": "150",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 152,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 200), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "3828a320-c835-4eed-98d2-e6cb0324817b",
+ "x": "0",
+ "y": "200",
+ "width": "150",
+ "height": "40",
+ "fontName": "Lobster Two",
+ "fontSize": "12.0",
+ "bold": "true",
+ "italic": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 153,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"200\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Lobster Two\" size=\"12\" isBold=\"true\" isItalic=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "441f2d58-78bf-413b-bc9b-dd7d1713c1a6",
+ "x": "160",
+ "y": "200",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 154,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 250), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "f96f1263-2d31-4eef-951e-2e39ada33878",
+ "x": "0",
+ "y": "250",
+ "width": "150",
+ "height": "40",
+ "fontName": "DejaVu Serif",
+ "fontSize": "12.0",
+ "bold": "false"
+ }
+ }
+ },
+ {
+ "chunk_id": 155,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"250\" width=\"150\" height=\"40\"/><textElement><font fontName=\"DejaVu Serif\" size=\"12\" isBold=\"false\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "08fb0715-b6ff-4ea3-ab20-0d4db2be8d77",
+ "x": "160",
+ "y": "250",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 156,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 300), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2fda67e5-3953-44a0-9f88-f0d3dc6d8910",
+ "x": "0",
+ "y": "300",
+ "width": "150",
+ "height": "40",
+ "fontName": "DejaVu Serif",
+ "fontSize": "12.0",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 157,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"300\" width=\"150\" height=\"40\"/><textElement><font fontName=\"DejaVu Serif\" size=\"12\" isBold=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "69138007-8118-4689-831a-840627dcd7b6",
+ "x": "160",
+ "y": "300",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 158,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 350), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "447870d2-5f05-4764-ad5e-4d3cdf11084b",
+ "x": "0",
+ "y": "350",
+ "width": "150",
+ "height": "40",
+ "fontName": "Monospaced",
+ "fontSize": "12.0",
+ "pdfFontName": "Courier-Oblique",
+ "underline": "true",
+ "italic": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 159,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"350\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Monospaced\" size=\"12\" isItalic=\"true\" isUnderline=\"true\" pdfFontName=\"Courier-Oblique\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "38702e0b-0a84-4a47-896f-361c02ea944e",
+ "x": "160",
+ "y": "350",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 160,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 400), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9fcbe261-51f6-43b1-8752-11ffc10cc328",
+ "x": "0",
+ "y": "400",
+ "width": "150",
+ "height": "40",
+ "fontName": "Monospaced",
+ "fontSize": "12.0",
+ "pdfFontName": "Courier-Bold",
+ "strikeThrough": "true",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 161,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"400\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Monospaced\" size=\"12\" isBold=\"true\" isStrikeThrough=\"true\" pdfFontName=\"Courier-Bold\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dbdf1aa0-5a2e-4c19-a84c-cce0438e7896",
+ "x": "160",
+ "y": "400",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 162,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 450), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "348534b1-c588-4b7a-83b0-957a5332a13a",
+ "x": "0",
+ "y": "450",
+ "width": "150",
+ "height": "40",
+ "forecolor": "#FF0000",
+ "fontSize": "14.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 163,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"450\" width=\"150\" height=\"40\" forecolor=\"red\"/><textElement><font size=\"14\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "b9386ce9-aa44-4594-8559-3dcbb279a5f3",
+ "x": "160",
+ "y": "450",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 164,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 500), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "ba8b385e-a4e5-4059-9555-d416774e87c4",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "500",
+ "width": "150",
+ "height": "40",
+ "forecolor": "#00FF00",
+ "backcolor": "#FFFF00",
+ "fontName": "Serif",
+ "fontSize": "12.0",
+ "pdfFontName": "Times-Bold",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 165,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"500\" width=\"150\" height=\"40\" forecolor=\"green\" backcolor=\"#FFFF00\" mode=\"Opaque\"/><textElement><font fontName=\"Serif\" size=\"12\" isBold=\"true\" pdfFontName=\"Times-Bold\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "72ad7c1c-35c8-40ec-b1b8-78527db92baa",
+ "x": "160",
+ "y": "500",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 166,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 550), Size: 150x90.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dbce8c34-546e-4351-893a-c1905e5a068e",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "550",
+ "width": "150",
+ "height": "90",
+ "forecolor": "#0000FF",
+ "backcolor": "#FFDD99",
+ "fontName": "SansSerif",
+ "fontSize": "12.0",
+ "pdfFontName": "Sans.Slanted",
+ "pdfEmbedded": "true",
+ "bold": "false",
+ "italic": "true",
+ "hTextAlign": "Center",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 167,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"550\" width=\"150\" height=\"90\" forecolor=\"blue\" backcolor=\"#FFDD99\" mode=\"Opaque\"/><textElement textAlignment=\"Center\" verticalAlignment=\"Middle\"><font fontName=\"SansSerif\" size=\"12\" isBold=\"false\" pdfFontName=\"Sans.Slanted\" isPdfEmbedded=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "44f1dc5e-d435-4475-8274-48eb7bc9fead",
+ "x": "160",
+ "y": "550",
+ "width": "390",
+ "height": "90"
+ }
+ }
+ },
+ {
+ "chunk_id": 168,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 650), Size: 150x90.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e5c5b52a-7beb-4381-bd5b-83d8bc848ba3",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "650",
+ "width": "150",
+ "height": "90",
+ "forecolor": "#FF0000",
+ "backcolor": "#99DDFF",
+ "fontName": "SansSerif",
+ "fontSize": "12.0",
+ "pdfFontName": "DejaVu Sans Bold",
+ "pdfEmbedded": "true",
+ "bold": "true",
+ "hTextAlign": "Right",
+ "vTextAlign": "Bottom"
+ }
+ }
+ },
+ {
+ "chunk_id": 169,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"650\" width=\"150\" height=\"90\" forecolor=\"red\" backcolor=\"#99DDFF\" mode=\"Opaque\"/><textElement textAlignment=\"Right\" verticalAlignment=\"Bottom\"><font fontName=\"SansSerif\" size=\"12\" isBold=\"true\" pdfFontName=\"DejaVu Sans Bold\" isPdfEmbedded=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "31894e18-5a34-4419-a66c-c0148dd8bc60",
+ "x": "160",
+ "y": "650",
+ "width": "390",
+ "height": "90"
+ }
+ }
+ },
+ {
+ "chunk_id": 170,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 50), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "67cc85d2-1691-441c-8ed6-b65c59f98fbc",
+ "x": "0",
+ "y": "50",
+ "width": "150",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 171,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"50\" width=\"150\" height=\"40\"/><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e0d254ad-1e47-4792-b380-f7afc5e4faa5",
+ "x": "160",
+ "y": "50",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 172,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 100), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "3c5505db-55e9-4aca-ad3a-ae92898ba1bb",
+ "x": "0",
+ "y": "100",
+ "width": "150",
+ "height": "40",
+ "fontSize": "12.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 173,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"100\" width=\"150\" height=\"40\"/><textElement><font size=\"14\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "7d953de8-7629-4138-a296-dfe463cba691",
+ "x": "160",
+ "y": "100",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 174,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 150), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2a2117f5-ea77-409f-a44c-9fd0551f8862",
+ "x": "0",
+ "y": "150",
+ "width": "150",
+ "height": "40",
+ "fontName": "Lobster Two",
+ "fontSize": "12.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 175,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"150\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Lobster Two\" size=\"12\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "39ce42dd-d5fa-43dd-a0de-de90b9e4b977",
+ "x": "160",
+ "y": "150",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 176,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 200), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "3828a320-c835-4eed-98d2-e6cb0324817b",
+ "x": "0",
+ "y": "200",
+ "width": "150",
+ "height": "40",
+ "fontName": "Lobster Two",
+ "fontSize": "12.0",
+ "bold": "true",
+ "italic": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 177,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"200\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Lobster Two\" size=\"12\" isBold=\"true\" isItalic=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "441f2d58-78bf-413b-bc9b-dd7d1713c1a6",
+ "x": "160",
+ "y": "200",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 178,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 250), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "f96f1263-2d31-4eef-951e-2e39ada33878",
+ "x": "0",
+ "y": "250",
+ "width": "150",
+ "height": "40",
+ "fontName": "DejaVu Serif",
+ "fontSize": "12.0",
+ "bold": "false"
+ }
+ }
+ },
+ {
+ "chunk_id": 179,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"250\" width=\"150\" height=\"40\"/><textElement><font fontName=\"DejaVu Serif\" size=\"12\" isBold=\"false\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "08fb0715-b6ff-4ea3-ab20-0d4db2be8d77",
+ "x": "160",
+ "y": "250",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 180,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 300), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2fda67e5-3953-44a0-9f88-f0d3dc6d8910",
+ "x": "0",
+ "y": "300",
+ "width": "150",
+ "height": "40",
+ "fontName": "DejaVu Serif",
+ "fontSize": "12.0",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 181,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"300\" width=\"150\" height=\"40\"/><textElement><font fontName=\"DejaVu Serif\" size=\"12\" isBold=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "69138007-8118-4689-831a-840627dcd7b6",
+ "x": "160",
+ "y": "300",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 182,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 350), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "447870d2-5f05-4764-ad5e-4d3cdf11084b",
+ "x": "0",
+ "y": "350",
+ "width": "150",
+ "height": "40",
+ "fontName": "Monospaced",
+ "fontSize": "12.0",
+ "pdfFontName": "Courier-Oblique",
+ "underline": "true",
+ "italic": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 183,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"350\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Monospaced\" size=\"12\" isItalic=\"true\" isUnderline=\"true\" pdfFontName=\"Courier-Oblique\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "38702e0b-0a84-4a47-896f-361c02ea944e",
+ "x": "160",
+ "y": "350",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 184,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 400), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9fcbe261-51f6-43b1-8752-11ffc10cc328",
+ "x": "0",
+ "y": "400",
+ "width": "150",
+ "height": "40",
+ "fontName": "Monospaced",
+ "fontSize": "12.0",
+ "pdfFontName": "Courier-Bold",
+ "strikeThrough": "true",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 185,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"400\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Monospaced\" size=\"12\" isBold=\"true\" isStrikeThrough=\"true\" pdfFontName=\"Courier-Bold\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dbdf1aa0-5a2e-4c19-a84c-cce0438e7896",
+ "x": "160",
+ "y": "400",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 186,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 450), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "348534b1-c588-4b7a-83b0-957a5332a13a",
+ "x": "0",
+ "y": "450",
+ "width": "150",
+ "height": "40",
+ "forecolor": "#FF0000",
+ "fontSize": "14.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 187,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"450\" width=\"150\" height=\"40\" forecolor=\"red\"/><textElement><font size=\"14\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "b9386ce9-aa44-4594-8559-3dcbb279a5f3",
+ "x": "160",
+ "y": "450",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 188,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 500), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "ba8b385e-a4e5-4059-9555-d416774e87c4",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "500",
+ "width": "150",
+ "height": "40",
+ "forecolor": "#00FF00",
+ "backcolor": "#FFFF00",
+ "fontName": "Serif",
+ "fontSize": "12.0",
+ "pdfFontName": "Times-Bold",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 189,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"500\" width=\"150\" height=\"40\" forecolor=\"green\" backcolor=\"#FFFF00\" mode=\"Opaque\"/><textElement><font fontName=\"Serif\" size=\"12\" isBold=\"true\" pdfFontName=\"Times-Bold\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "72ad7c1c-35c8-40ec-b1b8-78527db92baa",
+ "x": "160",
+ "y": "500",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 190,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 550), Size: 150x90.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dbce8c34-546e-4351-893a-c1905e5a068e",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "550",
+ "width": "150",
+ "height": "90",
+ "forecolor": "#0000FF",
+ "backcolor": "#FFDD99",
+ "fontName": "SansSerif",
+ "fontSize": "12.0",
+ "pdfFontName": "Sans.Slanted",
+ "pdfEmbedded": "true",
+ "bold": "false",
+ "italic": "true",
+ "hTextAlign": "Center",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 191,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"550\" width=\"150\" height=\"90\" forecolor=\"blue\" backcolor=\"#FFDD99\" mode=\"Opaque\"/><textElement textAlignment=\"Center\" verticalAlignment=\"Middle\"><font fontName=\"SansSerif\" size=\"12\" isBold=\"false\" pdfFontName=\"Sans.Slanted\" isPdfEmbedded=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "44f1dc5e-d435-4475-8274-48eb7bc9fead",
+ "x": "160",
+ "y": "550",
+ "width": "390",
+ "height": "90"
+ }
+ }
+ },
+ {
+ "chunk_id": 192,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 650), Size: 150x90.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e5c5b52a-7beb-4381-bd5b-83d8bc848ba3",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "650",
+ "width": "150",
+ "height": "90",
+ "forecolor": "#FF0000",
+ "backcolor": "#99DDFF",
+ "fontName": "SansSerif",
+ "fontSize": "12.0",
+ "pdfFontName": "DejaVu Sans Bold",
+ "pdfEmbedded": "true",
+ "bold": "true",
+ "hTextAlign": "Right",
+ "vTextAlign": "Bottom"
+ }
+ }
+ },
+ {
+ "chunk_id": 193,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"650\" width=\"150\" height=\"90\" forecolor=\"red\" backcolor=\"#99DDFF\" mode=\"Opaque\"/><textElement textAlignment=\"Right\" verticalAlignment=\"Bottom\"><font fontName=\"SansSerif\" size=\"12\" isBold=\"true\" pdfFontName=\"DejaVu Sans Bold\" isPdfEmbedded=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "31894e18-5a34-4419-a66c-c0148dd8bc60",
+ "x": "160",
+ "y": "650",
+ "width": "390",
+ "height": "90"
+ }
+ }
+ },
+ {
+ "chunk_id": 194,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 50), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "67cc85d2-1691-441c-8ed6-b65c59f98fbc",
+ "x": "0",
+ "y": "50",
+ "width": "150",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 195,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"50\" width=\"150\" height=\"40\"/><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e0d254ad-1e47-4792-b380-f7afc5e4faa5",
+ "x": "160",
+ "y": "50",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 196,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 100), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "3c5505db-55e9-4aca-ad3a-ae92898ba1bb",
+ "x": "0",
+ "y": "100",
+ "width": "150",
+ "height": "40",
+ "fontSize": "12.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 197,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"100\" width=\"150\" height=\"40\"/><textElement><font size=\"14\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "7d953de8-7629-4138-a296-dfe463cba691",
+ "x": "160",
+ "y": "100",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 198,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 150), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2a2117f5-ea77-409f-a44c-9fd0551f8862",
+ "x": "0",
+ "y": "150",
+ "width": "150",
+ "height": "40",
+ "fontName": "Lobster Two",
+ "fontSize": "12.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 199,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"150\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Lobster Two\" size=\"12\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "39ce42dd-d5fa-43dd-a0de-de90b9e4b977",
+ "x": "160",
+ "y": "150",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 200,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 200), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "3828a320-c835-4eed-98d2-e6cb0324817b",
+ "x": "0",
+ "y": "200",
+ "width": "150",
+ "height": "40",
+ "fontName": "Lobster Two",
+ "fontSize": "12.0",
+ "bold": "true",
+ "italic": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 201,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"200\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Lobster Two\" size=\"12\" isBold=\"true\" isItalic=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "441f2d58-78bf-413b-bc9b-dd7d1713c1a6",
+ "x": "160",
+ "y": "200",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 202,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 250), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "f96f1263-2d31-4eef-951e-2e39ada33878",
+ "x": "0",
+ "y": "250",
+ "width": "150",
+ "height": "40",
+ "fontName": "DejaVu Serif",
+ "fontSize": "12.0",
+ "bold": "false"
+ }
+ }
+ },
+ {
+ "chunk_id": 203,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"250\" width=\"150\" height=\"40\"/><textElement><font fontName=\"DejaVu Serif\" size=\"12\" isBold=\"false\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "08fb0715-b6ff-4ea3-ab20-0d4db2be8d77",
+ "x": "160",
+ "y": "250",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 204,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 300), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2fda67e5-3953-44a0-9f88-f0d3dc6d8910",
+ "x": "0",
+ "y": "300",
+ "width": "150",
+ "height": "40",
+ "fontName": "DejaVu Serif",
+ "fontSize": "12.0",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 205,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"300\" width=\"150\" height=\"40\"/><textElement><font fontName=\"DejaVu Serif\" size=\"12\" isBold=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "69138007-8118-4689-831a-840627dcd7b6",
+ "x": "160",
+ "y": "300",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 206,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 350), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "447870d2-5f05-4764-ad5e-4d3cdf11084b",
+ "x": "0",
+ "y": "350",
+ "width": "150",
+ "height": "40",
+ "fontName": "Monospaced",
+ "fontSize": "12.0",
+ "pdfFontName": "Courier-Oblique",
+ "underline": "true",
+ "italic": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 207,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"350\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Monospaced\" size=\"12\" isItalic=\"true\" isUnderline=\"true\" pdfFontName=\"Courier-Oblique\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "38702e0b-0a84-4a47-896f-361c02ea944e",
+ "x": "160",
+ "y": "350",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 208,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 400), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9fcbe261-51f6-43b1-8752-11ffc10cc328",
+ "x": "0",
+ "y": "400",
+ "width": "150",
+ "height": "40",
+ "fontName": "Monospaced",
+ "fontSize": "12.0",
+ "pdfFontName": "Courier-Bold",
+ "strikeThrough": "true",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 209,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"400\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Monospaced\" size=\"12\" isBold=\"true\" isStrikeThrough=\"true\" pdfFontName=\"Courier-Bold\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dbdf1aa0-5a2e-4c19-a84c-cce0438e7896",
+ "x": "160",
+ "y": "400",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 210,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 450), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "348534b1-c588-4b7a-83b0-957a5332a13a",
+ "x": "0",
+ "y": "450",
+ "width": "150",
+ "height": "40",
+ "forecolor": "#FF0000",
+ "fontSize": "14.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 211,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"450\" width=\"150\" height=\"40\" forecolor=\"red\"/><textElement><font size=\"14\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "b9386ce9-aa44-4594-8559-3dcbb279a5f3",
+ "x": "160",
+ "y": "450",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 212,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 500), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "ba8b385e-a4e5-4059-9555-d416774e87c4",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "500",
+ "width": "150",
+ "height": "40",
+ "forecolor": "#00FF00",
+ "backcolor": "#FFFF00",
+ "fontName": "Serif",
+ "fontSize": "12.0",
+ "pdfFontName": "Times-Bold",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 213,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"500\" width=\"150\" height=\"40\" forecolor=\"green\" backcolor=\"#FFFF00\" mode=\"Opaque\"/><textElement><font fontName=\"Serif\" size=\"12\" isBold=\"true\" pdfFontName=\"Times-Bold\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "72ad7c1c-35c8-40ec-b1b8-78527db92baa",
+ "x": "160",
+ "y": "500",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 214,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 550), Size: 150x90.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dbce8c34-546e-4351-893a-c1905e5a068e",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "550",
+ "width": "150",
+ "height": "90",
+ "forecolor": "#0000FF",
+ "backcolor": "#FFDD99",
+ "fontName": "SansSerif",
+ "fontSize": "12.0",
+ "pdfFontName": "Sans.Slanted",
+ "pdfEmbedded": "true",
+ "bold": "false",
+ "italic": "true",
+ "hTextAlign": "Center",
+ "vTextAlign": "Middle"
+ }
+ }
+ },
+ {
+ "chunk_id": 215,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"550\" width=\"150\" height=\"90\" forecolor=\"blue\" backcolor=\"#FFDD99\" mode=\"Opaque\"/><textElement textAlignment=\"Center\" verticalAlignment=\"Middle\"><font fontName=\"SansSerif\" size=\"12\" isBold=\"false\" pdfFontName=\"Sans.Slanted\" isPdfEmbedded=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "44f1dc5e-d435-4475-8274-48eb7bc9fead",
+ "x": "160",
+ "y": "550",
+ "width": "390",
+ "height": "90"
+ }
+ }
+ },
+ {
+ "chunk_id": 216,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 650), Size: 150x90.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e5c5b52a-7beb-4381-bd5b-83d8bc848ba3",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "650",
+ "width": "150",
+ "height": "90",
+ "forecolor": "#FF0000",
+ "backcolor": "#99DDFF",
+ "fontName": "SansSerif",
+ "fontSize": "12.0",
+ "pdfFontName": "DejaVu Sans Bold",
+ "pdfEmbedded": "true",
+ "bold": "true",
+ "hTextAlign": "Right",
+ "vTextAlign": "Bottom"
+ }
+ }
+ },
+ {
+ "chunk_id": 217,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"650\" width=\"150\" height=\"90\" forecolor=\"red\" backcolor=\"#99DDFF\" mode=\"Opaque\"/><textElement textAlignment=\"Right\" verticalAlignment=\"Bottom\"><font fontName=\"SansSerif\" size=\"12\" isBold=\"true\" pdfFontName=\"DejaVu Sans Bold\" isPdfEmbedded=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "31894e18-5a34-4419-a66c-c0148dd8bc60",
+ "x": "160",
+ "y": "650",
+ "width": "390",
+ "height": "90"
+ }
+ }
+ },
+ {
+ "chunk_id": 218,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 50), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "67cc85d2-1691-441c-8ed6-b65c59f98fbc",
+ "x": "0",
+ "y": "50",
+ "width": "150",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 219,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"50\" width=\"150\" height=\"40\"/><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "e0d254ad-1e47-4792-b380-f7afc5e4faa5",
+ "x": "160",
+ "y": "50",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 220,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 100), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "3c5505db-55e9-4aca-ad3a-ae92898ba1bb",
+ "x": "0",
+ "y": "100",
+ "width": "150",
+ "height": "40",
+ "fontSize": "12.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 221,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"100\" width=\"150\" height=\"40\"/><textElement><font size=\"14\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "7d953de8-7629-4138-a296-dfe463cba691",
+ "x": "160",
+ "y": "100",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 222,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 150), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2a2117f5-ea77-409f-a44c-9fd0551f8862",
+ "x": "0",
+ "y": "150",
+ "width": "150",
+ "height": "40",
+ "fontName": "Lobster Two",
+ "fontSize": "12.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 223,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"150\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Lobster Two\" size=\"12\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "39ce42dd-d5fa-43dd-a0de-de90b9e4b977",
+ "x": "160",
+ "y": "150",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 224,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 200), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "3828a320-c835-4eed-98d2-e6cb0324817b",
+ "x": "0",
+ "y": "200",
+ "width": "150",
+ "height": "40",
+ "fontName": "Lobster Two",
+ "fontSize": "12.0",
+ "bold": "true",
+ "italic": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 225,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"200\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Lobster Two\" size=\"12\" isBold=\"true\" isItalic=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "441f2d58-78bf-413b-bc9b-dd7d1713c1a6",
+ "x": "160",
+ "y": "200",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 226,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 250), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "f96f1263-2d31-4eef-951e-2e39ada33878",
+ "x": "0",
+ "y": "250",
+ "width": "150",
+ "height": "40",
+ "fontName": "DejaVu Serif",
+ "fontSize": "12.0",
+ "bold": "false"
+ }
+ }
+ },
+ {
+ "chunk_id": 227,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"250\" width=\"150\" height=\"40\"/><textElement><font fontName=\"DejaVu Serif\" size=\"12\" isBold=\"false\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "08fb0715-b6ff-4ea3-ab20-0d4db2be8d77",
+ "x": "160",
+ "y": "250",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 228,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 300), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "2fda67e5-3953-44a0-9f88-f0d3dc6d8910",
+ "x": "0",
+ "y": "300",
+ "width": "150",
+ "height": "40",
+ "fontName": "DejaVu Serif",
+ "fontSize": "12.0",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 229,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"300\" width=\"150\" height=\"40\"/><textElement><font fontName=\"DejaVu Serif\" size=\"12\" isBold=\"true\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "69138007-8118-4689-831a-840627dcd7b6",
+ "x": "160",
+ "y": "300",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 230,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 350), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "447870d2-5f05-4764-ad5e-4d3cdf11084b",
+ "x": "0",
+ "y": "350",
+ "width": "150",
+ "height": "40",
+ "fontName": "Monospaced",
+ "fontSize": "12.0",
+ "pdfFontName": "Courier-Oblique",
+ "underline": "true",
+ "italic": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 231,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"350\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Monospaced\" size=\"12\" isItalic=\"true\" isUnderline=\"true\" pdfFontName=\"Courier-Oblique\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "38702e0b-0a84-4a47-896f-361c02ea944e",
+ "x": "160",
+ "y": "350",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 232,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 400), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "9fcbe261-51f6-43b1-8752-11ffc10cc328",
+ "x": "0",
+ "y": "400",
+ "width": "150",
+ "height": "40",
+ "fontName": "Monospaced",
+ "fontSize": "12.0",
+ "pdfFontName": "Courier-Bold",
+ "strikeThrough": "true",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 233,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"400\" width=\"150\" height=\"40\"/><textElement><font fontName=\"Monospaced\" size=\"12\" isBold=\"true\" isStrikeThrough=\"true\" pdfFontName=\"Courier-Bold\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "dbdf1aa0-5a2e-4c19-a84c-cce0438e7896",
+ "x": "160",
+ "y": "400",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 234,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 450), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "348534b1-c588-4b7a-83b0-957a5332a13a",
+ "x": "0",
+ "y": "450",
+ "width": "150",
+ "height": "40",
+ "forecolor": "#FF0000",
+ "fontSize": "14.0"
+ }
+ }
+ },
+ {
+ "chunk_id": 235,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t<staticText><reportElement x=\"0\" y=\"450\" width=\"150\" height=\"40\" forecolor=\"red\"/><textElement><font size=\"14\"/></textElement><text>The quick brown fox jumps over the lazy dog.</text></staticText>\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "b9386ce9-aa44-4594-8559-3dcbb279a5f3",
+ "x": "160",
+ "y": "450",
+ "width": "390",
+ "height": "40"
+ }
+ }
+ },
+ {
+ "chunk_id": 236,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: 'The quick brown fox jumps over the lazy dog.', Position: (0, 500), Size: 150x40.",
+ "raw_xml": "\n\t\t\tThe quick brown fox jumps over the lazy dog.\n\t\t\n\t\t",
+ "context": "Report 'FontsReport' title band",
+ "metadata": {
+ "band_name": "title",
+ "element_kind": "staticText",
+ "attributes": {
+ "kind": "staticText",
+ "uuid": "ba8b385e-a4e5-4059-9555-d416774e87c4",
+ "mode": "Opaque",
+ "x": "0",
+ "y": "500",
+ "width": "150",
+ "height": "40",
+ "forecolor": "#00FF00",
+ "backcolor": "#FFFF00",
+ "fontName": "Serif",
+ "fontSize": "12.0",
+ "pdfFontName": "Times-Bold",
+ "bold": "true"
+ }
+ }
+ },
+ {
+ "chunk_id": 237,
+ "chunk_type": "element_staticText",
+ "human_description": "'title' band of report 'FontsReport': staticText element, Text: '\n\t\t\t