Click here to Skip to main content
15,899,026 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,

I am using matrix control in RDLC file.
I am unable to set the grid lines property.

Can any one tell me how to set this property and where it is?

Regards,

N.SRIRAM
Posted
Updated 12-Jan-11 21:49pm
v2
Comments
Dalek Dave 13-Jan-11 3:49am    
Edited for Readability.

1 solution

To get grid lines in RDLC File, follow the following steps:
1. Click on any cell of the matrix control. This will allow you to view the column tabs.
2. Now Right click on any column tab and click properties. This will bring you the window of properties.
3. In Properties window change the property of BorderStyle from None to any of the available style. In this way you will get the vertical lines.

The following steps will allow you to show the horizontal lines.
1. Click on any cell of the matrix control. This will allow you to view the row tabs.
2. Now Right click on any row tab and click properties. This will bring you the window of properties.
3. In Properties window change the property of BorderStyle from None to any of the available style. In this way you will get the horizontal lines.

Hope this answer your question.
 
Share this answer
 
Comments
SRIRAM 2 13-Jan-11 6:03am    
Hi.Thanks for reply. Another doubt regarding cell formating.

I am getting a value from stored procedure.I want to add percentage symbol(%) to the number. I select format p0.but it is adding two zeros to the number along with percentage symbol(%).

How can I add only % symbol?

Regards,

N.SRIRAM
Umair Feroze 13-Jan-11 9:32am    
Sorry for very late reply.
Below can do this:
=IIf(Fields!QTY.Value IS NOTHING, "", Fields!QTY.Value & "%")

I verified on both types of columns i.e. with decimal values and without decimal values.

Hope this will help you out

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900