style(kpi): change strategic-issue header band color to #CAD1EB
Was XLColor.PurpleX11; requested lighter blue-purple for the kpi_performance_result Excel export section header bars.
This commit is contained in:
@@ -108,10 +108,10 @@ namespace rmutr_report.Controllers
|
|||||||
if (!header.is_reference_section) no++;
|
if (!header.is_reference_section) no++;
|
||||||
ws.Cell(row, 1).SetValue(kpiname).Style.Font.Bold = true;
|
ws.Cell(row, 1).SetValue(kpiname).Style.Font.Bold = true;
|
||||||
// ws.Cell(row, 2).Value = header.header_1;
|
// ws.Cell(row, 2).Value = header.header_1;
|
||||||
ws.Cell(row, 1).Style.Fill.BackgroundColor = XLColor.PurpleX11;
|
ws.Cell(row, 1).Style.Fill.BackgroundColor = XLColor.FromHtml("#CAD1EB");
|
||||||
ws.Cell(row, 1).Style.Border.OutsideBorder =
|
ws.Cell(row, 1).Style.Border.OutsideBorder =
|
||||||
XLBorderStyleValues.None;
|
XLBorderStyleValues.None;
|
||||||
ws.Range(ws.Cell(row, 1), ws.Cell(row, 10)).Merge().Style.Fill.BackgroundColor = XLColor.PurpleX11;
|
ws.Range(ws.Cell(row, 1), ws.Cell(row, 10)).Merge().Style.Fill.BackgroundColor = XLColor.FromHtml("#CAD1EB");
|
||||||
|
|
||||||
ws.Cell(row, 1).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
ws.Cell(row, 1).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Left;
|
||||||
ws.Cell(row, 1).Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
ws.Cell(row, 1).Style.Alignment.Vertical = XLAlignmentVerticalValues.Center;
|
||||||
|
|||||||
Reference in New Issue
Block a user