How we can have 3D Border style of RadGrid?

2 Answers 25 Views
GridView
Shubham
Top achievements
Rank 3
Iron
Iron
Iron
Shubham asked on 10 May 2024, 06:25 AM
I need border 3d border style of rad grid view.
Like attached below image.

2 Answers, 1 is accepted

Sort by
1
Accepted
Dinko | Tech Support Engineer
Telerik team
answered on 14 May 2024, 09:16 PM

Hi Shubham,

The attached image is greatly appreciated.

I have checked your requirements, however, the RadGridView control API does not support visualizing 3D border style. What you can try is to customize the borders of the control as much as possible to look similar to your requirements. For example, you can set the this.radGridView1.GridViewElement.BorderBoxStyle to FourBorders. This way you can change each border side's color and width. Here is what I have in mind:

this.radGridView1.GridViewElement.BorderBoxStyle = Telerik.WinControls.BorderBoxStyle.FourBorders;
this.radGridView1.GridViewElement.BorderColor = Color.Gray;
this.radGridView1.GridViewElement.BorderLeftWidth = 3;
this.radGridView1.GridViewElement.BorderTopWidth = 3;

This is far from what you are trying to achieve but still you could consider it.

Regards,
Dinko | Tech Support Engineer
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

0
Shubham
Top achievements
Rank 3
Iron
Iron
Iron
answered on 15 May 2024, 05:30 AM
Hi Dinko,

Thankyou so much for providing a very close alternate solution.
Hope this will workout for my team.

Thanks
Shubham Jain
 
Tags
GridView
Asked by
Shubham
Top achievements
Rank 3
Iron
Iron
Iron
Answers by
Dinko | Tech Support Engineer
Telerik team
Shubham
Top achievements
Rank 3
Iron
Iron
Iron
Share this question
or