Reputation: 179
i tried to change color to white, and change border style to dashed. But I don't know why it kept undoing my setting. How do I set to hide borders? I have 2 tables in a rectangle
Upvotes: 8
Views: 29049
Reputation: 20560
You hide borders by setting the BorderStyle
property to None
. Note that you may also need to change this on the cells that are adjacent so that they don't have a border property setting that would put a border along the adjoining edge.
The BorderStyle
property is not part of the Tablix Properties dialog box, it is on the Properties panel in the Border section (press F4 or menu View-Properties Window if this isn't displayed).
If you click the top left handle of the table to select the entire table you will see this in the Properties panel. You can also set the BorderStyle if you select an individual cell or range of cells.
If you have the View-Toolbars-Report Borders menu option selected, you can also use the BorderStyle dropdown to quickly set common BorderStyle options on the selected report items.
Upvotes: 18
Reputation: 11
Resolved this by removing the page header on the report.
Right click anywhere outside of the tablix on the report and you should see a remove page header option.
Upvotes: 0
Reputation: 4911
The fastest way is the answer of Chris Lätta if you want to do it by table. But if you want to hide the border by textbox you could do it this way.
Upvotes: 10