How to change blink backcolor

Is there any way to change the blink back color? As far as i see, currently it blinks sth like red when the value increases and blue when it decreases.


1 Reply

NR Nirmal Raja Syncfusion Team July 30, 2008 06:00 AM UTC

Hi,

Thanks for your interest in Syncfusion products.

You can able to change the blink back color property, by adding the below code snippet:

gridGroupingControl1.BaseStyles[GridEngine.BlinkIncreased].StyleInfo.TextColor = Color.White;
gridGroupingControl1.BaseStyles[GridEngine.BlinkIncreased].StyleInfo.BackColor = Color.Green;

gridGroupingControl1.BaseStyles[GridEngine.BlinkReduced].StyleInfo.TextColor = Color.White;
gridGroupingControl1.BaseStyles[GridEngine.BlinkReduced].StyleInfo.BackColor = Color.Goldenrod;

Please let me know if you need any further assistance.

Regards,
Nirmal


Loader.
Up arrow icon