or
Hello, I need chart with next values on X-Axis
{1,2,3,4,5,6,7,8,9, 10, More }
Can I change 1 label on X-Axis?
Thank you.
var reportProcessor =
new
ReportProcessor();
RenderingResult result = reportProcessor.RenderReport(
"XLSX"
, report,
null
);
string
reportFileName = @
"C:\report"
+ DateTime.Now.Ticks +
".xslx"
;
FileStream fs =
new
FileStream(reportFileName, FileMode.Create);
fs.Write(result.DocumentBytes, 0, result.DocumentBytes.Length);
fs.Flush();
fs.Close();