private xsc.ChartPreferences SetChartPreferences() { xsc.ChartPreferences setting = new xsc.ChartPreferences(xsc.XmlSwfChartType.Line); setting.LineThickness = 2; setting.PointShape = "circle"; setting.FillShape = false; return setting; }
private xsc.ChartPreferences SetChartPreferences(xsc.XmlSwfChartType type) { xsc.ChartPreferences cp = new xsc.ChartPreferences(type); cp.RotationX = 15; cp.RotationY = 0; return cp; }
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; }
private xsc.ChartPreferences SetChartPreferences(xsc.XmlSwfChartType xmlSwfChartType) { xsc.ChartPreferences cp = new xsc.ChartPreferences(xmlSwfChartType); cp.RotationX = 20; cp.RotationY = 40; return cp; }
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 DotNetXmlSwfChart.ChartPreferences SetChartPreferences(DotNetXmlSwfChart.XmlSwfChartType type) { ChartPreferences cp = new ChartPreferences(type); cp.RotationX = 60; return cp; }
private xsc.ChartPreferences SetChartPreferences(xsc.XmlSwfChartType chartType) { xsc.ChartPreferences cp = new xsc.ChartPreferences(chartType); cp.RotationX = 60; return cp; }