我在我的项目中使用 DevExpress ,
我有一个 Pivotgrid ,我想导出到Excel,但合并的单元格不会在Excel中创建为合并。
我想使用PivotGridOptionsPrint
,但我无法使用eventhandler optionsChanged
创建此类。
PivotGridOptionsPrint op = new PivotGridOptionsPrint(??)
我需要什么参数?
Devexpress 15.2版
答案 0 :(得分:0)
浏览PivotGridOptionsPrint.MergeRowFieldValues属性和PivotGridOptionsPrint.MergeColumnFieldValues属性的文档。
注意: MergeRowFieldValues属性用于在WYSIWYG导出模式下导出数据时自定义数据透视网格导出设置。 此属性对数据感知模式无效。要自定义 使用时,在数据感知模式下导出时,数据透视网格导出设置 DevExpress.XtraPivotGrid.PivotXlsExportOptions和 DevExpress.XtraPivotGrid.PivotXlsxExportOptions后代。
沿着此,您可以获得有关XtraPivotGrid的Exporting文档的更多信息