private xsc.AxisCategory SetAxisCategory(xsc.XmlSwfChartType type)
 {
     xsc.AxisCategory ac = new xsc.AxisCategory(type);
     ac.Size = 14;
     ac.Color = "000000";
     ac.Alpha = 50;
     return ac;
 }
 private xsc.AxisCategory SetAxisCategory(xsc.XmlSwfChartType type)
 {
     xsc.AxisCategory ac = new xsc.AxisCategory(type);
     ac.Size = 10;
     ac.Color = "ffffff";
     ac.Alpha = 75;
     return ac;
 }
示例#3
0
 private xsc.AxisCategory SetAxisCategory(xsc.XmlSwfChartType Type)
 {
     xsc.AxisCategory setting = new xsc.AxisCategory(xsc.XmlSwfChartType.Line);
     setting.Size = 16;
     setting.Color = "000000";
     setting.Alpha = 75;
     setting.Skip = 0;
     setting.Orientation = "horizontal";
     return setting;
 }
 private xsc.AxisCategory SetAxisCategory(xsc.XmlSwfChartType xmlSwfChartType)
 {
     xsc.AxisCategory ac = new xsc.AxisCategory(xmlSwfChartType);
     ac.Size = 10;
     ac.Color = "000000";
     ac.Alpha = 75;
     ac.Skip = 0;
     ac.Orientation = "horizontal";
     return ac;
 }
示例#5
0
 private xsc.AxisCategory SetAxisCategory(xsc.XmlSwfChartType type)
 {
     xsc.AxisCategory ac = new xsc.AxisCategory(type);
     ac.Size = 10;
     ac.Color = "ffffff";
     ac.Alpha = 75;
     ac.Skip = 0;
     ac.Orientation = "diagonal_up";
     return ac;
 }
示例#6
0
 private xsc.AxisCategory SetAxisCategory(xsc.XmlSwfChartType type)
 {
     xsc.AxisCategory ac = new xsc.AxisCategory(type);
     ac.Font = "Arial";
     ac.Bold = true;
     ac.Size = 11;
     ac.Color = "000000";
     ac.Alpha = 50;
     ac.Skip = 2;
     return ac;
 }
 private xsc.AxisCategory SetAxisCategory(xsc.XmlSwfChartType type)
 {
     xsc.AxisCategory ac = new xsc.AxisCategory(type);
     ac.Size = 12;
     ac.Color = "ffffff";
     ac.Alpha = 75;
     ac.Font = "Arial";
     ac.Bold = true;
     ac.Skip = 0;
     ac.Orientation = "horizontal";
     return ac;
 }
示例#8
0
 private xsc.AxisValue SetAxisValue(xsc.XmlSwfChartType type)
 {
     xsc.AxisValue av = new xsc.AxisValue();
     av.Min = -60;
     av.Font = "Arial";
     av.Bold = true;
     av.Size = 10;
     av.Color = "000000";
     av.Alpha = 50;
     av.Steps = 4;
     av.Prefix = "";
     av.Suffix = "";
     av.Decimals = 0;
     av.Separator = "";
     av.ShowMin = true;
     return av;
 }
 private xsc.ChartGrid SetChartGrid(xsc.ChartGridType type)
 {
     xsc.ChartGrid cg = new xsc.ChartGrid(type);
     cg.Thickness = 1;
     cg.GridLineType = xsc.ChartGridLineType.solid;
     return cg;
 }
 private xsc.AxisCategory SetAxisCategory(xsc.XmlSwfChartType type)
 {
     xsc.AxisCategory ac = new xsc.AxisCategory(type);
     ac.Alpha = 0;
     return ac;
 }
示例#11
0
 private DotNetXmlSwfChart.ChartPreferences SetChartPreferences(DotNetXmlSwfChart.XmlSwfChartType type)
 {
     ChartPreferences cp = new ChartPreferences(type);
     cp.RotationX = 60;
     return cp;
 }
示例#12
0
 private xsc.ChartGrid SetChartGrid(xsc.ChartGridType type)
 {
     xsc.ChartGrid cg = new xsc.ChartGrid(type);
     cg.Thickness = 0;
     return cg;
 }
 private xsc.ChartPreferences SetChartPreferences(xsc.XmlSwfChartType xmlSwfChartType)
 {
     xsc.ChartPreferences cp = new xsc.ChartPreferences(xmlSwfChartType);
     cp.RotationX = 20;
     cp.RotationY = 40;
     return cp;
 }
 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;
 }
示例#15
0
 private xsc.ChartPreferences SetChartPreferences(xsc.XmlSwfChartType type)
 {
     xsc.ChartPreferences cp = new xsc.ChartPreferences(type);
     cp.LineThickness = 2;
     cp.PointShape = "none";
     cp.FillShape = false;
     return cp;
 }
 private xsc.ChartPreferences SetChartPreferences(xsc.XmlSwfChartType type)
 {
     xsc.ChartPreferences cp = new xsc.ChartPreferences(type);
     cp.RotationX = 15;
     cp.RotationY = 0;
     return cp;
 }
示例#17
0
 private xsc.ChartPreferences SetChartPreferences(xsc.XmlSwfChartType type)
 {
     Random rand = new Random();
     xsc.ChartPreferences cp = new xsc.ChartPreferences(type);
     cp.RotationX = rand.Next(20, 40);
     cp.RotationY = rand.Next(20, 40);
     return cp;
 }
示例#18
0
 private xsc.ChartPreferences SetChartPreferences(xsc.XmlSwfChartType chartType)
 {
     xsc.ChartPreferences cp = new xsc.ChartPreferences(chartType);
     cp.RotationX = 60;
     return cp;
 }