diff --git a/ProjectGasStation/ProjectGasStation/Reports/ChartReport.cs b/ProjectGasStation/ProjectGasStation/Reports/ChartReport.cs index 7c536d3..6386fe0 100644 --- a/ProjectGasStation/ProjectGasStation/Reports/ChartReport.cs +++ b/ProjectGasStation/ProjectGasStation/Reports/ChartReport.cs @@ -24,7 +24,8 @@ internal class ChartReport { new PdfBuilder(filePath) .AddHeader("Количество продаж каждого работника") - .AddPieChart("Работники", GetData(dateTime)) + .AddPieChart($"Продано на {dateTime:dd MMMM yyyy}", GetData(dateTime)) + .Build(); return true; }