Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/reporting-services/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Reporting services RDLC tablix colspan当量_Reporting Services_Rdlc_Ssrs Tablix - Fatal编程技术网

Reporting services RDLC tablix colspan当量

Reporting services RDLC tablix colspan当量,reporting-services,rdlc,ssrs-tablix,Reporting Services,Rdlc,Ssrs Tablix,它们是否与RDLC标记的某种colspan等价?当然,我尝试了colspan,但报告没有在设计视图中呈现,这是一个反序列化错误。项目和zipfile比要显示的单个列长得多 答案是选择所有单元格,右键单击并选择“合并单元格”。要使用标记执行此操作,请尝试: <TablixCell> <CellContents> <Rectangle Name="Rectangle1"> ... </Rectangle> <C

它们是否与RDLC标记的某种colspan等价?当然,我尝试了colspan,但报告没有在设计视图中呈现,这是一个反序列化错误。项目和zipfile比要显示的单个列长得多


答案是选择所有单元格,右键单击并选择“合并单元格”。

要使用标记执行此操作,请尝试:

<TablixCell>
  <CellContents>
    <Rectangle Name="Rectangle1">
    ...
    </Rectangle>
    <ColSpan>2</ColSpan>
  </CellContents>
</TablixCell>

...
2.