This question is locked. New answers and comments are not allowed.
Hi,
I have a very complicated business logic by which I color each cell in a RadGridView.
This color logic is implemented in a web service.
In the final data source, each data cell comes with its own color based on this logic and a cell level style selector assigns each cell with its appropriate color.
I want to export to excel and retain that coloring. Is it possible?
Thanks
Arya
I have a very complicated business logic by which I color each cell in a RadGridView.
This color logic is implemented in a web service.
In the final data source, each data cell comes with its own color based on this logic and a cell level style selector assigns each cell with its appropriate color.
I want to export to excel and retain that coloring. Is it possible?
void theDataGrid_Exporting(object sender, GridViewExportEventArgs e) { if (e.Element == ExportElement.Cell) { e.background = ?? } }Thanks
Arya
