Я экспортирую отчеты Power BI, следуя их инструкциям здесь:
https://docs.microsoft.com/en-us/power-bi/developer/embedded/export-to
Однако, когда я получаю файл pdf, появляется этот заголовок:
Поскольку класс ExportReportSettings поддерживает только 2 параметра:
var powerBIReportExportConfiguration = new PowerBIReportExportConfiguration
{
Settings = new ExportReportSettings
{
Locale = "en-us",
},
// Note that page names differ from the page display names.
// To get the page names use the GetPages API.
Pages = pageNames?.Select(pn => new ExportReportPage(pn)).ToList(),
};
Есть ли способ избежать или заменить этот заголовок?