private xsc.ChartGrid SetChartGridH()
 {
     xsc.ChartGrid cg = new xsc.ChartGrid(xsc.ChartGridType.Horizontal);
     cg.Alpha = 10;
     cg.Color = "ffffff";
     cg.Thickness = 12;
     cg.GridLineType = xsc.ChartGridLineType.solid;
     return cg;
 }
 private xsc.ChartGrid SetChartGrid(xsc.ChartGridType type)
 {
     xsc.ChartGrid cg = new xsc.ChartGrid(type);
     cg.Thickness = 1;
     cg.GridLineType = xsc.ChartGridLineType.solid;
     return cg;
 }
Example #3
0
 private xsc.ChartGrid SetChartGridV()
 {
     xsc.ChartGrid cg = new xsc.ChartGrid(xsc.ChartGridType.Vertical);
     cg.Alpha = 10;
     cg.Color = "0066ff";
     cg.Thickness = 1;
     return cg;
 }
Example #4
0
 private xsc.ChartGrid SetChartGridH()
 {
     xsc.ChartGrid setting = new xsc.ChartGrid(xsc.ChartGridType.Horizontal);
     setting.Alpha = 10;
     setting.Color = "000000";
     setting.Thickness = 1;
     return setting;
 }
 private xsc.ChartGrid SetChartGridH()
 {
     xsc.ChartGrid cg = new xsc.ChartGrid(xsc.ChartGridType.Horizontal);
     cg.Thickness = 0;
     return cg;
 }
Example #6
0
 private xsc.ChartGrid SetChartGridH()
 {
     xsc.ChartGrid cg = new xsc.ChartGrid(xsc.ChartGridType.Horizontal);
     cg.Alpha = 10;
     cg.Color = "0066ff";
     cg.Thickness = 28;
     return cg;
 }
 private ChartGrid SetChartGrid(ChartGridType chartGridType)
 {
     ChartGrid cg = new ChartGrid(chartGridType);
     cg.Color = "000000";
     if (chartGridType == ChartGridType.Horizontal)
     {
         cg.Alpha = 5;
         cg.Thickness = 10;
     }
     else
     {
         cg.Alpha = 20;
         cg.Thickness = 1;
     }
     return cg;
 }
Example #8
0
 private ChartGrid SetChartGridH()
 {
     ChartGrid cg = new ChartGrid(ChartGridType.Horizontal);
     cg.Alpha = 10;
     cg.Color = "000000";
     cg.Thickness = 4;
     return cg;
 }
Example #9
0
 private xsc.ChartGrid SetChartGrid(xsc.ChartGridType type)
 {
     xsc.ChartGrid cg = new xsc.ChartGrid(type);
     cg.Thickness = 0;
     return cg;
 }
 private ChartGrid SetChartGrid(ChartGridType chartGridType)
 {
     ChartGrid cg = new ChartGrid(chartGridType);
     cg.Alpha = 100;
     cg.Color = "ee6666";
     cg.Thickness = 1;
     if (chartGridType == ChartGridType.Horizontal)
     {
         cg.Alpha = 20;
         cg.Color = "000000";
         cg.GridLineType = ChartGridLineType.dashed;
     }
     return cg;
 }
Example #11
0
 private xsc.ChartGrid SetChartGridH()
 {
     xsc.ChartGrid cg = new xsc.ChartGrid(xsc.ChartGridType.Horizontal);
     cg.Alpha = 20;
     cg.Color = "000000";
     cg.Thickness = 1;
     cg.GridLineType = xsc.ChartGridLineType.dashed;
     return cg;
 }
 private ChartGrid SetChartGrid(ChartGridType chartGridType)
 {
     ChartGrid cg = new ChartGrid(chartGridType);
     cg.Alpha = 10;
     cg.Color = "000000";
     switch (chartGridType)
     {
         case ChartGridType.Horizontal:
             cg.Thickness = 5;
             break;
         case ChartGridType.Vertical:
             cg.Thickness = 1;
             break;
     }
     return cg;
 }
 private xsc.ChartGrid SetChartGrid(xsc.ChartGridType chartGridType)
 {
     xsc.ChartGrid cg = new xsc.ChartGrid(chartGridType);
     cg.Thickness = 1;
     cg.Color = "000000";
     cg.Alpha = 20;
     return cg;
 }
Example #14
0
 private xsc.ChartGrid SetChartGridV()
 {
     xsc.ChartGrid cg = new xsc.ChartGrid(xsc.ChartGridType.Vertical);
     cg.Alpha = 10;
     cg.Color = "000000";
     cg.Thickness = 1;
     cg.GridLineType = xsc.ChartGridLineType.solid;
     return cg;
 }
Example #15
0
 private DotNetXmlSwfChart.ChartGrid SetChartGridH()
 {
     ChartGrid cg = new ChartGrid(ChartGridType.Horizontal);
     cg.Alpha = 35;
     cg.Color = "000000";
     cg.Thickness = 1;
     return cg;
 }