BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
'Event Subscription
AddHandler Me.pivotGridControl1.TableModel.QueryCellInfo, AddressOf TableModel_QueryCellInfo
'Event Customization
Private Sub TableModel_QueryCellInfo(ByVal sender As Object, ByVal e As Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs)
If e.RowIndex > 0 AndAlso e.ColIndex > 0 Then
If e.ColIndex Mod 2 = 0 Then
e.Style.BackColor = Color.LightBlue
Else
e.Style.BackColor = Color.LightGreen
End If
End If
End Sub |
Sorry, forgot to reply earlier, this worked perfectly, thank you very much