示例#1
0
        public static System.Collections.Generic.List <System.String> GetSeriesNamesTSS(
            TrendingChartControl.TrendingChartCtl target)
        {
            Exception e = new Exception();

            throw e;
        }
示例#2
0
 public static void SaveAsImageTSS(
     TrendingChartControl.TrendingChartCtl target,
     System.String fileName)
 {
     //do nothing
     return;
 }
示例#3
0
        public static void ClearAllSeriesAndMarkersTSS(
            TrendingChartControl.TrendingChartCtl target)
        {
            Exception e = new Exception();

            throw e;
        }
示例#4
0
        public static void DisableZoomingTSS(
            TrendingChartControl.TrendingChartCtl target)
        {
            Exception e = new Exception();

            throw e;
        }
示例#5
0
        public static void AddMarkerTSS(
            TrendingChartControl.TrendingChartCtl target,
            System.String markerName, System.Double markerWidth, System.Double markerValue, System.Drawing.Color bColor, System.Drawing.Color fColor)
        {
            Exception e = new Exception();

            throw e;
        }
示例#6
0
        public static void InitChartBeforeRealTimeTSS(
            TrendingChartControl.TrendingChartCtl target,
            System.Int32 frameInterval, System.Int32 timeInterval, System.Boolean enable3D, System.Int32 defaultGapDepth)
        {
            Exception e = new Exception();

            throw e;
        }
示例#7
0
        public static void ChangeStyleTSS(
            TrendingChartControl.TrendingChartCtl target,
            System.Boolean enable3D)
        {
            Exception e = new Exception();

            throw e;
        }
示例#8
0
        public static void DisableZoomingMSS(
            TrendingChartControl.TrendingChartCtl target)
        {
            object result;

            if (TestSpecificStubsUtil.RunTestSpecificStub(System.Reflection.MethodBase.GetCurrentMethod(), new object[] { target }, out result))
            {
                return;
            }
            else
            {
                target.DisableZooming();
            }
        }
示例#9
0
        public static System.Collections.Generic.List <System.String> GetSeriesNamesMSS(
            TrendingChartControl.TrendingChartCtl target)
        {
            object result;

            if (TestSpecificStubsUtil.RunTestSpecificStub(System.Reflection.MethodBase.GetCurrentMethod(), new object[] { target }, out result))
            {
                return((System.Collections.Generic.List <System.String>)result);
            }
            else
            {
                return(target.GetSeriesNames());
            }
        }
示例#10
0
        public static void ClearAllSeriesAndMarkersMSS(
            TrendingChartControl.TrendingChartCtl target)
        {
            object result;

            if (TestSpecificStubsUtil.RunTestSpecificStub(System.Reflection.MethodBase.GetCurrentMethod(), new object[] { target }, out result))
            {
                return;
            }
            else
            {
                target.ClearAllSeriesAndMarkers();
            }
        }
示例#11
0
        public static void AddMarkerMSS(
            TrendingChartControl.TrendingChartCtl target,
            System.String markerName, System.Double markerWidth, System.Double markerValue, System.Drawing.Color bColor, System.Drawing.Color fColor)
        {
            object result;

            if (TestSpecificStubsUtil.RunTestSpecificStub(System.Reflection.MethodBase.GetCurrentMethod(), new object[] { target, markerName, markerWidth, markerValue, bColor, fColor }, out result))
            {
                return;
            }
            else
            {
                target.AddMarker(markerName, markerWidth, markerValue, bColor, fColor);
            }
        }
示例#12
0
        public static void InitChartBeforeRealTimeMSS(
            TrendingChartControl.TrendingChartCtl target,
            System.Int32 frameInterval, System.Int32 timeInterval, System.Boolean enable3D, System.Int32 defaultGapDepth)
        {
            object result;

            if (TestSpecificStubsUtil.RunTestSpecificStub(System.Reflection.MethodBase.GetCurrentMethod(), new object[] { target, frameInterval, timeInterval, enable3D, defaultGapDepth }, out result))
            {
                return;
            }
            else
            {
                target.InitChartBeforeRealTime(frameInterval, timeInterval, enable3D, defaultGapDepth);
            }
        }
示例#13
0
        public static void ChangeStyleMSS(
            TrendingChartControl.TrendingChartCtl target,
            System.Boolean enable3D)
        {
            object result;

            if (TestSpecificStubsUtil.RunTestSpecificStub(System.Reflection.MethodBase.GetCurrentMethod(), new object[] { target, enable3D }, out result))
            {
                return;
            }
            else
            {
                target.ChangeStyle(enable3D);
            }
        }
示例#14
0
        public static void SaveAsImageMSS(
            TrendingChartControl.TrendingChartCtl target,
            System.String fileName)
        {
            object result;

            if (TestSpecificStubsUtil.RunTestSpecificStub(System.Reflection.MethodBase.GetCurrentMethod(), new object[] { target, fileName }, out result))
            {
                return;
            }
            else
            {
                target.SaveAsImage(fileName);
            }
        }