蛙蛙请教:关于rdl图表边框设置的问题

我用Sqlserver RS做了一个RDL,里面有个条形图,这个图表的绘图区四周有四个边,我想只要左边和下边的却无法实现,本来想以表达式的方式来做,结果表达式的上下文里没有表示是左边框还是右边框的全局变量,所以没法做,然后直接改rdl的xml源码,分别设置了每个方向上的边框样式也不行,MSDN说图表的BorderStyle子元素只支持Default,怎么办呀?
<PlotArea>
 <Style>
   <BorderStyle>
   <Left>Solid</Left>
   <Right>None</Right>
   <Top>None</Top>
   <Bottom>Solid</Bottom>
   </BorderStyle>
   <BorderColor>
     <Default>DarkGray</Default>
   </BorderColor>
   <BackgroundColor>White</BackgroundColor>
 </Style>
</PlotArea>
The BorderStyle element applies to line, rectangle, text box, image, subreport, list, matrix, table, chart, body, subtotal, title, and legend report items. 【The line, chart, title, and legend report items support only the child Default element.】

ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.zh-CHS/rptsprg9/html/bcff843c-9bfb-4980-9423-09acd4a83a54.htm

posted @ 2007-04-09 14:12  蛙蛙王子  Views(559)  Comments(1Edit  收藏  举报