コード例 #1
0
 private xsc.ChartBorder SetChartBorder()
 {
     xsc.ChartBorder cb = new xsc.ChartBorder();
     cb.Color = "000000";
     cb.TopThickness = 1;
     cb.BottomThickness = 1;
     cb.LeftThickness = 1;
     cb.RightThickness = 1;
     return cb;
 }
コード例 #2
0
 private xsc.ChartBorder SetChartBorder()
 {
     xsc.ChartBorder cb = new xsc.ChartBorder();
     cb.TopThickness = 0;
     cb.BottomThickness = 2;
     cb.LeftThickness = 2;
     cb.RightThickness = 0;
     return cb;
 }
コード例 #3
0
 private ChartBorder SetChartBorder()
 {
     ChartBorder cb = new ChartBorder();
     cb.Color = "888888";
     cb.TopThickness = 1;
     cb.BottomThickness = 1;
     cb.LeftThickness = 0;
     cb.RightThickness = 0;
     return cb;
 }