Official Support Area, Q&As, Discussions, Suggestions and Bug reports.
Forum's Guidelines
For the data zone rows, you could set css background color differently for odd and even children following this guide:
.krpmDataZoneDiv tbody:nth-child(odd) {
background-color: white;
}
.krpmDataZoneDiv tbody:nth-child(even) {
background-color: lightgray;
}
For total rows and columns you could inspect element and use their css class to set font style = bold. For example:
.krpmDataCellRowTotal,
.krpmDataCellRowGrandTotal,
.krpmDataCellColumnTotal,
.krpmDataCellColumnGrandTotal {
...
}
I add this css to my view html
.krpmDataZoneDiv tbody:nth-child(odd) {
background-color: white;
} .krpmDataZoneDiv tbody:nth-child(even) {
background-color: lightgray;
}
.krpmDataCellRowTotal, .krpmDataCellRowGrandTotal, .krpmDataCellColumnTotal, .krpmDataCellColumnGrandTotal {
font-weight: bold;
}
Bold now is correct, but alternate color to difference row not run correctly. Is always lightgray.
Let KoolReport help you to make great reports. It's free & open-source released under MIT license.
Download KoolReport View demo